Caffe2 - C++ API
A deep learning, cross platform ML framework
create_db_op.cc
1 #include "caffe2/db/create_db_op.h"
2 
3 namespace caffe2 {
4 REGISTER_CPU_OPERATOR(CreateDB, CreateDBOp<CPUContext>);
5 
6 OPERATOR_SCHEMA(CreateDB).NumInputs(0).NumOutputs(1);
7 
8 NO_GRADIENT(CreateDB);
9 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13