aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2021-05-10 15:53:31 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-05-11 12:34:53 +0000
commit5a44b3bda0edd9ebdd1aa07f2668a7540788edb1 (patch)
tree5915dd640c8486257c60e585d30ff371883d66f1
parentf34552b103e21b7961587f688b5fc11af874e20a (diff)
downloadComputeLibrary-5a44b3bda0edd9ebdd1aa07f2668a7540788edb1.tar.gz
Remove add padding test on weights fot CL DirectConvolutionLayer
Removing test externally adding padding to weights after configure() In order to properly use the export_to_cl_image feature the weights are padded with the right values and should not be changed Resolves: COMPMID-4493 Change-Id: I48e7dc06403f126897b3bbe3d9fc7200782631e5 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5611 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--tests/validation/fixtures/DirectConvolutionLayerFixture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/fixtures/DirectConvolutionLayerFixture.h b/tests/validation/fixtures/DirectConvolutionLayerFixture.h
index 38efe475b3..d21a2e7ec3 100644
--- a/tests/validation/fixtures/DirectConvolutionLayerFixture.h
+++ b/tests/validation/fixtures/DirectConvolutionLayerFixture.h
@@ -171,7 +171,7 @@ protected:
ARM_COMPUTE_ASSERT(bias.info()->is_resizable());
ARM_COMPUTE_ASSERT(dst.info()->is_resizable());
- add_padding_x({ &src, &weights, &bias, &dst }, data_layout);
+ add_padding_x({ &src, &bias, &dst }, data_layout);
// Allocate tensors
src.allocator()->allocate();