| 17 | typedef typename TypeParam::Dtype Dtype; |
| 18 | protected: |
| 19 | FlattenLayerTest() |
| 20 | : blob_bottom_(new Blob<Dtype>(2, 3, 6, 5)), |
| 21 | blob_top_(new Blob<Dtype>()) { |
| 22 | Caffe::set_random_seed(1701); |
| 23 | // fill the values |
| 24 | FillerParameter filler_param; |
| 25 | GaussianFiller<Dtype> filler(filler_param); |
| 26 | filler.Fill(this->blob_bottom_); |
| 27 | blob_bottom_vec_.push_back(blob_bottom_); |
| 28 | blob_top_vec_.push_back(blob_top_); |
| 29 | } |
| 30 | virtual ~FlattenLayerTest() { delete blob_bottom_; delete blob_top_; } |
| 31 | Blob<Dtype>* const blob_bottom_; |
| 32 | Blob<Dtype>* const blob_top_; |
nothing calls this directly
no test coverage detected