We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc151a8 commit 5127029Copy full SHA for 5127029
ompi/mpi/bindings/ompi_bindings/c_type.py
@@ -126,6 +126,14 @@ def parameter(self, enable_count=False):
126
return f'const {count_type} {self.name}[]'
127
128
129
+@Type.add_type('ELEMENT_COUNT')
130
+class ElementCountType(Type):
131
+ """Special count type for MPI_Get_element_x"""
132
+
133
+ def type_text(self, enable_count=False):
134
+ return 'MPI_Count *'
135
136
137
@Type.add_type('PARTITIONED_COUNT')
138
class TypePartitionedCount(Type):
139
"""Count type for partitioned communication functions."""
0 commit comments