aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/validation/Helpers.h3
-rw-r--r--tests/validation/fixtures/DirectConvolutionLayerFixture.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/validation/Helpers.h b/tests/validation/Helpers.h
index 3ba3bd1259..e06d239307 100644
--- a/tests/validation/Helpers.h
+++ b/tests/validation/Helpers.h
@@ -230,7 +230,8 @@ std::pair<int, int> get_quantized_qasymm8_signed_bounds(const QuantizationInfo &
*/
std::pair<int, int> get_symm_quantized_per_channel_bounds(const QuantizationInfo &quant_info, float min, float max, size_t channel_id = 0);
-/** Add random padding along the X axis (between 1 and 16 columns per side) to all the input tensors
+/** Add random padding along the X axis (between 1 and 16 columns per side) to all the input tensors.
+ * This is used in our validation suite in order to simulate implicit padding addition after configuring, but before allocating.
*
* @param[in] tensors List of tensors to add padding to
* @param[in] data_layout (Optional) Data layout of the operator
diff --git a/tests/validation/fixtures/DirectConvolutionLayerFixture.h b/tests/validation/fixtures/DirectConvolutionLayerFixture.h
index b79991e3d4..7f1896678e 100644
--- a/tests/validation/fixtures/DirectConvolutionLayerFixture.h
+++ b/tests/validation/fixtures/DirectConvolutionLayerFixture.h
@@ -171,8 +171,7 @@ protected:
ARM_COMPUTE_EXPECT(bias.info()->is_resizable(), framework::LogLevel::ERRORS);
ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
- // TODO: uncomment after COMPMID-4341
- // add_padding_x({ &src, &weights, &bias, &dst }, data_layout);
+ add_padding_x({ &src, &weights, &bias, &dst }, data_layout);
// Allocate tensors
src.allocator()->allocate();