| 33 | /// \copydoc Layer::Setup(const LayerConf&); |
| 34 | void Setup(const Shape& in_sample, const LayerConf& conf) override; |
| 35 | const Shape GetOutputSampleShape() const override { |
| 36 | CHECK(hdim_) << "You may haven't call Setup()"; |
| 37 | return vector<size_t>{hdim_}; |
| 38 | } |
| 39 | |
| 40 | /// \copydoc Layer::Forward(int flag, const Tensor&) |
| 41 | const Tensor Forward(int flag, const Tensor& input) override; |
nothing calls this directly
no outgoing calls
no test coverage detected