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

Fix unsubscripted-variable case of to_batched (reported by Marmaduke Woodman)

parent 325ba4dc
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -73,7 +73,7 @@ class _BatchVariableChanger(RuleAwareIdentityMapper):
if not self.needs_batch_subscript(expr.name):
return super(_BatchVariableChanger, self).map_variable(expr, expn_state)
return expr.aggregate[self.batch_iname_expr]
return expr[self.batch_iname_expr]
def _add_unique_dim_name(name, dim_names):
......
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