From cdd68c02f5a5b5e25a9f6ebcd1b6bc12831e8b49 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Thu, 23 Aug 2018 15:03:41 +0100 Subject: COMPMID-1534: Prevent graphs with missing NEON F16 features from running Change-Id: I9954e4240cf621819b2b028972e4cd4065485213 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/145399 Reviewed-by: Georgios Pinitas Tested-by: Jenkins --- examples/graph_mobilenet.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'examples/graph_mobilenet.cpp') diff --git a/examples/graph_mobilenet.cpp b/examples/graph_mobilenet.cpp index a8b0f4789c..cab578adf2 100644 --- a/examples/graph_mobilenet.cpp +++ b/examples/graph_mobilenet.cpp @@ -67,6 +67,9 @@ public: return false; } + // Checks + ARM_COMPUTE_EXIT_ON_MSG(common_params.data_type == DataType::F16 && common_params.target == Target::NEON, "F16 NEON not supported for this graph"); + // Print parameter values std::cout << common_params << std::endl; -- cgit v1.2.1