MCPcopy Create free account
hub / github.com/BVLC/caffe / Blob

Method Blob

src/caffe/blob.cpp:63–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61
62template <typename Dtype>
63Blob<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
70template <typename Dtype>
71Blob<Dtype>::Blob(const vector<int>& shape)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected