summaryrefslogtreecommitdiff
path: root/test/performance/routines/level2/xsyr2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/performance/routines/level2/xsyr2.cpp')
-rw-r--r--test/performance/routines/level2/xsyr2.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/performance/routines/level2/xsyr2.cpp b/test/performance/routines/level2/xsyr2.cpp
index 24e0a517..39b46b6a 100644
--- a/test/performance/routines/level2/xsyr2.cpp
+++ b/test/performance/routines/level2/xsyr2.cpp
@@ -18,7 +18,8 @@ using double2 = clblast::double2;
// Main function (not within the clblast namespace)
int main(int argc, char *argv[]) {
- switch(clblast::GetPrecision(argc, argv, clblast::Precision::kSingle)) {
+ const auto command_line_args = clblast::RetrieveCommandLineArguments(argc, argv);
+ switch(clblast::GetPrecision(command_line_args, clblast::Precision::kSingle)) {
case clblast::Precision::kHalf:
clblast::RunClient<clblast::TestXsyr2<half>, half, half>(argc, argv); break;
case clblast::Precision::kSingle: