| 23 | blob_top_1_(new Blob<Dtype>()), |
| 24 | blob_top_2_(new Blob<Dtype>()) {} |
| 25 | virtual void SetUp() { |
| 26 | // fill the values |
| 27 | Caffe::set_random_seed(1701); |
| 28 | FillerParameter filler_param; |
| 29 | GaussianFiller<Dtype> filler(filler_param); |
| 30 | filler.Fill(this->blob_bottom_); |
| 31 | blob_top_vec_0_.push_back(blob_top_0_); |
| 32 | blob_top_vec_0_.push_back(blob_top_1_); |
| 33 | blob_top_vec_1_.push_back(blob_top_0_); |
| 34 | blob_top_vec_1_.push_back(blob_top_1_); |
| 35 | blob_top_vec_1_.push_back(blob_top_2_); |
| 36 | blob_bottom_vec_.push_back(blob_bottom_); |
| 37 | } |
| 38 | |
| 39 | virtual void ReduceBottomBlobSize() { |
| 40 | blob_bottom_->Reshape(4, 5, 2, 2); |
no test coverage detected