summaryrefslogtreecommitdiff
path: root/test/routines/levelx
diff options
context:
space:
mode:
Diffstat (limited to 'test/routines/levelx')
-rw-r--r--test/routines/levelx/xaxpybatched.hpp2
-rw-r--r--test/routines/levelx/xgemmbatched.hpp2
-rw-r--r--test/routines/levelx/xim2col.hpp2
-rw-r--r--test/routines/levelx/xinvert.hpp2
-rw-r--r--test/routines/levelx/xomatcopy.hpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/test/routines/levelx/xaxpybatched.hpp b/test/routines/levelx/xaxpybatched.hpp
index e9715f4e..9a09b47f 100644
--- a/test/routines/levelx/xaxpybatched.hpp
+++ b/test/routines/levelx/xaxpybatched.hpp
@@ -51,7 +51,7 @@ class TestXaxpyBatched {
}
// Describes how to set the sizes of all the buffers
- static void SetSizes(Arguments<T> &args) {
+ static void SetSizes(Arguments<T> &args, Queue&) {
args.x_size = GetSizeX(args);
args.y_size = GetSizeY(args);
diff --git a/test/routines/levelx/xgemmbatched.hpp b/test/routines/levelx/xgemmbatched.hpp
index 2a8bd9d4..e237a018 100644
--- a/test/routines/levelx/xgemmbatched.hpp
+++ b/test/routines/levelx/xgemmbatched.hpp
@@ -71,7 +71,7 @@ class TestXgemmBatched {
}
// 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.b_size = GetSizeB(args);
args.c_size = GetSizeC(args);
diff --git a/test/routines/levelx/xim2col.hpp b/test/routines/levelx/xim2col.hpp
index e90537fa..092e251d 100644
--- a/test/routines/levelx/xim2col.hpp
+++ b/test/routines/levelx/xim2col.hpp
@@ -62,7 +62,7 @@ public:
}
// 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.b_size = GetSizeB(args);
}
diff --git a/test/routines/levelx/xinvert.hpp b/test/routines/levelx/xinvert.hpp
index b8503029..126856ac 100644
--- a/test/routines/levelx/xinvert.hpp
+++ b/test/routines/levelx/xinvert.hpp
@@ -149,7 +149,7 @@ class TestXinvert {
}
// 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.b_size = GetSizeB(args);
}
diff --git a/test/routines/levelx/xomatcopy.hpp b/test/routines/levelx/xomatcopy.hpp
index 477d6da6..ea35dbe2 100644
--- a/test/routines/levelx/xomatcopy.hpp
+++ b/test/routines/levelx/xomatcopy.hpp
@@ -104,7 +104,7 @@ class TestXomatcopy {
}
// 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.b_size = GetSizeB(args);
}