Caffe2 - C++ API
A deep learning, cross platform ML framework
cosh_op.h
1 #ifndef CAFFE2_OPERATORS_COSH_OP_H_
2 #define CAFFE2_OPERATORS_COSH_OP_H_
3 
4 #include <vector>
5 
6 #include "caffe2/operators/elementwise_ops.h"
7 #include "caffe2/utils/math.h"
8 
9 namespace caffe2 {
10 
11 template <class Context>
12 struct CoshFunctor {
13  template <typename T>
14  bool operator()(const int N, const T* X, T* Y, Context* context) const {
15  math::Cosh(N, X, Y, context);
16  return true;
17  }
18 };
19 
20 template <class Context>
22  template <typename T>
23  bool Forward(
24  const std::vector<int>& dY_dims,
25  const std::vector<int>& X_dims,
26  const T* dY,
27  const T* X,
28  T* dX,
29  Context* context) const;
30 };
31 
32 } // namespace caffe2
33 
34 #endif // CAFFE2_OPERATORS_COSH_OP_H_
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13