aboutsummaryrefslogtreecommitdiff
path: root/tests/benchmark_examples
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-03-07 09:27:48 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:48:33 +0000
commit979dc4f336d31d9ddacd4f2b594596c882e868eb (patch)
treea90c39f00e3af6a7c608d10b086e0e8ca12ffc5b /tests/benchmark_examples
parentae2af74ae4368004221a41e6891e0173453996ac (diff)
downloadComputeLibrary-979dc4f336d31d9ddacd4f2b594596c882e868eb.tar.gz
COMPMID-971: Created validate_examples for MPG
They wanted some SGEMM test with validation and benchmarking capabilities which can be configured at runtime, so I created a mix of example + validation framework. This is really hacky and therefore won't be released as part of the library, but it seems to work. Change-Id: I7e7728e1f5c6619c0f0d7c83106c85676d2ffc62 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/123706 Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/benchmark_examples')
-rw-r--r--tests/benchmark_examples/RunExample.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/benchmark_examples/RunExample.cpp b/tests/benchmark_examples/RunExample.cpp
index f1dca819ab..d41f3d30e0 100644
--- a/tests/benchmark_examples/RunExample.cpp
+++ b/tests/benchmark_examples/RunExample.cpp
@@ -70,7 +70,7 @@ int run_example(int argc, char **argv, Example &example)
framework::CommandLineParser parser;
framework::CommonOptions options(parser);
auto example_args = parser.add_option<framework::ListOption<std::string>>("example_args");
- example_args->set_help("Arguments to pass to the example");
+ example_args->set_help("Arguments to pass to the example separated by commas (e.g: arg0,arg1,arg2)");
framework::Framework &framework = framework::Framework::get();
parser.parse(argc, argv);