pytorch/caffe2/operators/tanh_op.h
Xiaomeng Yang cbcf45274b Move tanh function to math (#9328)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/9328

Move tanh function to math

Reviewed By: houseroad

Differential Revision: D8794745

fbshipit-source-id: ea525dedde6f53592b06c2caffd6426688dea5fc
2018-07-11 13:59:50 -07:00

35 lines
723 B
C++

#ifndef CAFFE2_OPERATORS_TANH_OP_H_
#define CAFFE2_OPERATORS_TANH_OP_H_
#include <vector>
#include "caffe2/operators/elementwise_ops.h"
#include "caffe2/utils/math.h"
namespace caffe2 {
template <class Context>
struct TanhFunctor {
template <typename T>
bool operator()(const int N, const T* X, T* Y, Context* context) const {
math::Tanh<T, Context>(N, X, Y, context);
return true;
}
};
template <class Context>
struct TanhGradientFunctor {
template <typename T>
bool Forward(
const std::vector<int>& Y_dims,
const std::vector<int>& dY_dims,
const T* Y,
const T* dY,
T* dX,
Context* context) const;
};
} // namespace caffe2
#endif // CAFFE2_OPERATORS_TANH_OP_H_