From db2b160bf9e7759d0157dfa57ee940290f5170e3 Mon Sep 17 00:00:00 2001 From: narpra01 Date: Wed, 23 Jan 2019 15:23:11 +0000 Subject: IVGCVSW-2511 Add end to end Gather layer test * Add end to end test for Gather operator * Add Support for int32 to Constant layer for Ref * Add Int32Workload * Add RefConstantWorkload as template for float, uint8, int32 * Remove unused RefBaseConstantWorkload * Remove unused RefConstantFloat32Workload * Remove unused RefConstantUint8Workload * Add support check for int32 in LayerSupport functions Change-Id: Ic970588a49ebe2aafb12be8adef52371feacaa7b --- src/backends/reference/test/RefEndToEndTests.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src/backends/reference/test') diff --git a/src/backends/reference/test/RefEndToEndTests.cpp b/src/backends/reference/test/RefEndToEndTests.cpp index 4f4a161509..330f406265 100644 --- a/src/backends/reference/test/RefEndToEndTests.cpp +++ b/src/backends/reference/test/RefEndToEndTests.cpp @@ -4,6 +4,7 @@ // #include +#include #include #include @@ -416,4 +417,24 @@ BOOST_AUTO_TEST_CASE(RefMergerEndToEndDim3Uint8Test) MergerDim3EndToEnd(defaultBackends); } +BOOST_AUTO_TEST_CASE(RefGatherFloatTest) +{ + GatherEndToEnd(defaultBackends); +} + +BOOST_AUTO_TEST_CASE(RefGatherUint8Test) +{ + GatherEndToEnd(defaultBackends); +} + +BOOST_AUTO_TEST_CASE(RefGatherMultiDimFloatTest) +{ + GatherMultiDimEndToEnd(defaultBackends); +} + +BOOST_AUTO_TEST_CASE(RefGatherMultiDimUint8Test) +{ + GatherMultiDimEndToEnd(defaultBackends); +} + BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.1