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

Method SetUp

src/caffe/test/test_convolution_layer.cpp:824–833  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

822 blob_top_(new Blob<Dtype>()),
823 blob_top_2_(new Blob<Dtype>()) {}
824 virtual void SetUp() {
825 // fill the values
826 FillerParameter filler_param;
827 filler_param.set_value(1.);
828 GaussianFiller<Dtype> filler(filler_param);
829 filler.Fill(this->blob_bottom_);
830 filler.Fill(this->blob_bottom_2_);
831 blob_bottom_vec_.push_back(blob_bottom_);
832 blob_top_vec_.push_back(blob_top_);
833 }
834
835 virtual ~CuDNNConvolutionLayerTest() {
836 delete blob_bottom_;

Callers

nothing calls this directly

Calls 1

FillMethod · 0.45

Tested by

no test coverage detected