Skip to content

Commit ee80bcd

Browse files
committed
Update test_caffe_manual.cpp
1 parent 7c2db59 commit ee80bcd

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

test_caffe_manual.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,11 @@ int main(int argc, char** argv) {
101101
boost::shared_ptr<Layer<float> > layer;
102102
boost::shared_ptr<Blob<float> > blob;
103103

104+
// show input blob size
105+
Blob<float>* input_blobs = net->input_blobs()[0];
106+
std::cout << "\nInput blob size:\n";
107+
PRINT_SHAPE2(input_blobs);
108+
104109
// processing blobs of each layer, namely, weights and bias
105110
const float *mem_ptr;
106111
CHECK(layers.size() == layer_names.size());

0 commit comments

Comments
 (0)