| 34 | |
| 35 | template <typename Dtype> |
| 36 | void RNNLayer<Dtype>::OutputBlobNames(vector<string>* names) const { |
| 37 | names->resize(1); |
| 38 | (*names)[0] = "o"; |
| 39 | } |
| 40 | |
| 41 | template <typename Dtype> |
| 42 | void RNNLayer<Dtype>::FillUnrolledNet(NetParameter* net_param) const { |
nothing calls this directly
no outgoing calls
no test coverage detected