The vertical[a] type (a is number of blocks) will split up data vertically into blocks. If the split is uneven then the extra data will be distributed amongst the blocks in the most efficient way to to keep the blocks as similar size as possible.There are a number of different communication rules associated with the vertical partition, based on the assignment a:=b
a
b
Semantics
partition
single
MPI Scatter
single
partition
MPI Gather
partition
partition
Depends on whether or not the partitions are the same type
Looking at the last row in the table, if the two partitons are the same type then a simple copy can often be performed. If they are different then an error will be generated, as you can not assign different tpyed blocks to each other.
Vertical blocks also support .high and .low, which will return the top and bottom bounds of the block