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

Resolve "Add unit tests for BareField"

Merged vinciguerra_a requested to merge 88-add-unit-tests-for-barefield into master
All threads resolved!
Files
2
@@ -125,10 +125,12 @@ namespace ippl {
Kokkos::Sum, MPI_SUM)
DefineUnaryBareFieldOperation2D(normInf,
val = std::abs(bf(i, j)),
T myVal = std::abs(bf(i, j));
if (myVal > val) val = myVal;,
Kokkos::Max, MPI_MAX)
DefineUnaryBareFieldOperation3D(normInf,
val = std::abs(bf(i, j, k)),
T myVal = std::abs(bf(i, j, k));
if (myVal > val) val = myVal;,
Kokkos::Max, MPI_MAX)
template <typename T, unsigned Dim>
Loading