summaryrefslogtreecommitdiff
path: root/src/routines/level3
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/level3
parent8e28a7699d73f24cb05c87a2b67c3690d64e3e11 (diff)
Made FillMatrix and FillVector functions take a configurable local workgroup size
Diffstat (limited to 'src/routines/level3')
-rw-r--r--src/routines/level3/xtrsm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routines/level3/xtrsm.cpp b/src/routines/level3/xtrsm.cpp
index d622e3bf..255e1cca 100644
--- a/src/routines/level3/xtrsm.cpp
+++ b/src/routines/level3/xtrsm.cpp
@@ -105,8 +105,8 @@ void Xtrsm<T>::TrsmColMajor(const Side side, const Triangle triangle,
// Fills the output buffer with zeros
auto eventWaitList = std::vector<Event>();
auto fill_matrix_event = Event();
- FillMatrix(queue_, device_, program_, db_, fill_matrix_event.pointer(), eventWaitList,
- x_one, x_two, x_ld, x_offset, x_buffer, ConstantZero<T>());
+ FillMatrix(queue_, device_, program_, fill_matrix_event.pointer(), eventWaitList,
+ x_one, x_two, x_ld, x_offset, x_buffer, ConstantZero<T>(), 16);
fill_matrix_event.WaitForCompletion();
// Inverts the diagonal blocks