aboutsummaryrefslogtreecommitdiff
path: root/src/backends/neon/test/NeonLayerSupportTests.cpp
diff options
context:
space:
mode:
authorMatthew Bentham <matthew.bentham@arm.com>2019-01-02 13:26:31 +0000
committerMatthew Bentham <matthew.bentham@arm.com>2019-01-10 16:12:45 +0000
commit1f0ff35236c1dd05954735f7fed9c2807770479e (patch)
treecc0614c31f897159b67801d1fa77f9ff20df4380 /src/backends/neon/test/NeonLayerSupportTests.cpp
parent60f906404e09aa2a8af0dbc8f1ae4c2fd2d4175a (diff)
downloadarmnn-1f0ff35236c1dd05954735f7fed9c2807770479e.tar.gz
MLCE-82 Add IsLayerSupported tests for MEAN
Change-Id: I43be451f490db0154021f47a2fd49d1269cf5b95
Diffstat (limited to 'src/backends/neon/test/NeonLayerSupportTests.cpp')
-rw-r--r--src/backends/neon/test/NeonLayerSupportTests.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/backends/neon/test/NeonLayerSupportTests.cpp b/src/backends/neon/test/NeonLayerSupportTests.cpp
index c6d2731fd2..435afd23a6 100644
--- a/src/backends/neon/test/NeonLayerSupportTests.cpp
+++ b/src/backends/neon/test/NeonLayerSupportTests.cpp
@@ -61,4 +61,14 @@ BOOST_AUTO_TEST_CASE(IsConvertFp32ToFp16SupportedNeon)
BOOST_CHECK(result);
}
+BOOST_AUTO_TEST_CASE(IsMeanSupportedNeon)
+{
+ std::string reasonIfUnsupported;
+
+ bool result = IsMeanLayerSupportedTests<armnn::NeonWorkloadFactory,
+ armnn::DataType::Float32, armnn::DataType::Float32>(reasonIfUnsupported);
+
+ BOOST_CHECK(result);
+}
+
BOOST_AUTO_TEST_SUITE_END()