| 61 | |
| 62 | template <typename Dtype> |
| 63 | Blob<Dtype>::Blob(const int num, const int channels, const int height, |
| 64 | const int width) |
| 65 | // capacity_ must be initialized before calling Reshape |
| 66 | : capacity_(0) { |
| 67 | Reshape(num, channels, height, width); |
| 68 | } |
| 69 | |
| 70 | template <typename Dtype> |
| 71 | Blob<Dtype>::Blob(const vector<int>& shape) |
nothing calls this directly
no outgoing calls
no test coverage detected