Skip to content
Snippets Groups Projects
Commit 29aa22d0 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Fix indentation bug

parent d1d25d43
No related merge requests found
Pipeline #24597 failed with stage
in 1 minute and 24 seconds
...@@ -197,8 +197,8 @@ class FunctionCall(Node): ...@@ -197,8 +197,8 @@ class FunctionCall(Node):
written_fields = function.fields_written written_fields = function.fields_written
shape = list(written_fields)[0].spatial_shape shape = list(written_fields)[0].spatial_shape
block_and_thread_numbers = function.indexing.call_parameters(shape) block_and_thread_numbers = function.indexing.call_parameters(shape)
rtn = rtn | set(itertools.chain.from_iterable( rtn = rtn | set(itertools.chain.from_iterable(
(i.free_symbols for i in block_and_thread_numbers['block'] + block_and_thread_numbers['block']))) (i.free_symbols for i in block_and_thread_numbers['block'] + block_and_thread_numbers['block'])))
return rtn return rtn
def subs(self, subs_dict) -> None: def subs(self, subs_dict) -> None:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment