| 16 | class ArgMaxLayerTest : public CPUDeviceTest<Dtype> { |
| 17 | protected: |
| 18 | ArgMaxLayerTest() |
| 19 | : blob_bottom_(new Blob<Dtype>(10, 10, 20, 20)), |
| 20 | blob_top_(new Blob<Dtype>()), |
| 21 | top_k_(5) { |
| 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 ~ArgMaxLayerTest() { 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