11#include <Kokkos_Core.hpp>
13namespace ddc::detail {
16KOKKOS_INLINE_FUNCTION T sum(T* array,
int size)
19 for (
int i(0); i < size; ++i) {
25template <
class ElementType,
class LayoutPolicy,
class AccessorPolicy, std::size_t Ext>
26KOKKOS_INLINE_FUNCTION ElementType
29 Kokkos::extents<std::size_t, Ext>,
31 AccessorPolicy>
const& array)
34 for (std::size_t i(0); i < array.extent(0); ++i) {
40template <
class ElementType,
class LayoutPolicy,
class AccessorPolicy, std::size_t Ext>
41KOKKOS_INLINE_FUNCTION ElementType
44 Kokkos::extents<std::size_t, Ext>,
46 AccessorPolicy>
const& array,
51 for (
int i(start); i < end; ++i) {
58KOKKOS_INLINE_FUNCTION T modulo(T x, T y)
60 return x - y * Kokkos::floor(
double(x) / y);
63KOKKOS_INLINE_FUNCTION
double ipow(
double a, std::size_t i)
66 for (std::size_t j(0); j < i; ++j) {
72KOKKOS_INLINE_FUNCTION
double ipow(
double a,
int i)
76 for (
int j(0); j < i; ++j) {
80 for (
int j(0); j < -i; ++j) {
88KOKKOS_INLINE_FUNCTION std::size_t factorial(std::size_t f)
91 for (std::size_t i(2); i < f + 1; ++i) {
97template <
class T, std::size_t D>
98KOKKOS_INLINE_FUNCTION T dot_product(std::array<T, D>
const& a, std::array<T, D>
const& b)
101 for (std::size_t i(0); i < D; ++i) {
102 result += a[i] * b[i];
108KOKKOS_INLINE_FUNCTION T min(T x, T y)
110 return x < y ? x : y;
114KOKKOS_INLINE_FUNCTION T max(T x, T y)
116 return x > y ? x : y;
The top-level namespace of DDC.