arm_compute v19.05
diff --git a/examples/graph_mobilenet_v2.cpp b/examples/graph_mobilenet_v2.cpp
index 429a3d2..25690aa 100644
--- a/examples/graph_mobilenet_v2.cpp
+++ b/examples/graph_mobilenet_v2.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
  *
  * SPDX-License-Identifier: MIT
  *
@@ -70,7 +70,7 @@
 
         // Set graph hints
         graph << common_params.target
-              << DepthwiseConvolutionMethod::Optimized3x3 // FIXME(COMPMID-1073): Add heuristics to automatically call the optimized 3x3 method
+              << DepthwiseConvolutionMethod::Optimized3x3 // TODO(COMPMID-1073): Add heuristics to automatically call the optimized 3x3 method
               << common_params.fast_math_hint;
 
         // Create core graph
@@ -91,6 +91,7 @@
         GraphConfig config;
         config.num_threads = common_params.threads;
         config.use_tuner   = common_params.enable_tuner;
+        config.tuner_mode  = common_params.tuner_mode;
         config.tuner_file  = common_params.tuner_file;
 
         graph.finalize(common_params.target, config);
@@ -263,7 +264,7 @@
     void create_graph_qasymm8(TensorDescriptor &input_descriptor)
     {
         // Create model path
-        const std::string model_path = "/cnn_data/mobilenet_v2_1.0_224_quantized_model";
+        const std::string model_path = "/cnn_data/mobilenet_v2_1.0_224_quantized_model/";
 
         // Get trainable parameters data path
         std::string data_path = common_params.data_path;