Skip to content
Snippets Groups Projects

Tested the c++ codes run on GPUs and fixed unit tests associated with them

Merged Pradipta Samanta requested to merge fix-cpp-codes-gpu into feature-add-cpp-codes
4 files
+ 304
199
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -136,10 +136,7 @@ void cells2edges_scalar_lib(const T *p_cell_in, const int *edge_cell_idx,
p_edge_out_view(je, jk, jb) = p_cell_in_view(
iidx_view(je, jb, 1), jk, iblk_view(je, jb, 1));
} else {
std::cerr << "mo_interpolation:cells2edges_scalar_lib: error in "
"lateral boundary filling"
<< std::endl;
std::exit(EXIT_FAILURE);
Kokkos::abort("mo_interpolation:cells2edges_scalar_lib: error in lateral boundary filling");
}
});
Kokkos::fence();
Loading