aboutsummaryrefslogtreecommitdiff
path: root/examples/graph_lenet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/graph_lenet.cpp')
-rw-r--r--examples/graph_lenet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/graph_lenet.cpp b/examples/graph_lenet.cpp
index 1f04ff8a50..51b0881b1b 100644
--- a/examples/graph_lenet.cpp
+++ b/examples/graph_lenet.cpp
@@ -93,11 +93,11 @@ void main_graph_lenet(int argc, const char **argv)
}
// Check if OpenCL is available and initialize the scheduler
- Hint hint = Hint::NEON;
+ TargetHint hint = TargetHint::NEON;
if(arm_compute::opencl_is_available())
{
arm_compute::CLScheduler::get().default_init();
- hint = Hint::OPENCL;
+ hint = TargetHint::OPENCL;
}
Graph graph;