| 6 | |
| 7 | template <typename Dtype> |
| 8 | void NeuronLayer<Dtype>::Reshape(const vector<Blob<Dtype>*>& bottom, |
| 9 | const vector<Blob<Dtype>*>& top) { |
| 10 | top[0]->ReshapeLike(*bottom[0]); |
| 11 | } |
| 12 | |
| 13 | INSTANTIATE_CLASS(NeuronLayer); |
| 14 |
nothing calls this directly
no test coverage detected