summaryrefslogtreecommitdiff
path: root/test/performance
diff options
context:
space:
mode:
authorcnugteren <web@cedricnugteren.nl>2016-04-20 21:11:33 -0600
committercnugteren <web@cedricnugteren.nl>2016-04-20 21:11:33 -0600
commit894983fc3c7c57ffc48c21523641694cde318eca (patch)
treee1c5e36923448fa6c89014216308bce631c24a6e /test/performance
parent5a4f8217be97575daf4f0f97d8ae7f8cf7bbbcd0 (diff)
Added prototype for ixAMAX routines
Diffstat (limited to 'test/performance')
-rw-r--r--test/performance/routines/level1/xamax.cc35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/performance/routines/level1/xamax.cc b/test/performance/routines/level1/xamax.cc
new file mode 100644
index 00000000..85caa483
--- /dev/null
+++ b/test/performance/routines/level1/xamax.cc
@@ -0,0 +1,35 @@
+
+// =================================================================================================
+// 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>
+//
+// =================================================================================================
+
+#include "performance/client.h"
+#include "routines/level1/xamax.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, clblast::Precision::kSingle)) {
+ case clblast::Precision::kHalf: throw std::runtime_error("Unsupported precision mode");
+ case clblast::Precision::kSingle:
+ clblast::RunClient<clblast::TestXamax<float>, float, float>(argc, argv); break;
+ case clblast::Precision::kDouble:
+ clblast::RunClient<clblast::TestXamax<double>, double, double>(argc, argv); break;
+ case clblast::Precision::kComplexSingle:
+ clblast::RunClient<clblast::TestXamax<float2>, float2, float2>(argc, argv); break;
+ case clblast::Precision::kComplexDouble:
+ clblast::RunClient<clblast::TestXamax<double2>, double2, double2>(argc, argv); break;
+ }
+ return 0;
+}
+
+// =================================================================================================