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
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -687,10 +687,10 @@ public:
// ippl::apply<unsigned> accesses the view at the given indices and obtains a
// reference; see src/Expression/IpplOperations.h
double val = ippl::apply(Eview, args)[0];
double e2 = std::pow(val, 2);
double e2 = Kokkos::pow(val, 2);
E2 += e2;
double norm = std::fabs(ippl::apply(Eview, args)[0]);
double norm = Kokkos::fabs(ippl::apply(Eview, args)[0]);
if (norm > ENorm) {
ENorm = norm;
}
Loading