From 5e549fa8ff058eb06cb74de43b9f89a08d0b4a9c Mon Sep 17 00:00:00 2001 From: Mohammed Suhail Munshi Date: Wed, 16 Mar 2022 11:14:06 +0000 Subject: Add CLPool3d Int8 Support - Adds Qasymm8 and Qasymm8_signed support to the 3d pool operator Resolves: COMPMID-4669 Signed-off-by: Mohammed Suhail Munshi Change-Id: I36038c2b7c4f36baf67f7aae801356890e104538 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/c/VisualCompute/ComputeLibrary/+/410496 Tested-by: bsgcomp Reviewed-by: Sheri Zhang Comments-Addressed: bsgcomp Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7391 Tested-by: Arm Jenkins Reviewed-by: Gunes Bayir Comments-Addressed: Arm Jenkins --- tests/validation/fixtures/Pooling3dLayerFixture.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tests/validation/fixtures/Pooling3dLayerFixture.h') diff --git a/tests/validation/fixtures/Pooling3dLayerFixture.h b/tests/validation/fixtures/Pooling3dLayerFixture.h index 563f1dcced..9ba7bab53a 100644 --- a/tests/validation/fixtures/Pooling3dLayerFixture.h +++ b/tests/validation/fixtures/Pooling3dLayerFixture.h @@ -163,6 +163,19 @@ public: } }; +template +class Pooling3dLayerValidationQuantizedFixture : public Pooling3dLayerValidationGenericFixture +{ +public: + template + void setup(TensorShape shape, PoolingType pool_type, Size3D pool_size, Size3D stride, Padding3D padding, bool exclude_padding, DataType data_type, + QuantizationInfo input_qinfo, QuantizationInfo output_qinfo) + { + Pooling3dLayerValidationGenericFixture::setup(shape, Pooling3dLayerInfo(pool_type, pool_size, stride, padding, exclude_padding), + data_type, input_qinfo, output_qinfo); + } +}; + } // namespace validation } // namespace test } // namespace arm_compute -- cgit v1.2.1