Caffe2 - C++ API
A deep learning, cross platform ML framework
feed_blob_op.cc
1 #include "caffe2/operators/feed_blob_op.h"
2 
3 namespace caffe2 {
4 REGISTER_CPU_OPERATOR(FeedBlob, FeedBlobOp<CPUContext>);
5 SHOULD_NOT_DO_GRADIENT(FeedBlob);
6 
7 OPERATOR_SCHEMA(FeedBlob)
8  .NumInputs(0, 0)
9  .NumOutputs(1, 1)
10  .SetDoc(R"DOC(
11 FeedBlobs the content of the blobs. The input and output blobs should be
12 one-to-one inplace.)DOC")
13  .Arg(
14  "value",
15  "(string) if provided then we will use this string as the value for the"
16  "provided output tensor");
17 
18 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13