Skip to content
Snippets Groups Projects
Commit e2250b8d authored by Matt Wala's avatar Matt Wala
Browse files

ListOfListsBuilder: Ensure count and write kernels get passed the

correct local work size of 1 when do_not_vectorize() is true.

Closes #175
parent d025e592
No related branches found
No related tags found
1 merge request!10ListOfListsBuilder: Ensure count and write kernels get passed the
Pipeline #
......@@ -1039,7 +1039,7 @@ class ListOfListsBuilder:
if self.debug:
gsize = (1,)
lsize = (1,)
elif self.complex_kernel and queue.device.type == cl.device_type.CPU:
elif self.do_not_vectorize():
gsize = (4*queue.device.max_compute_units,)
lsize = (1,)
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment