aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/test/TransposeConvolution2dTestImpl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/backendsCommon/test/TransposeConvolution2dTestImpl.hpp')
-rw-r--r--src/backends/backendsCommon/test/TransposeConvolution2dTestImpl.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backends/backendsCommon/test/TransposeConvolution2dTestImpl.hpp b/src/backends/backendsCommon/test/TransposeConvolution2dTestImpl.hpp
index 9140c19383..64caa3fce1 100644
--- a/src/backends/backendsCommon/test/TransposeConvolution2dTestImpl.hpp
+++ b/src/backends/backendsCommon/test/TransposeConvolution2dTestImpl.hpp
@@ -493,7 +493,8 @@ LayerTestResult<T, 4> MultiChannelTransposeConvolution2dTest(
TensorShape inputShape = MakeTensorShape(1, 1, 2, 2, layout);
TensorShape outputShape = MakeTensorShape(1, 2, 5, 5, layout);
- TensorShape weightsShape = MakeTensorShape(1, 2, 3, 3, layout);
+ // OIHW for NCHW; OHWI for NHWC
+ TensorShape weightsShape = MakeTensorShape(2, 1, 3, 3, layout);
TensorShape biasesShape = { 2 };
TensorInfo inputInfo(inputShape, ArmnnType);