Skip to content

Commit

Permalink
Add PARTITIONED_COUNT type
Browse files Browse the repository at this point in the history
  • Loading branch information
jtronge committed Apr 1, 2024
1 parent cad1e4e commit 01fa44e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ompi/mpi/bindings/ompi_bindings/c_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,14 @@ def parameter(self, enable_count=False):
return f'const {count_type} {self.name}[]'


@Type.add_type('PARTITIONED_COUNT')
class TypePartitionedCount(Type):
"""Count type for partitioned communication functions."""

def type_text(self, enable_count=False):
return 'MPI_Count'


@Type.add_type('DISPL_ARRAY')
class TypeDisplArray(Type):

Expand Down

0 comments on commit 01fa44e

Please sign in to comment.