aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark_examples/RunExample.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmark_examples/RunExample.cpp')
-rw-r--r--tests/benchmark_examples/RunExample.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/benchmark_examples/RunExample.cpp b/tests/benchmark_examples/RunExample.cpp
index f6a9742048..05430e7628 100644
--- a/tests/benchmark_examples/RunExample.cpp
+++ b/tests/benchmark_examples/RunExample.cpp
@@ -30,9 +30,9 @@
#include "arm_compute/runtime/Scheduler.h"
#include "tests/framework/Framework.h"
#include "tests/framework/Macros.h"
-#include "tests/framework/command_line/CommandLineParser.h"
#include "tests/framework/command_line/CommonOptions.h"
#include "tests/framework/instruments/Instruments.h"
+#include "utils/command_line/CommandLineParser.h"
#ifdef ARM_COMPUTE_CL
#include "arm_compute/runtime/CL/CLScheduler.h"
@@ -74,9 +74,9 @@ public:
int run_example(int argc, char **argv, std::unique_ptr<Example> example)
{
- framework::CommandLineParser parser;
- framework::CommonOptions options(parser);
- auto example_args = parser.add_option<framework::ListOption<std::string>>("example_args");
+ utils::CommandLineParser parser;
+ framework::CommonOptions options(parser);
+ auto example_args = parser.add_option<utils::ListOption<std::string>>("example_args");
example_args->set_help("Arguments to pass to the example separated by commas (e.g: arg0,arg1,arg2)");
framework::Framework &framework = framework::Framework::get();