summaryrefslogtreecommitdiff
path: root/test/correctness/routines
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-07-02 07:16:04 +0200
committerCNugteren <web@cedricnugteren.nl>2015-07-02 07:16:04 +0200
commitd9ea0c47c65ff41da2d213cce8b0ef434e817ec2 (patch)
tree38ca31239e232f53a07a62797b4c06f106d8e8c1 /test/correctness/routines
parent500416aa38aa2bd03fa24a0d57ac9a2e00cb4c41 (diff)
Added the TRMM routine, tester, and client
Diffstat (limited to 'test/correctness/routines')
-rw-r--r--test/correctness/routines/xtrmm.cc96
1 files changed, 96 insertions, 0 deletions
diff --git a/test/correctness/routines/xtrmm.cc b/test/correctness/routines/xtrmm.cc
new file mode 100644
index 00000000..943fb664
--- /dev/null
+++ b/test/correctness/routines/xtrmm.cc
@@ -0,0 +1,96 @@
+
+// =================================================================================================
+// 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 Xtrmm routine.
+//
+// =================================================================================================
+
+#include "correctness/testblas.h"
+#include "routines/xtrmm.h"
+
+namespace clblast {
+// =================================================================================================
+
+// The correctness tester
+template <typename T>
+void RunTest(int argc, char *argv[], const bool silent, const std::string &name) {
+
+ // Creates a tester
+ TestBlas<T> tester{argc, argv, silent, name, TestXtrmm<T>::GetOptions(),
+ TestXtrmm<T>::RunRoutine, TestXtrmm<T>::RunReference,
+ TestXtrmm<T>::DownloadResult, TestXtrmm<T>::GetResultIndex,
+ TestXtrmm<T>::ResultID1, TestXtrmm<T>::ResultID2};
+
+ // This variable holds the arguments relevant for this routine
+ auto args = Arguments<T>{};
+
+ // Loops over the test-cases from a data-layout point of view
+ for (auto &layout: tester.kLayouts) { args.layout = layout;
+ for (auto &side: tester.kSides) { args.side = side;
+ for (auto &triangle: tester.kTriangles) { args.triangle = triangle;
+ for (auto &a_transpose: tester.kTransposes) { args.a_transpose = a_transpose;
+ for (auto &diagonal: tester.kDiagonals) { args.diagonal = diagonal;
+
+ // Creates the arguments vector for the regular tests
+ auto regular_test_vector = std::vector<Arguments<T>>{};
+ for (auto &m: tester.kMatrixDims) { args.m = m;
+ for (auto &n: tester.kMatrixDims) { args.n = n;
+ for (auto &a_ld: tester.kMatrixDims) { args.a_ld = a_ld;
+ for (auto &a_offset: tester.kOffsets) { args.a_offset = a_offset;
+ for (auto &b_ld: tester.kMatrixDims) { args.b_ld = b_ld;
+ for (auto &b_offset: tester.kOffsets) { args.b_offset = b_offset;
+ for (auto &alpha: tester.kAlphaValues) { args.alpha = alpha;
+ args.a_size = TestXtrmm<T>::GetSizeA(args);
+ args.b_size = TestXtrmm<T>::GetSizeB(args);
+ if (args.a_size<1 || args.b_size<1) { continue; }
+ regular_test_vector.push_back(args);
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ // Creates the arguments vector for the invalid-buffer tests
+ auto invalid_test_vector = std::vector<Arguments<T>>{};
+ args.m = args.n = tester.kBufferSize;
+ args.a_ld = args.b_ld = tester.kBufferSize;
+ args.a_offset = args.b_offset = 0;
+ for (auto &a_size: tester.kMatSizes) { args.a_size = a_size;
+ for (auto &b_size: tester.kMatSizes) { args.b_size = b_size;
+ invalid_test_vector.push_back(args);
+ }
+ }
+
+ // Runs the tests
+ const auto case_name = ToString(layout)+" "+ToString(side)+" "+ToString(triangle)+" "+
+ ToString(a_transpose)+" "+ToString(diagonal);
+ tester.TestRegular(regular_test_vector, case_name);
+ tester.TestInvalid(invalid_test_vector, case_name);
+ }
+ }
+ }
+ }
+ }
+}
+
+// =================================================================================================
+} // namespace clblast
+
+// Main function (not within the clblast namespace)
+int main(int argc, char *argv[]) {
+ clblast::RunTest<float>(argc, argv, false, "STRMM");
+ clblast::RunTest<double>(argc, argv, true, "DTRMM");
+ clblast::RunTest<clblast::float2>(argc, argv, true, "CTRMM");
+ clblast::RunTest<clblast::double2>(argc, argv, true, "ZTRMM");
+ return 0;
+}
+
+// =================================================================================================