forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ForeachBinaryOpList.cu
293 lines (270 loc) · 9.56 KB
/
ForeachBinaryOpList.cu
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
#define TORCH_ASSERT_ONLY_METHOD_OPERATORS
#include <ATen/Dispatch.h>
#include <ATen/native/ForeachUtils.h>
#include <ATen/native/cuda/ForeachFunctors.cuh>
#include <ATen/native/cuda/ForeachMinMaxFunctors.cuh>
#include <functional>
#ifndef AT_PER_OPERATOR_HEADERS
#include <ATen/NativeFunctions.h>
#else
#include <ATen/ops/_foreach_add_native.h>
#include <ATen/ops/_foreach_clamp_max_native.h>
#include <ATen/ops/_foreach_clamp_min_native.h>
#include <ATen/ops/_foreach_copy_native.h>
#include <ATen/ops/_foreach_div_native.h>
#include <ATen/ops/_foreach_mul_native.h>
#include <ATen/ops/_foreach_pow_native.h>
#include <ATen/ops/_foreach_sub_native.h>
#include <ATen/ops/empty_like_native.h>
#endif
namespace at::native {
template <typename T, template <class> class Op>
std::vector<Tensor> foreach_tensor_list_op(
TensorList tensors1,
TensorList tensors2,
const Scalar& alpha = 1) {
std::vector<std::vector<at::Tensor>> tensor_lists;
std::vector<at::Tensor> vec_res;
vec_res.reserve(tensors1.size());
for (const auto& t : tensors1) {
vec_res.emplace_back(at::native::empty_like(t));
}
tensor_lists.emplace_back(tensors1.vec());
tensor_lists.emplace_back(tensors2.vec());
tensor_lists.emplace_back(std::move(vec_res));
using opmath_t = at::opmath_type<T>;
multi_tensor_apply<3>(
tensor_lists,
BinaryOpListAlphaFunctor<
T,
/* depth */ 3,
/* r_args_depth */ 2,
/* res_arg_index */ 2>(),
Op<opmath_t>(),
alpha.to<opmath_t>());
return tensor_lists[2];
}
template <typename T, template <class> class Op>
void foreach_tensor_list_op_(
TensorList tensors1,
TensorList tensors2,
const Scalar& alpha = 1) {
std::vector<std::vector<at::Tensor>> tensor_lists;
tensor_lists.emplace_back(tensors1.vec());
tensor_lists.emplace_back(tensors2.vec());
using opmath_t = at::opmath_type<T>;
multi_tensor_apply<2>(
tensor_lists,
BinaryOpListAlphaFunctor<
T,
/* depth */ 2,
/* r_args_depth */ 2,
/* res_arg_index */ 0>(),
Op<opmath_t>(),
alpha.to<opmath_t>());
increment_version(tensors1);
}
template <template <class> class Op>
std::vector<Tensor> all_types_complex_bool_half_bfloat16(
TensorList tensors1,
TensorList tensors2,
const Scalar& alpha = 1) {
return AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3(
kBool,
kBFloat16,
kHalf,
tensors1[0].scalar_type(),
"foreach_binary_op_list_cuda",
[&]() {
return foreach_tensor_list_op<scalar_t, Op>(tensors1, tensors2, alpha);
});
}
template <template <class> class Op>
void all_types_complex_bool_half_bfloat16_(
TensorList tensors1,
TensorList tensors2,
const Scalar& alpha = 1) {
AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3(
kBool,
kBFloat16,
kHalf,
tensors1[0].scalar_type(),
"foreach_binary_op_list_cuda_",
[&]() {
foreach_tensor_list_op_<scalar_t, Op>(tensors1, tensors2, alpha);
});
}
template <template <class> class Op>
std::vector<Tensor> all_types_half_bfloat16(
TensorList tensors1,
TensorList tensors2,
const Scalar& alpha = 1) {
return AT_DISPATCH_ALL_TYPES_AND2(
kBFloat16,
kHalf,
tensors1[0].scalar_type(),
"foreach_binary_op_list_cuda",
[&]() {
return foreach_tensor_list_op<scalar_t, Op>(tensors1, tensors2, alpha);
});
}
template <template <class> class Op>
void all_types_complex_half_bfloat16_(
TensorList tensors1,
TensorList tensors2,
const Scalar& alpha = 1) {
AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND2(
kBFloat16,
kHalf,
tensors1[0].scalar_type(),
"foreach_binary_op_list_cuda_",
[&]() {
foreach_tensor_list_op_<scalar_t, Op>(tensors1, tensors2, alpha);
});
}
template <template <class> class Op>
void all_types_half_bfloat16_(
TensorList tensors1,
TensorList tensors2,
const Scalar& alpha = 1) {
AT_DISPATCH_ALL_TYPES_AND2(
kBFloat16,
kHalf,
tensors1[0].scalar_type(),
"foreach_binary_op_list_cuda_",
[&]() {
foreach_tensor_list_op_<scalar_t, Op>(tensors1, tensors2, alpha);
});
}
template <template <class> class Op>
std::vector<Tensor> all_types_complex_half_bfloat16(
TensorList tensors1,
TensorList tensors2,
const Scalar& alpha = 1) {
return AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND2(
kBFloat16,
kHalf,
tensors1[0].scalar_type(),
"foreach_binary_op_list_cuda",
[&]() {
return foreach_tensor_list_op<scalar_t, Op>(tensors1, tensors2, alpha);
});
}
#define FOREACH_BINARY_OP_LIST(FUNCTION, NAME, OP, DIVISION_OP) \
void foreach_tensor_##NAME##_list_kernel_cuda_( \
TensorList tensors1, TensorList tensors2) { \
check_foreach_api_restrictions(tensors1, tensors2); \
if (!can_use_fast_route(tensors1, tensors2, DIVISION_OP)) { \
return at::native::foreach_tensor_##NAME##_list_kernel_slow_( \
tensors1, tensors2); \
} \
\
FUNCTION##_<OP>(tensors1, tensors2); \
} \
\
std::vector<Tensor> foreach_tensor_##NAME##_list_kernel_cuda( \
TensorList tensors1, TensorList tensors2) { \
check_foreach_api_restrictions(tensors1, tensors2); \
if (!can_use_fast_route(tensors1, tensors2, DIVISION_OP)) { \
return at::native::foreach_tensor_##NAME##_list_kernel_slow( \
tensors1, tensors2); \
} \
\
return FUNCTION<OP>(tensors1, tensors2); \
}
#define FOREACH_BINARY_OP_LIST_ALPHA(FUNCTION, NAME, OP) \
void foreach_tensor_##NAME##_list_kernel_cuda_( \
TensorList tensors1, TensorList tensors2, const Scalar& alpha) { \
check_foreach_api_restrictions(tensors1, tensors2); \
if (!can_use_fast_route({tensors1, tensors2}, alpha)) { \
return at::native::foreach_tensor_##NAME##_list_kernel_slow_( \
tensors1, tensors2, alpha); \
} \
\
FUNCTION##_<OP>(tensors1, tensors2, alpha); \
} \
\
std::vector<Tensor> foreach_tensor_##NAME##_list_kernel_cuda( \
TensorList tensors1, TensorList tensors2, const Scalar& alpha) { \
check_foreach_api_restrictions(tensors1, tensors2); \
if (!can_use_fast_route({tensors1, tensors2}, alpha)) { \
return at::native::foreach_tensor_##NAME##_list_kernel_slow( \
tensors1, tensors2, alpha); \
} \
\
return FUNCTION<OP>(tensors1, tensors2, alpha); \
}
FOREACH_BINARY_OP_LIST_ALPHA(
all_types_complex_bool_half_bfloat16,
add,
std::plus);
FOREACH_BINARY_OP_LIST_ALPHA(
all_types_complex_bool_half_bfloat16,
sub,
std::minus);
FOREACH_BINARY_OP_LIST(
all_types_complex_bool_half_bfloat16,
mul,
std::multiplies,
/*division_op*/ false);
FOREACH_BINARY_OP_LIST(
all_types_complex_bool_half_bfloat16,
div,
std::divides,
/*division_op*/ true);
FOREACH_BINARY_OP_LIST(
all_types_half_bfloat16,
clamp_max,
minimum,
/*division_op*/ false);
FOREACH_BINARY_OP_LIST(
all_types_half_bfloat16,
clamp_min,
maximum,
/*division_op*/ false);
// NOTE(crcrpar): [Why is foreach_pow's division_op=true?]
// To push integer inputs to slow path. This is because with integer type inputs
// the fast path behaves differently from the slow one. Need to investigate
// later.
FOREACH_BINARY_OP_LIST(
all_types_complex_half_bfloat16,
pow,
power_functor,
/*division_op*/ true);
template <typename T>
struct Identity {
__device__ __forceinline__ T operator()(const T& x) {
return x;
}
};
void foreach_tensor_copy_list_kernel_cuda_(
TensorList self,
TensorList src,
const bool non_blocking) {
check_foreach_api_restrictions(self, src);
if (!can_use_fast_route(
self, src, /* does_op_promote_integer_inputs_to_float */ false)) {
return at::native::foreach_tensor_copy_list_kernel_slow_(
self, src, non_blocking);
}
std::vector<std::vector<at::Tensor>> tensor_lists{src.vec(), self.vec()};
AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3(
ScalarType::Half,
ScalarType::BFloat16,
ScalarType::Bool,
self[0].scalar_type(),
"foreach_tensor_copy",
[&]() {
using opmath_t = at::opmath_type<scalar_t>;
multi_tensor_apply<2>(
tensor_lists,
UnaryOpFunctor<
scalar_t,
/* depth */ 2,
/* r_args_depth */ 1,
/* res_arg_index */ 1>(),
Identity<opmath_t>());
});
increment_version(self);
}
} // namespace at::native