mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
* Move elementwise grad ops to separate files Move elementwise grad ops to separate files * Fix proto build * Fix build * Fix sync error
9 lines
201 B
C++
9 lines
201 B
C++
#include "caffe2/operators/elementwise_add_op.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
REGISTER_CPU_OPERATOR(
|
|
Add,
|
|
BinaryElementwiseOp<NumericTypes, CPUContext, AddFunctor<CPUContext>>);
|
|
|
|
} // namespace caffe2
|