summaryrefslogtreecommitdiff
path: root/test/correctness/routines/levelx/xim2col.cpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-07-16 22:33:49 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-07-16 22:33:49 +0200
commit97bcf77d4bc9b31e32a8785787e0497ac5440e44 (patch)
treeceb0601fc0e2ea009ba46b44be314fdb02eb9e74 /test/correctness/routines/levelx/xim2col.cpp
parent84ec50e29dc123b956a85e1dc37dae123323e420 (diff)
First step towards supporting im2col in the test infrastructure
Diffstat (limited to 'test/correctness/routines/levelx/xim2col.cpp')
-rw-r--r--test/correctness/routines/levelx/xim2col.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/correctness/routines/levelx/xim2col.cpp b/test/correctness/routines/levelx/xim2col.cpp
new file mode 100644
index 00000000..fe79b3ef
--- /dev/null
+++ b/test/correctness/routines/levelx/xim2col.cpp
@@ -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>
+//
+// =================================================================================================
+
+#include "test/correctness/testblas.hpp"
+#include "test/routines/levelx/xim2col.hpp"
+
+// Main function (not within the clblast namespace)
+int main(int argc, char *argv[]) {
+ auto errors = size_t{0};
+ errors += clblast::RunTests<clblast::TestXim2col<float>, float, float>(argc, argv, false, "SIM2COL");
+ errors += clblast::RunTests<clblast::TestXim2col<double>, double, double>(argc, argv, true, "DIM2COL");
+ errors += clblast::RunTests<clblast::TestXim2col<clblast::float2>, clblast::float2, clblast::float2>(argc, argv, true, "CIM2COL");
+ errors += clblast::RunTests<clblast::TestXim2col<clblast::double2>, clblast::double2, clblast::double2>(argc, argv, true, "ZIM2COL");
+ errors += clblast::RunTests<clblast::TestXim2col<clblast::half>, clblast::half, clblast::half>(argc, argv, true, "HIM2COL");
+ if (errors > 0) { return 1; } else { return 0; }
+}
+
+// =================================================================================================