forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tanh.cu
27 lines (24 loc) · 771 Bytes
/
Tanh.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
#include <THCUNN/THCUNN.h>
#include <TH/THHalf.h>
#include <THCUNN/THCHalfAutoNumerics.cuh>
#include <THC/THCApply.cuh>
template <typename T>
struct tanh_updateGradInput_functor
{
__device__ __forceinline__ void operator()(T *gradInput,
const T *output, const T *gradOutput) const {
*gradInput = *gradOutput * (1.f - *output * *output);
}
};
template <>
struct tanh_updateGradInput_functor<half>
{
__device__ __forceinline__ void operator()(half *gradInput,
const half *output, const half *gradOutput) const {
const float out = __half2float(*output);
const float go = __half2float(*gradOutput);
*gradInput = __float2half(go * (1.f - out * out));
}
};
#include <THCUNN/generic/Tanh.cu>
#include <THC/THCGenerateFloatTypes.h>