aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-11-02 12:54:18 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2018-11-08 10:37:09 +0000
commitf1adf11c776aebaa8da1b8644a4ba2453afd2b81 (patch)
tree93b82ad1895ad7991a1494586e8979acc8b25aec /examples
parent83e3e7537bda871c2aade349d7f584d065a75092 (diff)
downloadComputeLibrary-f1adf11c776aebaa8da1b8644a4ba2453afd2b81.tar.gz
COMPMID-1579: Add support for ChannelShuffle operator in NEON
Change-Id: I6d5f91579850906e1eb973ff6c5612195255e631
Diffstat (limited to 'examples')
-rw-r--r--examples/graph_shufflenet.cpp (renamed from examples/graph_cl_shufflenet.cpp)2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/graph_cl_shufflenet.cpp b/examples/graph_shufflenet.cpp
index 0db34d6123..af8d11beb9 100644
--- a/examples/graph_cl_shufflenet.cpp
+++ b/examples/graph_shufflenet.cpp
@@ -62,7 +62,7 @@ public:
// Checks
ARM_COMPUTE_EXIT_ON_MSG(arm_compute::is_data_type_quantized_asymmetric(common_params.data_type), "QASYMM8 not supported for this graph");
- ARM_COMPUTE_EXIT_ON_MSG(common_params.target != Target::CL, "Only CL backend is supported for this network");
+ 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;