summaryrefslogtreecommitdiff
path: root/test/performance/routines/level3/xsymm.cpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-04-16 19:41:14 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-04-16 19:41:14 +0200
commit2673f5051820db82ebb857d88c2f36f7cacbed7d (patch)
treef3323af174bde2793b3c4692f3404d2a18c5eadb /test/performance/routines/level3/xsymm.cpp
parent063ef729e123aa2cebc7f67c73f99f3e15606fe2 (diff)
parentb20c518f9fd05a69957c2018e72c6a648f5cdb7d (diff)
Merge branch 'development' into benchmarking
Diffstat (limited to 'test/performance/routines/level3/xsymm.cpp')
-rw-r--r--test/performance/routines/level3/xsymm.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/performance/routines/level3/xsymm.cpp b/test/performance/routines/level3/xsymm.cpp
index 04ae8eb0..ba3b6ab2 100644
--- a/test/performance/routines/level3/xsymm.cpp
+++ b/test/performance/routines/level3/xsymm.cpp
@@ -12,10 +12,6 @@
#include "test/performance/client.hpp"
#include "test/routines/level3/xsymm.hpp"
-// Shortcuts to the clblast namespace
-using float2 = clblast::float2;
-using double2 = clblast::double2;
-
// Main function (not within the clblast namespace)
int main(int argc, char *argv[]) {
const auto command_line_args = clblast::RetrieveCommandLineArguments(argc, argv);
@@ -27,9 +23,9 @@ int main(int argc, char *argv[]) {
case clblast::Precision::kDouble:
clblast::RunClient<clblast::TestXsymm<double>, double, double>(argc, argv); break;
case clblast::Precision::kComplexSingle:
- clblast::RunClient<clblast::TestXsymm<float2>, float2, float2>(argc, argv); break;
+ clblast::RunClient<clblast::TestXsymm<clblast::float2>, clblast::float2, clblast::float2>(argc, argv); break;
case clblast::Precision::kComplexDouble:
- clblast::RunClient<clblast::TestXsymm<double2>, double2, double2>(argc, argv); break;
+ clblast::RunClient<clblast::TestXsymm<clblast::double2>, clblast::double2, clblast::double2>(argc, argv); break;
}
return 0;
}