From a500ba88f3f094b92c4f8e67cebeb3cd8dbde1e8 Mon Sep 17 00:00:00 2001 From: Markus Holzer <markus.holzer@fau.de> Date: Mon, 28 Aug 2023 19:49:57 +0200 Subject: [PATCH] Fix linter --- pystencils/gpu/indexing.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pystencils/gpu/indexing.py b/pystencils/gpu/indexing.py index 32ff0100..27cb39e4 100644 --- a/pystencils/gpu/indexing.py +++ b/pystencils/gpu/indexing.py @@ -128,7 +128,8 @@ class BlockIndexing(AbstractIndexing): Args: iteration_space: list of slices to determine start, stop and the step size for each coordinate - data_layout: tuple specifying loop order with innermost loop last. This is the same format as returned by `Field.layout`. + data_layout: tuple specifying loop order with innermost loop last. + This is the same format as returned by `Field.layout`. permute_block_size_dependent_on_layout: if True the block_size is permuted such that the fastest coordinate gets the largest amount of threads compile_time_block_size: compile in concrete block size, otherwise the gpu variable 'blockDim' is used -- GitLab