| 18 | |
| 19 | template <typename Dtype> |
| 20 | void RNNLayer<Dtype>::RecurrentOutputBlobNames(vector<string>* names) const { |
| 21 | names->resize(1); |
| 22 | (*names)[0] = "h_" + format_int(this->T_); |
| 23 | } |
| 24 | |
| 25 | template <typename Dtype> |
| 26 | void RNNLayer<Dtype>::RecurrentInputShapes(vector<BlobShape>* shapes) const { |
no test coverage detected