From e0a4ad8a8e6ef271883e8029985eeab16d838972 Mon Sep 17 00:00:00 2001 From: Narumol Prangnawarat Date: Mon, 4 Feb 2019 19:05:27 +0000 Subject: IVGCVSW-2557 Add layer tests for Ref Detection PostProcess Change-Id: Ia2e512c0ed035bc6ee46cd67df5e619da9770900 Signed-off-by: Narumol Prangnawarat --- src/backends/reference/test/RefLayerTests.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/backends/reference/test') diff --git a/src/backends/reference/test/RefLayerTests.cpp b/src/backends/reference/test/RefLayerTests.cpp index cfe02e673e..b4ef85a1dd 100644 --- a/src/backends/reference/test/RefLayerTests.cpp +++ b/src/backends/reference/test/RefLayerTests.cpp @@ -9,6 +9,7 @@ #include #include +#include #include #include @@ -500,4 +501,23 @@ ARMNN_AUTO_TEST_CASE(GatherMultiDimParamsUint8, GatherMultiDimParamsUint8Test) ARMNN_AUTO_TEST_CASE(GatherMultiDimParamsMultiDimIndicesFloat, GatherMultiDimParamsMultiDimIndicesFloatTest) ARMNN_AUTO_TEST_CASE(GatherMultiDimParamsMultiDimIndicesUint8, GatherMultiDimParamsMultiDimIndicesUint8Test) +// Detection PostProcess +BOOST_AUTO_TEST_CASE(DetectionPostProcessRegularNmsFloat) +{ + DetectionPostProcessRegularNmsFloatTest(); +} +BOOST_AUTO_TEST_CASE(DetectionPostProcessFastNmsFloat) +{ + DetectionPostProcessFastNmsFloatTest(); +} +BOOST_AUTO_TEST_CASE(DetectionPostProcessRegularNmsUint8) +{ + DetectionPostProcessRegularNmsUint8Test(); +} +BOOST_AUTO_TEST_CASE(DetectionPostProcessFastNmsUint8) +{ + DetectionPostProcessFastNmsUint8Test(); +} + + BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.1