aboutsummaryrefslogtreecommitdiff
path: root/examples/graph_inception_v4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/graph_inception_v4.cpp')
-rw-r--r--examples/graph_inception_v4.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/graph_inception_v4.cpp b/examples/graph_inception_v4.cpp
index 7893930993..c78bbb285a 100644
--- a/examples/graph_inception_v4.cpp
+++ b/examples/graph_inception_v4.cpp
@@ -22,11 +22,15 @@
* SOFTWARE.
*/
#include "arm_compute/graph.h"
+#ifdef ARM_COMPUTE_CL
+#include "arm_compute/runtime/CL/Utils.h"
+#endif /* ARM_COMPUTE_CL */
#include "support/ToolchainSupport.h"
#include "utils/CommonGraphOptions.h"
#include "utils/GraphUtils.h"
#include "utils/Utils.h"
+using namespace arm_compute;
using namespace arm_compute::utils;
using namespace arm_compute::graph::frontend;
using namespace arm_compute::graph_utils;
@@ -158,7 +162,9 @@ public:
// compilation won't be required.
if(common_params.enable_cl_cache)
{
+#ifdef ARM_COMPUTE_CL
restore_program_cache_from_file();
+#endif /* ARM_COMPUTE_CL */
}
graph.finalize(common_params.target, config);
@@ -166,7 +172,9 @@ public:
// Save the opencl kernels to a file
if(common_opts.enable_cl_cache)
{
+#ifdef ARM_COMPUTE_CL
save_program_cache_to_file();
+#endif /* ARM_COMPUTE_CL */
}
return true;