summaryrefslogtreecommitdiff
path: root/test/correctness/tester.cpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-03-05 15:04:16 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-03-05 15:04:16 +0100
commitcdf354f89524ed88d4f9358004e5a8eabd9ce286 (patch)
tree644b8a67d2e34663335a5a7faa2052e13fe6e1aa /test/correctness/tester.cpp
parent7f14b11f1e240f12f5f6bf93cbbeab26001e9a5c (diff)
Adjusted the test-infrastructure to support testing of batched-versions of routines
Diffstat (limited to 'test/correctness/tester.cpp')
-rw-r--r--test/correctness/tester.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/correctness/tester.cpp b/test/correctness/tester.cpp
index cbfc5bb2..40784fdb 100644
--- a/test/correctness/tester.cpp
+++ b/test/correctness/tester.cpp
@@ -367,6 +367,7 @@ std::string Tester<T,U>::GetOptionsString(const Arguments<U> &args) {
if (o == kArgDotOffset){ result += kArgDotOffset + equals + ToString(args.dot_offset) + " "; }
if (o == kArgAlpha) { result += kArgAlpha + equals + ToString(args.alpha) + " "; }
if (o == kArgBeta) { result += kArgBeta + equals + ToString(args.beta) + " "; }
+ if (o == kArgBatchCount){result += kArgBatchCount + equals + ToString(args.batch_count) + " "; }
}
return result;
}