1 #ifndef CAFFE2_OPERATORS_ATAN_OP_H_     2 #define CAFFE2_OPERATORS_ATAN_OP_H_     6 #include "caffe2/operators/elementwise_ops.h"     7 #include "caffe2/utils/math.h"    11 template <
class Context>
    14   bool operator()(
const int N, 
const T* X, 
T* Y, Context* context)
 const {
    15     math::Atan(N, X, Y, context);
    20 template <
class Context>
    24       const std::vector<int>& X_dims,
    25       const std::vector<int>& dY_dims,
    29       Context* context) 
const;
    34 #endif // CAFFE2_OPERATORS_ATAN_OP_H_ 
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...