| 387 | combine((SCALE_SHAPE_DATASET(num_elements_per_vector<float>())), make("DataType", DataType::F32)); |
| 388 | const auto f32_shape_nhwc = combine(datasets::Small3DShapes(), make("DataType", DataType::F32)); |
| 389 | FIXTURE_DATA_TEST_CASE(RunSmall, |
| 390 | NEScaleFixture<float>, |
| 391 | framework::DatasetMode::ALL, |
| 392 | ASSEMBLE_DATASET(f32_shape, ScaleSamplingPolicySet)) |
| 393 | { |
| 394 | //Create valid region |
| 395 | TensorInfo src_info(_shape, 1, _data_type); |
| 396 | ValidRegion valid_region = calculate_valid_region_scale(src_info, _reference.shape(), _policy, _sampling_policy, |
| 397 | (_border_mode == BorderMode::UNDEFINED)); |
| 398 | |
| 399 | // Validate output |
| 400 | validate(Accessor(_target), _reference, valid_region, tolerance_f32, tolerance_num_f32); |
| 401 | } |
| 402 | FIXTURE_DATA_TEST_CASE(RunMixedDataLayout, |
| 403 | NEScaleMixedDataLayoutFixture<float>, |
| 404 | framework::DatasetMode::PRECOMMIT, |
nothing calls this directly
no test coverage detected