summaryrefslogtreecommitdiff
path: root/test/routines/level2
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/routines/level2
parentad1227c4f2934b0f60c0030101e18b8fb21daf8c (diff)
Added a queue argument to the get-size function when running the tests/clients
Diffstat (limited to 'test/routines/level2')
-rw-r--r--test/routines/level2/xgbmv.hpp2
-rw-r--r--test/routines/level2/xgemv.hpp2
-rw-r--r--test/routines/level2/xger.hpp2
-rw-r--r--test/routines/level2/xgerc.hpp2
-rw-r--r--test/routines/level2/xgeru.hpp2
-rw-r--r--test/routines/level2/xhbmv.hpp2
-rw-r--r--test/routines/level2/xhemv.hpp2
-rw-r--r--test/routines/level2/xher.hpp2
-rw-r--r--test/routines/level2/xher2.hpp2
-rw-r--r--test/routines/level2/xhpmv.hpp2
-rw-r--r--test/routines/level2/xhpr.hpp2
-rw-r--r--test/routines/level2/xhpr2.hpp2
-rw-r--r--test/routines/level2/xsbmv.hpp2
-rw-r--r--test/routines/level2/xspmv.hpp2
-rw-r--r--test/routines/level2/xspr.hpp2
-rw-r--r--test/routines/level2/xspr2.hpp2
-rw-r--r--test/routines/level2/xsymv.hpp2
-rw-r--r--test/routines/level2/xsyr.hpp2
-rw-r--r--test/routines/level2/xsyr2.hpp2
-rw-r--r--test/routines/level2/xtbmv.hpp2
-rw-r--r--test/routines/level2/xtpmv.hpp2
-rw-r--r--test/routines/level2/xtrmv.hpp2
-rw-r--r--test/routines/level2/xtrsv.hpp2
23 files changed, 23 insertions, 23 deletions
diff --git a/test/routines/level2/xgbmv.hpp b/test/routines/level2/xgbmv.hpp
index 7c198e5d..13fcb137 100644
--- a/test/routines/level2/xgbmv.hpp
+++ b/test/routines/level2/xgbmv.hpp
@@ -58,7 +58,7 @@ class TestXgbmv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xgemv.hpp b/test/routines/level2/xgemv.hpp
index 780e2976..56372ad8 100644
--- a/test/routines/level2/xgemv.hpp
+++ b/test/routines/level2/xgemv.hpp
@@ -58,7 +58,7 @@ class TestXgemv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xger.hpp b/test/routines/level2/xger.hpp
index 9c5e2e40..85e987cb 100644
--- a/test/routines/level2/xger.hpp
+++ b/test/routines/level2/xger.hpp
@@ -54,7 +54,7 @@ class TestXger {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xgerc.hpp b/test/routines/level2/xgerc.hpp
index 5f58b65d..49200b22 100644
--- a/test/routines/level2/xgerc.hpp
+++ b/test/routines/level2/xgerc.hpp
@@ -54,7 +54,7 @@ class TestXgerc {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xgeru.hpp b/test/routines/level2/xgeru.hpp
index fea3932c..67f9f510 100644
--- a/test/routines/level2/xgeru.hpp
+++ b/test/routines/level2/xgeru.hpp
@@ -54,7 +54,7 @@ class TestXgeru {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xhbmv.hpp b/test/routines/level2/xhbmv.hpp
index 0ccd69b7..4ee9c066 100644
--- a/test/routines/level2/xhbmv.hpp
+++ b/test/routines/level2/xhbmv.hpp
@@ -52,7 +52,7 @@ class TestXhbmv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xhemv.hpp b/test/routines/level2/xhemv.hpp
index 053bc2dc..b1fb0bee 100644
--- a/test/routines/level2/xhemv.hpp
+++ b/test/routines/level2/xhemv.hpp
@@ -52,7 +52,7 @@ class TestXhemv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xher.hpp b/test/routines/level2/xher.hpp
index 745df43f..ec183f7a 100644
--- a/test/routines/level2/xher.hpp
+++ b/test/routines/level2/xher.hpp
@@ -49,7 +49,7 @@ class TestXher {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<U> &args) {
+ static void SetSizes(Arguments<U> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
}
diff --git a/test/routines/level2/xher2.hpp b/test/routines/level2/xher2.hpp
index 794e9a1e..5f442ca4 100644
--- a/test/routines/level2/xher2.hpp
+++ b/test/routines/level2/xher2.hpp
@@ -52,7 +52,7 @@ class TestXher2 {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xhpmv.hpp b/test/routines/level2/xhpmv.hpp
index 157272d3..00f32244 100644
--- a/test/routines/level2/xhpmv.hpp
+++ b/test/routines/level2/xhpmv.hpp
@@ -52,7 +52,7 @@ class TestXhpmv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.ap_size = GetSizeAP(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xhpr.hpp b/test/routines/level2/xhpr.hpp
index a3bc60d1..1e9bbe29 100644
--- a/test/routines/level2/xhpr.hpp
+++ b/test/routines/level2/xhpr.hpp
@@ -49,7 +49,7 @@ class TestXhpr {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<U> &args) {
+ static void SetSizes(Arguments<U> &args, Queue&) {
args.ap_size = GetSizeAP(args);
args.x_size = GetSizeX(args);
}
diff --git a/test/routines/level2/xhpr2.hpp b/test/routines/level2/xhpr2.hpp
index 1aa6cc54..433a5a93 100644
--- a/test/routines/level2/xhpr2.hpp
+++ b/test/routines/level2/xhpr2.hpp
@@ -52,7 +52,7 @@ class TestXhpr2 {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.ap_size = GetSizeAP(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xsbmv.hpp b/test/routines/level2/xsbmv.hpp
index 51d6441e..12f1ca60 100644
--- a/test/routines/level2/xsbmv.hpp
+++ b/test/routines/level2/xsbmv.hpp
@@ -52,7 +52,7 @@ class TestXsbmv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xspmv.hpp b/test/routines/level2/xspmv.hpp
index f3089836..a8db7a7b 100644
--- a/test/routines/level2/xspmv.hpp
+++ b/test/routines/level2/xspmv.hpp
@@ -52,7 +52,7 @@ class TestXspmv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.ap_size = GetSizeAP(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xspr.hpp b/test/routines/level2/xspr.hpp
index d76de610..af17b8cd 100644
--- a/test/routines/level2/xspr.hpp
+++ b/test/routines/level2/xspr.hpp
@@ -49,7 +49,7 @@ class TestXspr {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.ap_size = GetSizeAP(args);
args.x_size = GetSizeX(args);
}
diff --git a/test/routines/level2/xspr2.hpp b/test/routines/level2/xspr2.hpp
index 5ce82a52..b615aca7 100644
--- a/test/routines/level2/xspr2.hpp
+++ b/test/routines/level2/xspr2.hpp
@@ -52,7 +52,7 @@ class TestXspr2 {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.ap_size = GetSizeAP(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xsymv.hpp b/test/routines/level2/xsymv.hpp
index 2a70756d..9c418f88 100644
--- a/test/routines/level2/xsymv.hpp
+++ b/test/routines/level2/xsymv.hpp
@@ -52,7 +52,7 @@ class TestXsymv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xsyr.hpp b/test/routines/level2/xsyr.hpp
index 02aad990..73818727 100644
--- a/test/routines/level2/xsyr.hpp
+++ b/test/routines/level2/xsyr.hpp
@@ -49,7 +49,7 @@ class TestXsyr {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
}
diff --git a/test/routines/level2/xsyr2.hpp b/test/routines/level2/xsyr2.hpp
index 492a9d2d..8cdfb305 100644
--- a/test/routines/level2/xsyr2.hpp
+++ b/test/routines/level2/xsyr2.hpp
@@ -52,7 +52,7 @@ class TestXsyr2 {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/level2/xtbmv.hpp b/test/routines/level2/xtbmv.hpp
index 587676ca..8e1e7610 100644
--- a/test/routines/level2/xtbmv.hpp
+++ b/test/routines/level2/xtbmv.hpp
@@ -48,7 +48,7 @@ class TestXtbmv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
}
diff --git a/test/routines/level2/xtpmv.hpp b/test/routines/level2/xtpmv.hpp
index 02f334a2..b28fbf65 100644
--- a/test/routines/level2/xtpmv.hpp
+++ b/test/routines/level2/xtpmv.hpp
@@ -48,7 +48,7 @@ class TestXtpmv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.ap_size = GetSizeAP(args);
args.x_size = GetSizeX(args);
}
diff --git a/test/routines/level2/xtrmv.hpp b/test/routines/level2/xtrmv.hpp
index 4f2dd582..4f4e3a55 100644
--- a/test/routines/level2/xtrmv.hpp
+++ b/test/routines/level2/xtrmv.hpp
@@ -48,7 +48,7 @@ class TestXtrmv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
}
diff --git a/test/routines/level2/xtrsv.hpp b/test/routines/level2/xtrsv.hpp
index 81508236..52adad38 100644
--- a/test/routines/level2/xtrsv.hpp
+++ b/test/routines/level2/xtrsv.hpp
@@ -48,7 +48,7 @@ class TestXtrsv {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.a_size = GetSizeA(args);
args.x_size = GetSizeX(args);
}