Skip to content
Snippets Groups Projects
Commit b481ad2a authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Report errors for incorrectly indexed arguments.

parent 4ebc1af1
No related branches found
No related tags found
No related merge requests found
......@@ -168,15 +168,21 @@ class LoopyCCodeMapper(CCodeMapper):
else:
# ArrayArg
index_expr = expr.index
if isinstance(expr.index, tuple):
if not isinstance(expr.index, tuple):
index_expr = (index_expr,)
if arg.strides is not None:
ary_strides = arg.strides
if ary_strides is None:
raise RuntimeError("tuple-indexed variable '%s' does not "
"have stride information" % expr.aggregate.name)
else:
ary_strides = (1,)
index_expr = (index_expr,)
if len(ary_strides) != len(index_expr):
raise RuntimeError("subscript to '%s' in '%s' has the wrong "
"number of indices (got: %d, expected: %d)" % (
expr.aggregate.name, expr,
len(index_expr), len(ary_strides)))
from pymbolic.primitives import Subscript
return CCodeMapper.map_subscript(self,
Subscript(expr.aggregate, arg.offset+sum(
......
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