| 10 | |
| 11 | template <typename Dtype> |
| 12 | void Blob<Dtype>::Reshape(const int num, const int channels, const int height, |
| 13 | const int width) { |
| 14 | vector<int> shape(4); |
| 15 | shape[0] = num; |
| 16 | shape[1] = channels; |
| 17 | shape[2] = height; |
| 18 | shape[3] = width; |
| 19 | Reshape(shape); |
| 20 | } |
| 21 | |
| 22 | template <typename Dtype> |
| 23 | void Blob<Dtype>::Reshape(const vector<int>& shape) { |
nothing calls this directly
no test coverage detected