DDC 0.5.2
Loading...
Searching...
No Matches
math_tools.hpp
1// Copyright (C) The DDC development team, see COPYRIGHT.md file
2//
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
7#include <array>
8#include <cmath>
9#include <cstddef>
10
11#include <Kokkos_Core.hpp>
12
13namespace ddc::detail {
14
15template <typename T>
16KOKKOS_INLINE_FUNCTION T sum(T* array, int size)
17{
18 T val(0.0);
19 for (int i(0); i < size; ++i) {
20 val += array[i];
21 }
22 return val;
23}
24
25template <class ElementType, class LayoutPolicy, class AccessorPolicy, std::size_t Ext>
26KOKKOS_INLINE_FUNCTION ElementType
27sum(Kokkos::mdspan<
28 ElementType,
29 Kokkos::extents<std::size_t, Ext>,
30 LayoutPolicy,
31 AccessorPolicy> const& array)
32{
33 ElementType val(0.0);
34 for (std::size_t i(0); i < array.extent(0); ++i) {
35 val += array[i];
36 }
37 return val;
38}
39
40template <class ElementType, class LayoutPolicy, class AccessorPolicy, std::size_t Ext>
41KOKKOS_INLINE_FUNCTION ElementType
42sum(Kokkos::mdspan<
43 ElementType,
44 Kokkos::extents<std::size_t, Ext>,
45 LayoutPolicy,
46 AccessorPolicy> const& array,
47 int start,
48 int end)
49{
50 ElementType val(0.0);
51 for (int i(start); i < end; ++i) {
52 val += array[i];
53 }
54 return val;
55}
56
57template <typename T>
58KOKKOS_INLINE_FUNCTION T modulo(T x, T y)
59{
60 return x - y * Kokkos::floor(double(x) / y);
61}
62
63KOKKOS_INLINE_FUNCTION double ipow(double a, std::size_t i)
64{
65 double r(1.0);
66 for (std::size_t j(0); j < i; ++j) {
67 r *= a;
68 }
69 return r;
70}
71
72KOKKOS_INLINE_FUNCTION double ipow(double a, int i)
73{
74 double r(1.0);
75 if (i > 0) {
76 for (int j(0); j < i; ++j) {
77 r *= a;
78 }
79 } else if (i < 0) {
80 for (int j(0); j < -i; ++j) {
81 r *= a;
82 }
83 r = 1.0 / r;
84 }
85 return r;
86}
87
88KOKKOS_INLINE_FUNCTION std::size_t factorial(std::size_t f)
89{
90 std::size_t r = 1;
91 for (std::size_t i(2); i < f + 1; ++i) {
92 r *= i;
93 }
94 return r;
95}
96
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)
99{
100 T result = 0;
101 for (std::size_t i(0); i < D; ++i) {
102 result += a[i] * b[i];
103 }
104 return result;
105}
106
107template <typename T>
108KOKKOS_INLINE_FUNCTION T min(T x, T y)
109{
110 return x < y ? x : y;
111}
112
113template <typename T>
114KOKKOS_INLINE_FUNCTION T max(T x, T y)
115{
116 return x > y ? x : y;
117}
118
119} // namespace ddc::detail
The top-level namespace of DDC.