X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3a1ea70a418f393ca1677074e928c664022295bd..af22f2644d3bc61055b274054a8ad6c2c85fa9dc:/src/smpi/bindings/smpi_f77_comm.cpp diff --git a/src/smpi/bindings/smpi_f77_comm.cpp b/src/smpi/bindings/smpi_f77_comm.cpp index b087102470..91c80bb81d 100644 --- a/src/smpi/bindings/smpi_f77_comm.cpp +++ b/src/smpi/bindings/smpi_f77_comm.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -8,6 +8,8 @@ #include "smpi_errhandler.hpp" #include "smpi_info.hpp" +#include + extern "C" { // This should really use the C linkage to be usable from Fortran void mpi_comm_rank_(int* comm, int* rank, int* ierr) { @@ -23,7 +25,7 @@ void mpi_comm_dup_(int* comm, int* newcomm, int* ierr) { *ierr = MPI_Comm_dup(simgrid::smpi::Comm::f2c(*comm), &tmp); if(*ierr == MPI_SUCCESS) { - *newcomm = tmp->add_f(); + *newcomm = tmp->c2f(); } } @@ -31,7 +33,7 @@ void mpi_comm_create_(int* comm, int* group, int* newcomm, int* ierr) { MPI_Comm tmp; *ierr = MPI_Comm_create(simgrid::smpi::Comm::f2c(*comm),simgrid::smpi::Group::f2c(*group), &tmp); if(*ierr == MPI_SUCCESS) { - *newcomm = tmp->add_f(); + *newcomm = tmp->c2f(); } } @@ -49,7 +51,7 @@ void mpi_comm_split_(int* comm, int* color, int* key, int* comm_out, int* ierr) *ierr = MPI_Comm_split(simgrid::smpi::Comm::f2c(*comm), *color, *key, &tmp); if(*ierr == MPI_SUCCESS) { - *comm_out = tmp->add_f(); + *comm_out = tmp->c2f(); } } @@ -77,7 +79,7 @@ void mpi_comm_get_attr_ (int* comm, int* comm_keyval, int *attribute_val, int *f } void mpi_comm_set_attr_ (int* comm, int* comm_keyval, int *attribute_val, int* ierr){ - auto* val = static_cast(xbt_malloc(sizeof(int))); + auto* val = xbt_new(int, 1); *val = *attribute_val; *ierr = MPI_Comm_set_attr(simgrid::smpi::Comm::f2c(*comm), *comm_keyval, val); } @@ -89,7 +91,7 @@ void mpi_comm_delete_attr_ (int* comm, int* comm_keyval, int* ierr){ void mpi_comm_create_keyval_ (void* copy_fn, void* delete_fn, int* keyval, void* extra_state, int* ierr){ smpi_copy_fn _copy_fn={nullptr,nullptr,nullptr,(*(int*)copy_fn) == 0 ? nullptr : reinterpret_cast(copy_fn),nullptr,nullptr}; smpi_delete_fn _delete_fn={nullptr,nullptr,nullptr,(*(int*)delete_fn) == 0 ? nullptr : reinterpret_cast(delete_fn),nullptr,nullptr}; - *ierr = simgrid::smpi::Keyval::keyval_create(_copy_fn, _delete_fn, keyval, extra_state); + *ierr = simgrid::smpi::Keyval::keyval_create(_copy_fn, _delete_fn, keyval, extra_state, true); } void mpi_comm_free_keyval_ (int* keyval, int* ierr) { @@ -146,18 +148,15 @@ void mpi_comm_set_name_ (int* comm, char* name, int* ierr){ int count; for(count=MPI_MAX_OBJECT_NAME-1; count>=0 && name[count]==' '; count--); count+=1; - char* tname = xbt_new(char, count+1); - strncpy(tname, name, count); - tname[count]='\0'; - *ierr = MPI_Comm_set_name (simgrid::smpi::Comm::f2c(*comm), tname); - xbt_free(tname); + std::string tname(name, count); + *ierr = MPI_Comm_set_name(simgrid::smpi::Comm::f2c(*comm), tname.c_str()); } void mpi_comm_dup_with_info_ (int* comm, int* info, int* newcomm, int* ierr){ MPI_Comm tmp; *ierr = MPI_Comm_dup_with_info(simgrid::smpi::Comm::f2c(*comm), simgrid::smpi::Info::f2c(*info),&tmp); if(*ierr == MPI_SUCCESS) { - *newcomm = tmp->add_f(); + *newcomm = tmp->c2f(); } } @@ -165,7 +164,7 @@ void mpi_comm_split_type_ (int* comm, int* split_type, int* key, int* info, int* MPI_Comm tmp; *ierr = MPI_Comm_split_type(simgrid::smpi::Comm::f2c(*comm), *split_type, *key, simgrid::smpi::Info::f2c(*info), &tmp); if(*ierr == MPI_SUCCESS) { - *newcomm = tmp->add_f(); + *newcomm = tmp->c2f(); } } @@ -197,7 +196,7 @@ void mpi_comm_connect_ ( char *port_name, int* info, int* root, int* comm, int*n MPI_Comm tmp; *ierr = MPI_Comm_connect( port_name, simgrid::smpi::Info::f2c(*info), *root, simgrid::smpi::Comm::f2c(*comm), &tmp); if(*ierr == MPI_SUCCESS) { - *newcomm = tmp->add_f(); + *newcomm = tmp->c2f(); } } @@ -205,7 +204,7 @@ void mpi_comm_join_ ( int* fd, int* intercomm, int* ierr){ MPI_Comm tmp; *ierr = MPI_Comm_join( *fd, &tmp); if(*ierr == MPI_SUCCESS) { - *intercomm = tmp->add_f(); + *intercomm = tmp->c2f(); } } @@ -214,7 +213,7 @@ void mpi_comm_accept_ ( char *port_name, int* info, int* root, int* comm, int*ne MPI_Comm tmp; *ierr = MPI_Comm_accept( port_name, simgrid::smpi::Info::f2c(*info), *root, simgrid::smpi::Comm::f2c(*comm), &tmp); if(*ierr == MPI_SUCCESS) { - *newcomm = tmp->add_f(); + *newcomm = tmp->c2f(); } } @@ -224,7 +223,7 @@ void mpi_comm_spawn_ ( char *command, char *argv, int* maxprocs, int* info, int* *ierr = MPI_Comm_spawn( command, &argv, *maxprocs, simgrid::smpi::Info::f2c(*info), *root, simgrid::smpi::Comm::f2c(*comm), &tmp, array_of_errcodes); if(*ierr == MPI_SUCCESS) { - *intercomm = tmp->add_f(); + *intercomm = tmp->c2f(); } } @@ -235,7 +234,7 @@ void mpi_comm_spawn_multiple_ ( int* count, char *array_of_commands, char** arra *ierr = MPI_Comm_spawn_multiple(* count, &array_of_commands, &array_of_argv, array_of_maxprocs, reinterpret_cast(array_of_info), *root, simgrid::smpi::Comm::f2c(*comm), &tmp, array_of_errcodes); if(*ierr == MPI_SUCCESS) { - *intercomm = tmp->add_f(); + *intercomm = tmp->c2f(); } }