forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 7
/
ActivationLogSigmoidKernel.cu
66 lines (54 loc) · 2.04 KB
/
ActivationLogSigmoidKernel.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
#define TORCH_ASSERT_NO_OPERATORS
#define _USE_MATH_DEFINES
#include <ATen/native/Activation.h>
#include <cmath>
#include <thrust/tuple.h>
#include <ATen/AccumulateType.h>
#include <ATen/Dispatch.h>
#include <ATen/core/TensorBase.h>
#include <c10/core/Scalar.h>
#include <c10/cuda/CUDAMathCompat.h>
#include <ATen/cuda/ApplyGridUtils.cuh>
#include <ATen/cuda/detail/OffsetCalculator.cuh>
#include <ATen/native/cuda/Loops.cuh>
namespace at {
namespace native {
// -----------------------------------
// log_sigmoid forward
// -----------------------------------
void launch_log_sigmoid_forward_kernel(TensorIteratorBase& iter) {
AT_DISPATCH_FLOATING_TYPES_AND2(
kHalf, kBFloat16, iter.common_dtype(), "log_sigmoid_forward_cuda", [&] {
using opmath_t = at::opmath_type<scalar_t>;
gpu_kernel(iter, [] GPU_LAMBDA(scalar_t in_) -> scalar_t {
const opmath_t in = in_;
const auto min = std::min(opmath_t(0), in);
const auto z = std::exp(-std::abs(in));
return min - std::log1p(z);
});
});
}
namespace {
// -----------------------------------
// log_sigmoid backward
// -----------------------------------
void log_sigmoid_backward_kernel(TensorIterator& iter) {
AT_DISPATCH_FLOATING_TYPES_AND2(
kHalf, kBFloat16, iter.common_dtype(), "log_sigmoid_backward_cuda", [&] {
using opmath_t = at::opmath_type<scalar_t>;
gpu_kernel(
iter, [] GPU_LAMBDA(scalar_t in_, scalar_t grad_out_) -> scalar_t {
const opmath_t in = in_;
const opmath_t grad_out = grad_out_;
auto in_negative = in < opmath_t(0);
auto max_deriv = in_negative ? opmath_t(1) : opmath_t(0);
auto sign = in_negative ? opmath_t(1) : -opmath_t(1);
const auto z = std::exp(-std::abs(in));
return grad_out * (max_deriv - sign * (z / (opmath_t(1) + z)));
});
});
}
} // namespace
REGISTER_DISPATCH(log_sigmoid_backward_stub, &log_sigmoid_backward_kernel);
} // namespace native
} // namespace at