Caffe2 - C++ API
A deep learning, cross platform ML framework
elementwise_add_op.cc
1 #include "caffe2/operators/elementwise_op.h"
2 
3 namespace caffe2 {
4 
5 // See the operations supported here:
6 // https://eigen.tuxfamily.org/dox-devel/group__QuickRefPage.html
7 #define EIGEN_ADD(x, y) ((x) + (y))
8 EIGEN_FUNCTOR(Add, EIGEN_ADD, NumericTypes, SameTypeAsInput);
9 #undef EIGEN_ADD
10 }
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...