summaryrefslogtreecommitdiff
path: root/src/tuning/routines/xgemm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tuning/routines/xgemm.cpp')
-rw-r--r--src/tuning/routines/xgemm.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/tuning/routines/xgemm.cpp b/src/tuning/routines/xgemm.cpp
index cd22137a..a12ab706 100644
--- a/src/tuning/routines/xgemm.cpp
+++ b/src/tuning/routines/xgemm.cpp
@@ -75,10 +75,11 @@ void TuneXgemm(int argc, char* argv[]) {
const auto queue = Queue(context, device);
// Buffers
- auto a_mat = Buffer<T>(context, to * to);
- auto b_mat = Buffer<T>(context, to * to);
- auto c_mat = Buffer<T>(context, to * to);
- auto buffers = std::vector<Buffer<T>>{a_mat, b_mat, c_mat};
+ auto buffers = std::vector<Buffer<T>>{
+ Buffer<T>(context, to * to),
+ Buffer<T>(context, to * to),
+ Buffer<T>(context, to * to)
+ };
// In-direct version
printf("\n* Testing the in-direct GEMM routine for m=n=k\n");