| 24 | } |
| 25 | |
| 26 | virtual void SetUp() { |
| 27 | Caffe::set_random_seed(1701); |
| 28 | this->blob_bottom_->Reshape(11, 17, 19, 23); |
| 29 | this->blob_top_->Reshape(11, 17, 19, 23); |
| 30 | // fill the values |
| 31 | FillerParameter filler_param; |
| 32 | GaussianFiller<Dtype> filler(filler_param); |
| 33 | filler.Fill(this->blob_bottom_); |
| 34 | filler.Fill(this->blob_top_); |
| 35 | } |
| 36 | |
| 37 | virtual ~MathFunctionsTest() { |
| 38 | delete blob_bottom_; |
nothing calls this directly
no test coverage detected