aboutsummaryrefslogtreecommitdiff
path: root/examples/neon_cnn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/neon_cnn.cpp')
-rw-r--r--examples/neon_cnn.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/neon_cnn.cpp b/examples/neon_cnn.cpp
index 05b6c832bc..1df81256b9 100644
--- a/examples/neon_cnn.cpp
+++ b/examples/neon_cnn.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016, 2018 ARM Limited.
+ * Copyright (c) 2016-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -36,7 +36,7 @@ using namespace utils;
class NEONCNNExample : public Example
{
public:
- void do_setup(int argc, char **argv) override
+ bool do_setup(int argc, char **argv) override
{
ARM_COMPUTE_UNUSED(argc);
ARM_COMPUTE_UNUSED(argv);
@@ -227,6 +227,8 @@ public:
// Finalize the manager. (Validity checks, memory allocations etc)
mm_transitions->finalize();
+
+ return true;
}
void do_run() override
{