aboutsummaryrefslogtreecommitdiff
path: root/tests/main.cpp
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2017-10-11 14:08:03 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit7631021dcfd4772c3cc315f8b3256f1ed125c5af (patch)
tree9f6925c3894fd2264f141c4bd7b0ec728bf61ff3 /tests/main.cpp
parenta4a96015a6c7d92bed08f82db9b36e1d34f9386d (diff)
downloadComputeLibrary-7631021dcfd4772c3cc315f8b3256f1ed125c5af.tar.gz
COMPMID-556 By default only enable Wall Clock timer
That's the only instrument that is guaranteed to work on all platforms Change-Id: Ib4076ad0b176fa9ca9ec0df182c032517e394530 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/91378 Reviewed-by: Pablo Tello <pablo.tello@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index e70da59484..5bdd665068 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -106,7 +106,7 @@ int main(int argc, char **argv)
help->set_help("Show this help message");
auto dataset_mode = parser.add_option<framework::EnumOption<framework::DatasetMode>>("mode", allowed_modes, framework::DatasetMode::PRECOMMIT);
dataset_mode->set_help("For managed datasets select which group to use");
- auto instruments = parser.add_option<framework::EnumListOption<framework::InstrumentType>>("instruments", allowed_instruments, std::initializer_list<framework::InstrumentType> { framework::InstrumentType::ALL });
+ auto instruments = parser.add_option<framework::EnumListOption<framework::InstrumentType>>("instruments", allowed_instruments, std::initializer_list<framework::InstrumentType> { framework::InstrumentType::WALL_CLOCK_TIMER });
instruments->set_help("Set the profiling instruments to use");
auto iterations = parser.add_option<framework::SimpleOption<int>>("iterations", 1);
iterations->set_help("Number of iterations per test case");