forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SoftMax.cpp
51 lines (40 loc) · 1.25 KB
/
SoftMax.cpp
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
#define TORCH_ASSERT_ONLY_METHOD_OPERATORS
#include <ATen/core/Tensor.h>
#include <ATen/Config.h>
#ifndef AT_PER_OPERATOR_HEADERS
#include <ATen/NativeFunctions.h>
#else
#include <ATen/ops/_softmax_native.h> // for mkldnn_softmax
#endif
#if !AT_MKLDNN_ENABLED()
namespace at {
namespace native {
Tensor mkldnn_softmax(
const Tensor& self,
const int64_t dim,
const bool half_to_float) {
TORCH_CHECK(false, "mkldnn_softmax: ATen not compiled with MKLDNN support");
}
} // namespace native
} // namespace at
#else // AT_MKLDNN_ENABLED
#include <ATen/native/mkldnn/MKLDNNCommon.h>
namespace at {
namespace native {
Tensor mkldnn_softmax(
const Tensor& self,
const int64_t dim,
const bool half_to_float) {
TORCH_CHECK(
!half_to_float,
"softmax with half to float conversion is not supported on Mkldnn");
const int64_t wrapped_dim = maybe_wrap_dim(dim, self.dim());
ideep::tensor& x = itensor_from_mkldnn(self);
ideep::tensor y;
ideep::softmax_forward::compute(x, y, wrapped_dim);
return new_with_itensor_mkldnn(std::move(y), optTypeMetaToScalarType(self.options().dtype_opt()),
self.options().device_opt());
}
} // namespace native
} // namespace at
#endif // AT_MKLDNN_ENABLED