Caffe2 - C++ API
A deep learning, cross platform ML framework
elementwise_sub_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_SUB(x, y) ((x) - (y))
8 EIGEN_FUNCTOR(Sub, EIGEN_SUB, NumericTypes, SameTypeAsInput);
9 #undef EIGEN_SUB
10 }
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...