summaryrefslogtreecommitdiff
path: root/test/correctness/testblas.cc
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-05-30 20:07:09 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-05-30 20:07:09 +0200
commitf6b2cd95793f12a5d8e146fd99a7cdc4e76cb4a9 (patch)
tree74982b6329fc677f34f0a56c114c1321b1165344 /test/correctness/testblas.cc
parent305bf16c4c59f063bb9baa83235b964443eb495d (diff)
Increased the verbosity of the -verbose option in the correctness tests
Diffstat (limited to 'test/correctness/testblas.cc')
-rw-r--r--test/correctness/testblas.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/correctness/testblas.cc b/test/correctness/testblas.cc
index 50871402..04bd3aa3 100644
--- a/test/correctness/testblas.cc
+++ b/test/correctness/testblas.cc
@@ -86,6 +86,11 @@ void TestBlas<T,U>::TestRegular(std::vector<Arguments<U>> &test_vector, const st
// Iterates over all the to-be-tested combinations of arguments
for (auto &args: test_vector) {
+ // Prints the current test configuration
+ if (verbose_) {
+ fprintf(stdout, " Config: %s-> ", GetOptionsString(args).c_str());
+ }
+
// Runs the CLBlast code
auto x_vec2 = Buffer<T>(context_, args.x_size);
auto y_vec2 = Buffer<T>(context_, args.y_size);