summaryrefslogtreecommitdiff
path: root/test/correctness
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2018-01-03 20:19:45 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2018-01-03 20:19:45 +0100
commiteb89371d2b36141ca94b1351c5217942a40d390c (patch)
tree2c891516a5081b4cf4ad73183cca1e9004ea7e7a /test/correctness
parentad1227c4f2934b0f60c0030101e18b8fb21daf8c (diff)
Added a queue argument to the get-size function when running the tests/clients
Diffstat (limited to 'test/correctness')
-rw-r--r--test/correctness/testblas.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/correctness/testblas.hpp b/test/correctness/testblas.hpp
index 4e02fd28..54b2d6f8 100644
--- a/test/correctness/testblas.hpp
+++ b/test/correctness/testblas.hpp
@@ -350,7 +350,7 @@ size_t RunTests(int argc, char *argv[], const bool silent, const std::string &na
for (auto &dilation_h: dilation_hs) { r_args.dilation_h = dilation_h;
for (auto &dilation_w: dilation_ws) { r_args.dilation_w = dilation_w;
for (auto &batch_count: batch_counts) { r_args.batch_count = batch_count;
- C::SetSizes(r_args);
+ C::SetSizes(r_args, tester.queue_);
regular_test_vector.push_back(r_args);
}
}