1 #ifndef GRID_STRUCTS_HPP
2 #define GRID_STRUCTS_HPP
17 for (
int i_simd = 0; i_simd<SIMD_SIZE; i_simd++){
18 ml[i_simd] = (
x[1][i_simd] >
x[0][i_simd]) ? 1 : 0;
19 ml[i_simd] = (
x[2][i_simd] >
x[0][i_simd] &&
x[2][i_simd] >
x[1][i_simd]) ? 2 : ml[i_simd];
Definition: grid_structs.hpp:33
Simd< double > x[3]
Definition: grid_structs.hpp:8
KOKKOS_INLINE_FUNCTION void maxloc(Simd< int > &ml) const
Definition: grid_structs.hpp:16
double z
Definition: grid_structs.hpp:30
Definition: grid_structs.hpp:28
Definition: grid_structs.hpp:24
Definition: grid_structs.hpp:7
double r
Definition: grid_structs.hpp:29
int vertex[3]
Definition: grid_structs.hpp:25
RZPair vertex[3]
Definition: grid_structs.hpp:34
KOKKOS_INLINE_FUNCTION const Simd< double > & operator[](int i) const
Definition: grid_structs.hpp:11