mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/67624 Test Plan: Visual inspection. Sandcastle. Reviewed By: malfet Differential Revision: D31986628 fbshipit-source-id: c872bded7325997a2945dbf5d4d052628dcb3659
10 lines
214 B
C++
10 lines
214 B
C++
#include "caffe2/db/create_db_op.h"
|
|
|
|
namespace caffe2 {
|
|
REGISTER_CPU_OPERATOR(CreateDB, CreateDBOp<CPUContext>);
|
|
|
|
OPERATOR_SCHEMA(CreateDB).NumInputs(0).NumOutputs(1);
|
|
|
|
NO_GRADIENT(CreateDB);
|
|
} // namespace caffe2
|