pytorch/caffe2/operators/elementwise_mul_op.cc
Xiaomeng Yang ddab886105
[caffe2] Move elementwise grad ops to separate files (#8315)
* Move elementwise grad ops to separate files

Move elementwise grad ops to separate files

* Fix proto build

* Fix build

* Fix sync error
2018-06-11 15:38:36 -07:00

10 lines
201 B
C++

#include "caffe2/operators/elementwise_mul_op.h"
namespace caffe2 {
REGISTER_CPU_OPERATOR(
Mul,
BinaryElementwiseOp<NumericTypes, CPUContext, MulFunctor<CPUContext>>);
} // namespace caffe2