Skip to content
Snippets Groups Projects
Commit 1b1ebcd7 authored by Martin Bauer's avatar Martin Bauer
Browse files

Some PEP8 fixes - and removal of unused variables

parent 462f8f70
Branches
Tags
No related merge requests found
...@@ -87,7 +87,7 @@ class BlockIndexing(AbstractIndexing): ...@@ -87,7 +87,7 @@ class BlockIndexing(AbstractIndexing):
self._block_size = block_size self._block_size = block_size
self._iterationSlice = normalize_slice(iteration_slice, field.spatial_shape) self._iterationSlice = normalize_slice(iteration_slice, field.spatial_shape)
self._dim = field.spatial_dimensions self._dim = field.spatial_dimensions
self._symbolicShape = [e if isinstance(e, sp.Basic) else None for e in field.spatial_shape] self._symbolic_shape = [e if isinstance(e, sp.Basic) else None for e in field.spatial_shape]
self._compile_time_block_size = compile_time_block_size self._compile_time_block_size = compile_time_block_size
@property @property
...@@ -100,7 +100,7 @@ class BlockIndexing(AbstractIndexing): ...@@ -100,7 +100,7 @@ class BlockIndexing(AbstractIndexing):
return coordinates[:self._dim] return coordinates[:self._dim]
def call_parameters(self, arr_shape): def call_parameters(self, arr_shape):
substitution_dict = {sym: value for sym, value in zip(self._symbolicShape, arr_shape) if sym is not None} substitution_dict = {sym: value for sym, value in zip(self._symbolic_shape, arr_shape) if sym is not None}
widths = [end - start for start, end in zip(_get_start_from_slice(self._iterationSlice), widths = [end - start for start, end in zip(_get_start_from_slice(self._iterationSlice),
_get_end_from_slice(self._iterationSlice, arr_shape))] _get_end_from_slice(self._iterationSlice, arr_shape))]
......
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