Caffe2 - C++ API
A deep learning, cross platform ML framework
data_couple.cc
1 #include "caffe2/operators/data_couple.h"
2 
3 namespace caffe2 {
4 REGISTER_CPU_OPERATOR(DataCouple, DataCoupleOp<CPUContext>);
5 
6 OPERATOR_SCHEMA(DataCouple)
7  .EnforceOneToOneInplace()
8  .SetDoc(R"DOC(
9 
10 A one to one operator that takes an arbitrary number of input and output blobs
11 such that each input blob is inplace with it's matching output blob. It then proceedes
12 to do nothing with each of these operators. This serves two purposes. It can make it
13 appear as if a blob has been written to, as well as can tie together different blobs
14 in a data dependency
15 
16 )DOC");
17 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13