summaryrefslogtreecommitdiff
path: root/test/routines/level1/xdot.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/routines/level1/xdot.h')
-rw-r--r--test/routines/level1/xdot.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/routines/level1/xdot.h b/test/routines/level1/xdot.h
index d1c34c0f..0bbc93d5 100644
--- a/test/routines/level1/xdot.h
+++ b/test/routines/level1/xdot.h
@@ -91,9 +91,9 @@ class TestXdot {
auto queue_plain = queue();
auto event = cl_event{};
auto status = clblasXdot<T>(args.n,
- buffers.scalar(), args.dot_offset,
- buffers.x_vec(), args.x_offset, args.x_inc,
- buffers.y_vec(), args.y_offset, args.y_inc,
+ buffers.scalar, args.dot_offset,
+ buffers.x_vec, args.x_offset, args.x_inc,
+ buffers.y_vec, args.y_offset, args.y_inc,
1, &queue_plain, 0, nullptr, &event);
clWaitForEvents(1, &event);
return static_cast<StatusCode>(status);