Caffe2 - C++ API
A deep learning, cross platform ML framework
numpy_tile_op.cc
1 #include "caffe2/operators/numpy_tile_op.h"
2 
3 namespace caffe2 {
4 
5 REGISTER_CPU_OPERATOR(NumpyTile, NumpyTileOp<CPUContext>);
6 
7 OPERATOR_SCHEMA(NumpyTile)
8  .NumInputs(2)
9  .Input(0, "data", "The input tensor.")
10  .Input(1, "repeats", "1-D Tensor specifying how many times to repeat"
11  " each axis.")
12  .Output(
13  0,
14  "tiled_data",
15  "Tensor that will contain input replicated along the given axis.")
16  .InheritOnnxSchema("Tile");
17 
18 } // namespace caffe2
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...
Definition: blob.h:13