diff --git a/src/KOKKOS/region_sphere_kokkos.cpp b/src/KOKKOS/region_sphere_kokkos.cpp index 6c8677e340..72c18d3b14 100644 --- a/src/KOKKOS/region_sphere_kokkos.cpp +++ b/src/KOKKOS/region_sphere_kokkos.cpp @@ -108,7 +108,7 @@ int RegSphereKokkos::surface_kokkos(double x, double y, double z, do template KOKKOS_INLINE_FUNCTION -int RegSphereKokkos::surface_interior(double *x, double cutoff) +int RegSphereKokkos::surface_interior_kokkos(double *x, double cutoff) { double delx = x[0] - xc; double dely = x[1] - yc; @@ -138,7 +138,7 @@ int RegSphereKokkos::surface_interior(double *x, double cutoff) template KOKKOS_INLINE_FUNCTION -int RegSphereKokkos::surface_exterior(double *x, double cutoff) +int RegSphereKokkos::surface_exterior_kokkos(double *x, double cutoff) { double delx = x[0] - xc; double dely = x[1] - yc;