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 "mixed-precision"

Merged montan_v requested to merge 146-mixed-precision into master
7 files
+ 534
7
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -202,8 +202,7 @@ namespace ippl {
template <size_t... Idx>
KOKKOS_INLINE_FUNCTION constexpr bool ParticleSpatialLayout<T, Dim, Mesh>::positionInRegion(
const std::index_sequence<Idx...>&, const vector_type& pos, const region_type& region) {
return ((pos[Idx] >= region[Idx].min()) && ...)
&& ((pos[Idx] <= region[Idx].max()) && ...);
return ((pos[Idx] >= region[Idx].min()) && ...) && ((pos[Idx] <= region[Idx].max()) && ...);
};
template <typename T, unsigned Dim, class Mesh>
Loading