Caffe2 - C++ API
A deep learning, cross platform ML framework
key_split_ops.cc
1 #include "caffe2/operators/key_split_ops.h"
2 
3 #include "caffe2/core/operator.h"
4 #include "caffe2/core/tensor.h"
5 
6 namespace caffe2 {
7 
8 REGISTER_CPU_OPERATOR(KeySplit, KeySplitOp<int64_t, CPUContext>);
9 NO_GRADIENT(KeySplitOp);
10 OPERATOR_SCHEMA(KeySplit).NumInputs(1).NumOutputs(1, INT_MAX);
11 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13