aboutsummaryrefslogtreecommitdiff
path: root/tests/framework
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-07-13 09:26:51 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit9452233e0322c4d2801dfedb5194acf7ff6d6af2 (patch)
treedb9b59eb39d51cccead3fe0fa6a751a375b4312f /tests/framework
parent2ec14f5a52d28eded07ddd015a188f8e691227d7 (diff)
downloadComputeLibrary-9452233e0322c4d2801dfedb5194acf7ff6d6af2.tar.gz
COMPMID-1398: Removed --threads from CommonOptions
Otherwise --threads appear twice for benchmark_graph_* tests Change-Id: I4f5454f6a2fda2558386290583a0ab84cd4666bb Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/139827 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Diffstat (limited to 'tests/framework')
-rw-r--r--tests/framework/command_line/CommonOptions.cpp2
-rw-r--r--tests/framework/command_line/CommonOptions.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/tests/framework/command_line/CommonOptions.cpp b/tests/framework/command_line/CommonOptions.cpp
index f1c140e6fe..fee18f6386 100644
--- a/tests/framework/command_line/CommonOptions.cpp
+++ b/tests/framework/command_line/CommonOptions.cpp
@@ -39,7 +39,6 @@ CommonOptions::CommonOptions(CommandLineParser &parser)
: help(parser.add_option<ToggleOption>("help")),
instruments(),
iterations(parser.add_option<SimpleOption<int>>("iterations", 1)),
- threads(parser.add_option<SimpleOption<int>>("threads", 1)),
log_format(),
log_file(parser.add_option<SimpleOption<std::string>>("log-file")),
log_level(),
@@ -87,7 +86,6 @@ CommonOptions::CommonOptions(CommandLineParser &parser)
help->set_help("Show this help message");
instruments->set_help("Set the profiling instruments to use");
iterations->set_help("Number of iterations per test case");
- threads->set_help("Number of threads to use");
log_format->set_help("Output format for measurements and failures (affects only log-file)");
log_file->set_help("Write output to file instead of to the console (affected by log-format)");
log_level->set_help("Verbosity of the output");
diff --git a/tests/framework/command_line/CommonOptions.h b/tests/framework/command_line/CommonOptions.h
index b29c1d8dd5..f4646a0299 100644
--- a/tests/framework/command_line/CommonOptions.h
+++ b/tests/framework/command_line/CommonOptions.h
@@ -74,7 +74,6 @@ public:
arm_compute::utils::ToggleOption *help; /**< Show help option */
arm_compute::utils::EnumListOption<InstrumentsDescription> *instruments; /**< Instruments option */
arm_compute::utils::SimpleOption<int> *iterations; /**< Number of iterations option */
- arm_compute::utils::SimpleOption<int> *threads; /**< Number of threads option */
arm_compute::utils::EnumOption<LogFormat> *log_format; /**< Log format option */
arm_compute::utils::SimpleOption<std::string> *log_file; /**< Log file option */
arm_compute::utils::EnumOption<LogLevel> *log_level; /**< Logging level option */