-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathasinh.hpp
More file actions
239 lines (212 loc) · 7.98 KB
/
asinh.hpp
File metadata and controls
239 lines (212 loc) · 7.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
//=== asinh.hpp - Unary function ASINH ------ *-C++-*--/===//
//
// Data Parallel Control (dpctl)
//
// Copyright 2020-2023 Intel Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//===---------------------------------------------------------------------===//
///
/// \file
/// This file defines kernels for elementwise evaluation of ASINH(x) function.
//===---------------------------------------------------------------------===//
#pragma once
#include <cmath>
#include <cstddef>
#include <cstdint>
#include <sycl/ext/oneapi/experimental/sycl_complex.hpp>
#include <sycl/sycl.hpp>
#include <type_traits>
#include "kernels/elementwise_functions/common.hpp"
#include "utils/offset_utils.hpp"
#include "utils/type_dispatch.hpp"
#include "utils/type_utils.hpp"
#include <pybind11/pybind11.h>
namespace dpctl
{
namespace tensor
{
namespace kernels
{
namespace asinh
{
namespace py = pybind11;
namespace td_ns = dpctl::tensor::type_dispatch;
namespace exprm_ns = sycl::ext::oneapi::experimental;
using dpctl::tensor::type_utils::is_complex;
template <typename argT, typename resT> struct AsinhFunctor
{
// is function constant for given argT
using is_constant = typename std::false_type;
// constant value, if constant
// constexpr resT constant_value = resT{};
// is function defined for sycl::vec
using supports_vec = typename std::false_type;
// do both argTy and resTy support sugroup store/load operation
using supports_sg_loadstore = typename std::negation<
std::disjunction<is_complex<resT>, is_complex<argT>>>;
resT operator()(const argT &in) const
{
if constexpr (is_complex<argT>::value) {
using realT = typename argT::value_type;
constexpr realT q_nan = std::numeric_limits<realT>::quiet_NaN();
const realT x = std::real(in);
const realT y = std::imag(in);
if (std::isnan(x)) {
/* asinh(NaN + I*+-Inf) = opt(+-)Inf + I*NaN */
if (std::isinf(y)) {
return resT{y, q_nan};
}
/* asinh(NaN + I*0) = NaN + I*0 */
if (y == realT(0)) {
return resT{q_nan, y};
}
/* All other cases involving NaN return NaN + I*NaN. */
return resT{q_nan, q_nan};
}
if (std::isnan(y)) {
/* asinh(+-Inf + I*NaN) = +-Inf + I*NaN */
if (std::isinf(x)) {
return resT{x, q_nan};
}
/* All other cases involving NaN return NaN + I*NaN. */
return resT{q_nan, q_nan};
}
/*
* For large x or y including asinh(+-Inf + I*+-Inf)
* asinh(in) = sign(x)*log(sign(x)*in) + O(1/in^2) as in ->
* infinity The above formula works for the imaginary part as well,
* because Im(asinh(in)) = sign(x)*atan2(sign(x)*y, fabs(x)) +
* O(y/in^3) as in -> infinity, uniformly in y
*/
constexpr realT r_eps =
realT(1) / std::numeric_limits<realT>::epsilon();
if (std::abs(x) > r_eps || std::abs(y) > r_eps) {
resT log_in = (std::signbit(x)) ? std::log(-in) : std::log(in);
realT wx = std::real(log_in) + std::log(realT(2));
realT wy = std::imag(log_in);
const realT res_re = std::copysign(wx, x);
const realT res_im = std::copysign(wy, y);
return resT{res_re, res_im};
}
/* ordinary cases */
return exprm_ns::asinh(
exprm_ns::complex<realT>(in)); // std::asinh(in);
}
else {
static_assert(std::is_floating_point_v<argT> ||
std::is_same_v<argT, sycl::half>);
return std::asinh(in);
}
}
};
template <typename argTy,
typename resTy = argTy,
unsigned int vec_sz = 4,
unsigned int n_vecs = 2>
using AsinhContigFunctor =
elementwise_common::UnaryContigFunctor<argTy,
resTy,
AsinhFunctor<argTy, resTy>,
vec_sz,
n_vecs>;
template <typename argTy, typename resTy, typename IndexerT>
using AsinhStridedFunctor = elementwise_common::
UnaryStridedFunctor<argTy, resTy, IndexerT, AsinhFunctor<argTy, resTy>>;
template <typename T> struct AsinhOutputType
{
using value_type = typename std::disjunction< // disjunction is C++17
// feature, supported by DPC++
td_ns::TypeMapResultEntry<T, sycl::half>,
td_ns::TypeMapResultEntry<T, float>,
td_ns::TypeMapResultEntry<T, double>,
td_ns::TypeMapResultEntry<T, std::complex<float>>,
td_ns::TypeMapResultEntry<T, std::complex<double>>,
td_ns::DefaultResultEntry<void>>::result_type;
};
template <typename T1, typename T2, unsigned int vec_sz, unsigned int n_vecs>
class asinh_contig_kernel;
template <typename argTy>
sycl::event asinh_contig_impl(sycl::queue &exec_q,
size_t nelems,
const char *arg_p,
char *res_p,
const std::vector<sycl::event> &depends = {})
{
return elementwise_common::unary_contig_impl<
argTy, AsinhOutputType, AsinhContigFunctor, asinh_contig_kernel>(
exec_q, nelems, arg_p, res_p, depends);
}
template <typename fnT, typename T> struct AsinhContigFactory
{
fnT get()
{
if constexpr (std::is_same_v<typename AsinhOutputType<T>::value_type,
void>) {
fnT fn = nullptr;
return fn;
}
else {
fnT fn = asinh_contig_impl<T>;
return fn;
}
}
};
template <typename fnT, typename T> struct AsinhTypeMapFactory
{
/*! @brief get typeid for output type of std::asinh(T x) */
std::enable_if_t<std::is_same<fnT, int>::value, int> get()
{
using rT = typename AsinhOutputType<T>::value_type;
return td_ns::GetTypeid<rT>{}.get();
}
};
template <typename T1, typename T2, typename T3> class asinh_strided_kernel;
template <typename argTy>
sycl::event
asinh_strided_impl(sycl::queue &exec_q,
size_t nelems,
int nd,
const py::ssize_t *shape_and_strides,
const char *arg_p,
py::ssize_t arg_offset,
char *res_p,
py::ssize_t res_offset,
const std::vector<sycl::event> &depends,
const std::vector<sycl::event> &additional_depends)
{
return elementwise_common::unary_strided_impl<
argTy, AsinhOutputType, AsinhStridedFunctor, asinh_strided_kernel>(
exec_q, nelems, nd, shape_and_strides, arg_p, arg_offset, res_p,
res_offset, depends, additional_depends);
}
template <typename fnT, typename T> struct AsinhStridedFactory
{
fnT get()
{
if constexpr (std::is_same_v<typename AsinhOutputType<T>::value_type,
void>) {
fnT fn = nullptr;
return fn;
}
else {
fnT fn = asinh_strided_impl<T>;
return fn;
}
}
};
} // namespace asinh
} // namespace kernels
} // namespace tensor
} // namespace dpctl