forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tanh.cu
29 lines (25 loc) · 838 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
28
29
#ifndef THC_GENERIC_FILE
#define THC_GENERIC_FILE "THCUNN/generic/Tanh.cu"
#else
#include <THCUNN/common.h>
void THNN_(Tanh_updateOutput)(
THCState *state,
THCTensor *input,
THCTensor *output)
{
THCUNN_assertSameGPU(state, 2, input, output);
THCTensor_(resizeAs)(state, output, input);
THCTensor_(tanh)(state, output, input);
}
void THNN_(Tanh_updateGradInput)(
THCState *state,
THCTensor *gradOutput,
THCTensor *gradInput,
THCTensor *output)
{
THCUNN_check_shape(state, output, gradOutput);
THCUNN_assertSameGPU(state, 3, output, gradOutput, gradInput);
THCTensor_(resizeAs)(state, gradInput, output);
THC_pointwiseApply3<scalar_t, scalar_t, scalar_t>(state, gradInput, output, gradOutput, tanh_updateGradInput_functor<scalar_t>());
}
#endif