mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
* Move elementwise grad ops to separate files Move elementwise grad ops to separate files * Fix proto build * Fix build * Fix sync error
10 lines
201 B
C++
10 lines
201 B
C++
#include "caffe2/operators/elementwise_add_op.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
REGISTER_CPU_OPERATOR(
|
|
Add,
|
|
BinaryElementwiseOp<NumericTypes, CPUContext, AddFunctor<CPUContext>>);
|
|
|
|
} // namespace caffe2
|