summaryrefslogtreecommitdiff
path: root/src/routines/level2
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2018-05-27 12:03:32 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2018-05-27 12:03:32 +0200
commit53198121acae87ed4e212f63579f3f5259a80bf3 (patch)
tree70b1a8b619e0e89fe653f4fe65fb3c0a929d63c3 /src/routines/level2
parent8e28a7699d73f24cb05c87a2b67c3690d64e3e11 (diff)
Made FillMatrix and FillVector functions take a configurable local workgroup size
Diffstat (limited to 'src/routines/level2')
-rw-r--r--src/routines/level2/xtrsv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routines/level2/xtrsv.cpp b/src/routines/level2/xtrsv.cpp
index 36c33a76..c474db4c 100644
--- a/src/routines/level2/xtrsv.cpp
+++ b/src/routines/level2/xtrsv.cpp
@@ -102,8 +102,8 @@ void Xtrsv<T>::DoTrsv(const Layout layout, const Triangle triangle,
// Fills the output buffer with zeros
auto eventWaitList = std::vector<Event>();
auto fill_vector_event = Event();
- FillVector(queue_, device_, program_, db_, fill_vector_event.pointer(), eventWaitList,
- n, x_inc, x_offset, x_buffer, ConstantZero<T>());
+ FillVector(queue_, device_, program_, fill_vector_event.pointer(), eventWaitList,
+ n, x_inc, x_offset, x_buffer, ConstantZero<T>(), 16);
fill_vector_event.WaitForCompletion();
// Derives properties based on the arguments