Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects

Mixed execution spaces

Merged vinciguerra_a requested to merge vinciguerra_a/ippl:mixed-exec into master
All threads resolved!
1 file
+ 4
1
Compare changes
  • Side-by-side
  • Inline
@@ -682,7 +682,10 @@ public:
Kokkos::deep_copy(mirror, E_m.getView());
}
void dumpLandau(VField_t<T, Dim>::HostMirror& Eview) {
void dumpLandau() { dumpLandau(E_m.getView()); }
template <typename View>
void dumpLandau(const View& Eview) {
const int nghostE = E_m.getNghost();
using index_array_type = typename ippl::RangePolicy<Dim>::index_array_type;
Loading