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:28
 
double z
Definition: grid_structs.hpp:30
 
double r
Definition: grid_structs.hpp:29
 
Definition: grid_structs.hpp:7
 
KOKKOS_INLINE_FUNCTION void maxloc(Simd< int > &ml) const
Definition: grid_structs.hpp:16
 
Simd< double > x[3]
Definition: grid_structs.hpp:8
 
KOKKOS_INLINE_FUNCTION const Simd< double > & operator[](int i) const
Definition: grid_structs.hpp:11
 
Definition: grid_structs.hpp:33
 
RZPair vertex[3]
Definition: grid_structs.hpp:34
 
Definition: grid_structs.hpp:24
 
int vertex[3]
Definition: grid_structs.hpp:25