summaryrefslogtreecommitdiff
path: root/test/correctness
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-07-31 17:35:42 +0200
committerCNugteren <web@cedricnugteren.nl>2015-07-31 17:35:42 +0200
commit938ca2707fed28cff5ad35d2472c09828ef08ca7 (patch)
tree9d90703851e7c034d5ff15dac83c52518778d6ea /test/correctness
parentb89517a2e77d855debbaabc45861ba6d8b7d4adc (diff)
Added HEMV routine
Diffstat (limited to 'test/correctness')
-rw-r--r--test/correctness/routines/level2/xhemv.cc30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/correctness/routines/level2/xhemv.cc b/test/correctness/routines/level2/xhemv.cc
new file mode 100644
index 00000000..183aebc2
--- /dev/null
+++ b/test/correctness/routines/level2/xhemv.cc
@@ -0,0 +1,30 @@
+
+// =================================================================================================
+// 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 tests for the Xhemv routine.
+//
+// =================================================================================================
+
+#include "correctness/testblas.h"
+#include "routines/level2/xhemv.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[]) {
+ clblast::RunTests<clblast::TestXhemv<float2>, float2, float2>(argc, argv, false, "CHEMV");
+ clblast::RunTests<clblast::TestXhemv<double2>, double2, double2>(argc, argv, true, "ZHEMV");
+ return 0;
+}
+
+// =================================================================================================