summaryrefslogtreecommitdiff
path: root/test/correctness
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-07-31 17:13:41 +0200
committerCNugteren <web@cedricnugteren.nl>2015-07-31 17:13:41 +0200
commitb89517a2e77d855debbaabc45861ba6d8b7d4adc (patch)
tree066b11515886f1e51cda11670fec07fc20279e7d /test/correctness
parent674f69390ddae172107360c2fbc546b574143cdb (diff)
Added SYMV routine
Diffstat (limited to 'test/correctness')
-rw-r--r--test/correctness/routines/level2/xsymv.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/correctness/routines/level2/xsymv.cc b/test/correctness/routines/level2/xsymv.cc
new file mode 100644
index 00000000..a479b999
--- /dev/null
+++ b/test/correctness/routines/level2/xsymv.cc
@@ -0,0 +1,26 @@
+
+// =================================================================================================
+// 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 Xsymv routine.
+//
+// =================================================================================================
+
+#include "correctness/testblas.h"
+#include "routines/level2/xsymv.h"
+
+// =================================================================================================
+
+// Main function (not within the clblast namespace)
+int main(int argc, char *argv[]) {
+ clblast::RunTests<clblast::TestXsymv<float>, float, float>(argc, argv, false, "SSYMV");
+ clblast::RunTests<clblast::TestXsymv<double>, double, double>(argc, argv, true, "DSYMV");
+ return 0;
+}
+
+// =================================================================================================