aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2018-08-21 17:53:38 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit477531c258801caf3cce44eb3e43df611b42fc6d (patch)
tree824294059aa01b658e80c760a5fb0773341add4f /tests/validation/fixtures
parent4854fc3d9cac1de37e4670bc4272f44b43be8fa3 (diff)
downloadComputeLibrary-477531c258801caf3cce44eb3e43df611b42fc6d.tar.gz
COMPMID-1527 - Implementing ReorgLayer on OpenCL
Also extended tests on NEON Change-Id: Icb0eced534e904ef807972dd3a31988f501bb02e Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/147095 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/fixtures')
-rw-r--r--tests/validation/fixtures/ReorgLayerFixture.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/validation/fixtures/ReorgLayerFixture.h b/tests/validation/fixtures/ReorgLayerFixture.h
index 2bc5a6fb8c..3300e0dd7c 100644
--- a/tests/validation/fixtures/ReorgLayerFixture.h
+++ b/tests/validation/fixtures/ReorgLayerFixture.h
@@ -59,9 +59,7 @@ protected:
TensorType compute_target(TensorShape input_shape, int32_t stride, DataType data_type, DataLayout data_layout)
{
- // Check if indeed the input shape can be reshape to the output one
- ARM_COMPUTE_EXPECT(stride >= 0, framework::LogLevel::ERRORS);
-
+ // Note: The input shape passed to the function is always in NCHW
if(data_layout == DataLayout::NHWC)
{
permute(input_shape, PermutationVector(2U, 0U, 1U));