summaryrefslogtreecommitdiff
path: root/test/performance
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-07-12 15:11:50 +0200
committerCNugteren <web@cedricnugteren.nl>2015-07-12 15:11:50 +0200
commitb5d39d9d0c3e1084cb5131e2822d4fb754b0b412 (patch)
tree163d6dcb5367f619c88002dd4bf772aa8f13cb74 /test/performance
parent9a929f3fb2081bd2fd8f68efce3b9d93e86bf611 (diff)
Added the HEMM routine, tester, and client
Diffstat (limited to 'test/performance')
-rw-r--r--test/performance/routines/xhemm.cc40
1 files changed, 40 insertions, 0 deletions
diff --git a/test/performance/routines/xhemm.cc b/test/performance/routines/xhemm.cc
new file mode 100644
index 00000000..34798d8d
--- /dev/null
+++ b/test/performance/routines/xhemm.cc
@@ -0,0 +1,40 @@
+
+// =================================================================================================
+// This file is part of the CLBlast project. The project is licensed under Apache Version 2.0. This
+// project loosely follows the Google C++ styleguide and uses a tab-size of two spaces and a max-
+// width of 100 characters per line.
+//
+// Author(s):
+// Cedric Nugteren <www.cedricnugteren.nl>
+//
+// This file implements the Xhemm command-line interface performance tester.
+//
+// =================================================================================================
+
+#include "performance/client.h"
+#include "routines/xhemm.h"
+
+// =================================================================================================
+
+// 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[]) {
+ 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::kComplexSingle:
+ clblast::RunClient<clblast::TestXhemm<float2>, float2, float2>(argc, argv); break;
+ case clblast::Precision::kComplexDouble:
+ clblast::RunClient<clblast::TestXhemm<double2>, double2, double2>(argc, argv); break;
+ }
+ return 0;
+}
+
+// =================================================================================================