COMPMID-1109 - Enabling Winograd in the graph when possible

Change-Id: I524abd28188995ae9c7a43b189b1eb2d7546be93
Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/130576
Tested-by: Jenkins <bsgcomp@arm.com>
Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
diff --git a/examples/graph_inception_v4.cpp b/examples/graph_inception_v4.cpp
index d505133..8f34035 100644
--- a/examples/graph_inception_v4.cpp
+++ b/examples/graph_inception_v4.cpp
@@ -54,10 +54,9 @@
         std::unique_ptr<IPreprocessor> preprocessor = arm_compute::support::cpp14::make_unique<TFPreproccessor>();
 
         // Set target. 0 (NEON), 1 (OpenCL). By default it is NEON
-        const int target      = argc > 1 ? std::strtol(argv[1], nullptr, 10) : 0;
-        Target    target_hint = set_target_hint(target);
-
-        ConvolutionMethod convolution_hint = (target_hint == Target::CL) ? ConvolutionMethod::WINOGRAD : ConvolutionMethod::GEMM;
+        const int         target           = argc > 1 ? std::strtol(argv[1], nullptr, 10) : 0;
+        Target            target_hint      = set_target_hint(target);
+        ConvolutionMethod convolution_hint = target_hint == Target::NEON ? ConvolutionMethod::GEMM : ConvolutionMethod::DEFAULT;
 
         // Parse arguments
         if(argc < 2)