From 1f0ff35236c1dd05954735f7fed9c2807770479e Mon Sep 17 00:00:00 2001 From: Matthew Bentham Date: Wed, 2 Jan 2019 13:26:31 +0000 Subject: MLCE-82 Add IsLayerSupported tests for MEAN Change-Id: I43be451f490db0154021f47a2fd49d1269cf5b95 --- src/backends/cl/test/ClLayerSupportTests.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/backends/cl/test') diff --git a/src/backends/cl/test/ClLayerSupportTests.cpp b/src/backends/cl/test/ClLayerSupportTests.cpp index acfd8c3483..bcf057b1fb 100644 --- a/src/backends/cl/test/ClLayerSupportTests.cpp +++ b/src/backends/cl/test/ClLayerSupportTests.cpp @@ -7,6 +7,7 @@ #include #include +#include #include #include @@ -106,4 +107,14 @@ BOOST_FIXTURE_TEST_CASE(IsConvertFp32ToFp16SupportedFp32OutputCl, ClContextContr BOOST_CHECK_EQUAL(reasonIfUnsupported, "Output should be Float16"); } +BOOST_FIXTURE_TEST_CASE(IsMeanSupportedCl, ClContextControlFixture) +{ + std::string reasonIfUnsupported; + + bool result = IsMeanLayerSupportedTests(reasonIfUnsupported); + + BOOST_CHECK(result); +} + BOOST_AUTO_TEST_SUITE_END() -- cgit v1.2.1