summaryrefslogtreecommitdiff
path: root/test/correctness/testblas.cpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-06-27 20:59:28 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-06-27 20:59:28 +0200
commite60b10529a0548597d2398fb1e55dcbfa6c104e6 (patch)
tree65c27a4c33dfed3aa0f9333e750be0e5e3192be2 /test/correctness/testblas.cpp
parentce528a9d39a976760f84c194016f22fc493a5d57 (diff)
Undo of earlier move of TestBlas::kTransposes constant to fix MSVC 2013 compilation
Diffstat (limited to 'test/correctness/testblas.cpp')
-rw-r--r--test/correctness/testblas.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/correctness/testblas.cpp b/test/correctness/testblas.cpp
index 1c8aab33..edd9d4ea 100644
--- a/test/correctness/testblas.cpp
+++ b/test/correctness/testblas.cpp
@@ -21,7 +21,10 @@
namespace clblast {
// =================================================================================================
-// The transpose configurations to test with: cases other than No/Yes
+// The transpose configurations to test with: template parameter dependent
+template <> const std::vector<Transpose> TestBlas<half,half>::kTransposes = {Transpose::kNo, Transpose::kYes};
+template <> const std::vector<Transpose> TestBlas<float,float>::kTransposes = {Transpose::kNo, Transpose::kYes};
+template <> const std::vector<Transpose> TestBlas<double,double>::kTransposes = {Transpose::kNo, Transpose::kYes};
template <> const std::vector<Transpose> TestBlas<float2,float2>::kTransposes = {Transpose::kNo, Transpose::kYes, Transpose::kConjugate};
template <> const std::vector<Transpose> TestBlas<double2,double2>::kTransposes = {Transpose::kNo, Transpose::kYes, Transpose::kConjugate};
template <> const std::vector<Transpose> TestBlas<float2,float>::kTransposes = {Transpose::kNo, Transpose::kConjugate};