diff --git a/pystencils/kerncraft_coupling/kerncraft_interface.py b/pystencils/kerncraft_coupling/kerncraft_interface.py index d2f562117ca7940691ff594aa45ecf12151006f2..b488adca898faf03e2c3b00f11f5d8520245c457 100644 --- a/pystencils/kerncraft_coupling/kerncraft_interface.py +++ b/pystencils/kerncraft_coupling/kerncraft_interface.py @@ -60,7 +60,8 @@ class PyStencilsKerncraftKernel(kerncraft.kernel.KernelCode): if isinstance(cur_node, LoopOverCoordinate): loop_counter_sym = cur_node.loop_counter_symbol loop_info = (loop_counter_sym.name, cur_node.start, cur_node.stop, 1) - # cur_node.step) + # If the correct step were to be provided, all access within that step length will + # also need to be passed to kerncraft: cur_node.step) self._loop_stack.append(loop_info) cur_node = cur_node.parent self._loop_stack = list(reversed(self._loop_stack))