From 5a44b3bda0edd9ebdd1aa07f2668a7540788edb1 Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Mon, 10 May 2021 15:53:31 +0100 Subject: 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 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5611 Comments-Addressed: Arm Jenkins Reviewed-by: Georgios Pinitas Tested-by: Arm Jenkins --- tests/validation/fixtures/DirectConvolutionLayerFixture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- cgit v1.2.1