aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/ScaleFixture.h
diff options
context:
space:
mode:
authorSang-Hoon Park <sang-hoon.park@arm.com>2020-06-22 13:48:56 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-06-22 19:07:10 +0000
commit9e4b899efb0eb78e86c5e2ea76a360776d85241d (patch)
treebe6af096252e8338ba7c383e7037851b5642f4e4 /tests/validation/fixtures/ScaleFixture.h
parent80feed5193de6b10d8ab65b42fb988c241c5d09d (diff)
downloadComputeLibrary-9e4b899efb0eb78e86c5e2ea76a360776d85241d.tar.gz
COMPMID-3364: prevent auto dimension correction for ScaleFixture
Auto dimension correction makes tests failed when data layout is NHWC and the last dimension has size of one which results in difference in number of dimensions from reference's result based on NCHW. Change-Id: I25c17870448ecc5a658774dbd01cddc7462cb09a Signed-off-by: Sang-Hoon Park <sang-hoon.park@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3432 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/fixtures/ScaleFixture.h')
-rw-r--r--tests/validation/fixtures/ScaleFixture.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/validation/fixtures/ScaleFixture.h b/tests/validation/fixtures/ScaleFixture.h
index 199186f8e2..12d9012ece 100644
--- a/tests/validation/fixtures/ScaleFixture.h
+++ b/tests/validation/fixtures/ScaleFixture.h
@@ -133,8 +133,8 @@ protected:
const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
TensorShape shape_scaled(shape);
- shape_scaled.set(idx_width, shape[idx_width] * _scale_x);
- shape_scaled.set(idx_height, shape[idx_height] * _scale_y);
+ shape_scaled.set(idx_width, shape[idx_width] * _scale_x, /* apply_dim_correction = */ false);
+ shape_scaled.set(idx_height, shape[idx_height] * _scale_y, /* apply_dim_correction = */ false);
TensorType dst = create_tensor<TensorType>(shape_scaled, _data_type, 1, _quantization_info, data_layout);
// Create and configure function