Skip to content

Commit

Permalink
f08: remove old hack for skip_large_list
Browse files Browse the repository at this point in the history
Now we test actual parameter variations, we no longer need this hack,
which is in complete anyway.
  • Loading branch information
hzhou committed Nov 25, 2021
1 parent 138f053 commit 0e8ab0e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions maint/gen_binding_f08.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ def main():
func_list.extend(get_type_create_f90_func_list())

skip_large_list = []
# skip large variations because MPI_ADDRESS_KIND == MPI_COUNT_KIND
if G.opts['aint-size'] == G.opts['count-size']:
skip_large_list.extend(["MPI_Op_create", "MPI_Register_datarep", "MPI_Type_create_resized", "MPI_Type_get_extent", "MPI_Type_get_true_extent", "MPI_File_get_type_extent", "MPI_Win_allocate", "MPI_Win_allocate_shared", "MPI_Win_create", "MPI_Win_shared_query"])
# skip File large count functions because it is not implemented yet
for func in func_list:
if func['name'].startswith('MPI_File_') or func['name'] == 'MPI_Register_datarep':
Expand Down

0 comments on commit 0e8ab0e

Please sign in to comment.