aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammed Suhail Munshi <MohammedSuhail.Munshi@arm.com>2022-04-19 14:29:57 +0100
committerGunes Bayir <gunes.bayir@arm.com>2022-04-20 15:53:00 +0000
commit01a8adebad130517678c2f5e6b97041a6e026048 (patch)
tree94d5f260dbb19d654678d92dfe72797b7da09a24
parent5e549fa8ff058eb06cb74de43b9f89a08d0b4a9c (diff)
downloadComputeLibrary-01a8adebad130517678c2f5e6b97041a6e026048.tar.gz
Fix Duplicate Template in Pooling3dFixture
- Duplicate fixture in Pooling3dLayerFixture causes build errors Resolves: COMPMID-4669 Change-Id: I5384941129feae6f90a18dce10677043e0e54718 Signed-off-by: Mohammed Suhail Munshi <MohammedSuhail.Munshi@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7419 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--tests/validation/fixtures/Pooling3dLayerFixture.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/validation/fixtures/Pooling3dLayerFixture.h b/tests/validation/fixtures/Pooling3dLayerFixture.h
index 9ba7bab53a..563f1dcced 100644
--- a/tests/validation/fixtures/Pooling3dLayerFixture.h
+++ b/tests/validation/fixtures/Pooling3dLayerFixture.h
@@ -163,19 +163,6 @@ public:
}
};
-template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
-class Pooling3dLayerValidationQuantizedFixture : public Pooling3dLayerValidationGenericFixture<TensorType, AccessorType, FunctionType, T>
-{
-public:
- template <typename...>
- 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<TensorType, AccessorType, FunctionType, T>::setup(shape, Pooling3dLayerInfo(pool_type, pool_size, stride, padding, exclude_padding),
- data_type, input_qinfo, output_qinfo);
- }
-};
-
} // namespace validation
} // namespace test
} // namespace arm_compute