Skip to content
Snippets Groups Projects
Commit b09cc192 authored by James Stevens's avatar James Stevens
Browse files

allowing 0 stride in make_args and make_ref_args by calculating alloc_size as if stride-1

parent f21ed48e
No related branches found
No related tags found
1 merge request!241allowing stride=0 in make_args and make_ref_args by calculating alloc_size as if stride=1
......@@ -128,9 +128,7 @@ def make_ref_args(kernel, impl_arg_info, queue, parameters):
else:
strides = evaluate(arg.unvec_strides, parameters)
from pytools import all
assert all(s > 0 for s in strides)
alloc_size = sum(astrd*(alen-1)
alloc_size = sum(astrd*(alen-1) if astrd != 0 else alen-1
for alen, astrd in zip(shape, strides)) + 1
if dtype is None:
......@@ -241,8 +239,7 @@ def make_args(kernel, impl_arg_info, queue, ref_arg_data, parameters):
itemsize = dtype.itemsize
numpy_strides = [itemsize*s for s in strides]
assert all(s > 0 for s in strides)
alloc_size = sum(astrd*(alen-1)
alloc_size = sum(astrd*(alen-1) if astrd != 0 else alen-1
for alen, astrd in zip(shape, strides)) + 1
# use contiguous array to transfer to host
......
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