| 19 | class DummyDataLayer : public Layer<Dtype> { |
| 20 | public: |
| 21 | explicit DummyDataLayer(const LayerParameter& param) |
| 22 | : Layer<Dtype>(param) {} |
| 23 | virtual void LayerSetUp(const vector<Blob<Dtype>*>& bottom, |
| 24 | const vector<Blob<Dtype>*>& top); |
| 25 | // Data layers have no bottoms, so reshaping is trivial. |
nothing calls this directly
no outgoing calls
no test coverage detected