File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -548,12 +548,14 @@ interface.
548
548
- `ranks`: Array containing the distribution of ranks.
549
549
- `np::NTuple{N}`: Number of parts per direction.
550
550
- `n::NTuple{N}`: Number of global indices per direction.
551
- - `ghost::NTuple{N}=ntuple(i->false,N)`: Use or not ghost indices per direction.
551
+ - `ghost::NTuple{N}=ntuple(i->false,N)`: Number of ghost indices per direction.
552
552
- `periodic::NTuple{N}=ntuple(i->false,N)`: Use or not periodic boundaries per direction.
553
553
554
554
For convenience, one can also provide scalar inputs instead tuples
555
555
to create 1D block partitions. In this case, the argument `np` can be omitted
556
- and it will be computed as `np=length(ranks)`.
556
+ and it will be computed as `np=length(ranks)`. At the moment, it's only possible
557
+ to use this syntax for zero (with `ghost=false`) or one (with `ghost=true`) layer(s)
558
+ of ghost indices. If you wish to have more ghost indices, use tuples instead.
557
559
558
560
# Examples
559
561
You can’t perform that action at this time.
0 commit comments