summaryrefslogtreecommitdiff
path: root/test/correctness/testblas.cpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-03-12 10:41:18 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-03-12 10:41:18 +0100
commit068ff32e9f8094bf848cbc5bd250a8f25776960e (patch)
tree9932e20036b2e03c25e2c008dd46ff8a7a6a2ea7 /test/correctness/testblas.cpp
parent7b8f8fce6808f2095a68afe97256db7a78f819fa (diff)
Fixed a linker issue for Clang
Diffstat (limited to 'test/correctness/testblas.cpp')
-rw-r--r--test/correctness/testblas.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/correctness/testblas.cpp b/test/correctness/testblas.cpp
index 56376d0b..4a620686 100644
--- a/test/correctness/testblas.cpp
+++ b/test/correctness/testblas.cpp
@@ -21,6 +21,8 @@
namespace clblast {
// =================================================================================================
+template <typename T, typename U> const auto TestBlas<T,U>::kSeed = 42; // fixed seed for reproducibility
+
// Test settings for the regular test. Append to these lists in case more tests are required.
template <typename T, typename U> const std::vector<size_t> TestBlas<T,U>::kVectorDims = { 7, 93, 4096 };
template <typename T, typename U> const std::vector<size_t> TestBlas<T,U>::kIncrements = { 1, 2, 7 };