summaryrefslogtreecommitdiff
path: root/test/performance/routines/level3/xhemm.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/performance/routines/level3/xhemm.cc')
-rw-r--r--test/performance/routines/level3/xhemm.cc13
1 files changed, 3 insertions, 10 deletions
diff --git a/test/performance/routines/level3/xhemm.cc b/test/performance/routines/level3/xhemm.cc
index d215653b..cc68e937 100644
--- a/test/performance/routines/level3/xhemm.cc
+++ b/test/performance/routines/level3/xhemm.cc
@@ -7,15 +7,11 @@
// Author(s):
// Cedric Nugteren <www.cedricnugteren.nl>
//
-// This file implements the Xhemm command-line interface performance tester.
-//
// =================================================================================================
#include "performance/client.h"
#include "routines/level3/xhemm.h"
-// =================================================================================================
-
// Shortcuts to the clblast namespace
using float2 = clblast::float2;
using double2 = clblast::double2;
@@ -23,12 +19,9 @@ using double2 = clblast::double2;
// Main function (not within the clblast namespace)
int main(int argc, char *argv[]) {
switch(clblast::GetPrecision(argc, argv)) {
- case clblast::Precision::kHalf:
- throw std::runtime_error("Unsupported precision mode");
- case clblast::Precision::kSingle:
- throw std::runtime_error("Unsupported precision mode");
- case clblast::Precision::kDouble:
- throw std::runtime_error("Unsupported precision mode");
+ case clblast::Precision::kHalf: throw std::runtime_error("Unsupported precision mode");
+ case clblast::Precision::kSingle: throw std::runtime_error("Unsupported precision mode");
+ case clblast::Precision::kDouble: throw std::runtime_error("Unsupported precision mode");
case clblast::Precision::kComplexSingle:
clblast::RunClient<clblast::TestXhemm<float2>, float2, float2>(argc, argv); break;
case clblast::Precision::kComplexDouble: