From 97bcf77d4bc9b31e32a8785787e0497ac5440e44 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Sun, 16 Jul 2017 22:33:49 +0200 Subject: First step towards supporting im2col in the test infrastructure --- test/correctness/routines/levelx/xim2col.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 test/correctness/routines/levelx/xim2col.cpp (limited to 'test/correctness/routines/levelx/xim2col.cpp') 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 +// +// ================================================================================================= + +#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, float, float>(argc, argv, false, "SIM2COL"); + errors += clblast::RunTests, double, double>(argc, argv, true, "DIM2COL"); + errors += clblast::RunTests, clblast::float2, clblast::float2>(argc, argv, true, "CIM2COL"); + errors += clblast::RunTests, clblast::double2, clblast::double2>(argc, argv, true, "ZIM2COL"); + errors += clblast::RunTests, clblast::half, clblast::half>(argc, argv, true, "HIM2COL"); + if (errors > 0) { return 1; } else { return 0; } +} + +// ================================================================================================= -- cgit v1.2.3