X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2750bde086c69304587076350db922bfd9da04f6..434e141487bc5640f854a74f58f03eae36458ce0:/src/smpi/bindings/smpi_pmpi_type.cpp diff --git a/src/smpi/bindings/smpi_pmpi_type.cpp b/src/smpi/bindings/smpi_pmpi_type.cpp index 8bf129a268..651eb67509 100644 --- a/src/smpi/bindings/smpi_pmpi_type.cpp +++ b/src/smpi/bindings/smpi_pmpi_type.cpp @@ -1,10 +1,11 @@ -/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-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. */ #include "private.hpp" #include "smpi_datatype_derived.hpp" +#include "smpi_comm.hpp" XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(smpi_pmpi); @@ -16,6 +17,7 @@ int PMPI_Type_free(MPI_Datatype * datatype) if (*datatype == MPI_DATATYPE_NULL || (*datatype)->flags() & DT_FLAG_PREDEFINED) { return MPI_ERR_TYPE; } else { + (*datatype)->mark_as_deleted(); simgrid::smpi::Datatype::unref(*datatype); *datatype=MPI_DATATYPE_NULL; return MPI_SUCCESS; @@ -46,11 +48,28 @@ int PMPI_Type_get_extent(MPI_Datatype datatype, MPI_Aint * lb, MPI_Aint * extent return datatype->extent(lb, extent); } +int PMPI_Type_get_extent_x(MPI_Datatype datatype, MPI_Count * lb, MPI_Count * extent) +{ + MPI_Aint tmplb; + MPI_Aint tmpext; + int ret = PMPI_Type_get_extent(datatype, &tmplb, &tmpext); + if(ret == MPI_SUCCESS){ + *lb = static_cast(tmplb); + *extent = static_cast(tmpext); + } + return ret; +} + int PMPI_Type_get_true_extent(MPI_Datatype datatype, MPI_Aint * lb, MPI_Aint * extent) { return PMPI_Type_get_extent(datatype, lb, extent); } +int PMPI_Type_get_true_extent_x(MPI_Datatype datatype, MPI_Count * lb, MPI_Count * extent) +{ + return PMPI_Type_get_extent_x(datatype, lb, extent); +} + int PMPI_Type_extent(MPI_Datatype datatype, MPI_Aint * extent) { CHECK_MPI_NULL(1, MPI_DATATYPE_NULL, MPI_ERR_TYPE, datatype) @@ -95,7 +114,6 @@ int PMPI_Type_contiguous(int count, MPI_Datatype old_type, MPI_Datatype* new_typ } int PMPI_Type_commit(MPI_Datatype* datatype) { - CHECK_NULL(1, MPI_ERR_ARG, datatype) CHECK_MPI_NULL(1, MPI_DATATYPE_NULL, MPI_ERR_TYPE, (*datatype)) (*datatype)->commit(); return MPI_SUCCESS; @@ -105,6 +123,7 @@ int PMPI_Type_vector(int count, int blocklen, int stride, MPI_Datatype old_type, CHECK_COUNT(1, count) CHECK_NEGATIVE(2, MPI_ERR_ARG, blocklen) CHECK_MPI_NULL(4, MPI_DATATYPE_NULL, MPI_ERR_TYPE, old_type) + CHECK_NULL(5, MPI_ERR_ARG, new_type) return simgrid::smpi::Datatype::create_vector(count, blocklen, stride, old_type, new_type); } @@ -112,6 +131,7 @@ int PMPI_Type_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datatype old CHECK_COUNT(1, count) CHECK_NEGATIVE(2, MPI_ERR_ARG, blocklen) CHECK_MPI_NULL(4, MPI_DATATYPE_NULL, MPI_ERR_TYPE, old_type) + CHECK_NULL(5, MPI_ERR_ARG, new_type) return simgrid::smpi::Datatype::create_hvector(count, blocklen, stride, old_type, new_type); } @@ -120,14 +140,13 @@ int PMPI_Type_create_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datat } int PMPI_Type_indexed(int count, const int* blocklens, const int* indices, MPI_Datatype old_type, MPI_Datatype* new_type) { - CHECK_COUNT(1, count) - CHECK_MPI_NULL(4, MPI_DATATYPE_NULL, MPI_ERR_TYPE, old_type) - return simgrid::smpi::Datatype::create_indexed(count, blocklens, indices, old_type, new_type); + return PMPI_Type_create_indexed(count, blocklens, indices, old_type, new_type); } int PMPI_Type_create_indexed(int count, const int* blocklens, const int* indices, MPI_Datatype old_type, MPI_Datatype* new_type) { CHECK_COUNT(1, count) CHECK_MPI_NULL(4, MPI_DATATYPE_NULL, MPI_ERR_TYPE, old_type) + CHECK_NULL(5, MPI_ERR_ARG, new_type) return simgrid::smpi::Datatype::create_indexed(count, blocklens, indices, old_type, new_type); } @@ -136,7 +155,8 @@ int PMPI_Type_create_indexed_block(int count, int blocklength, const int* indice { CHECK_COUNT(1, count) CHECK_MPI_NULL(4, MPI_DATATYPE_NULL, MPI_ERR_TYPE, old_type) - auto* blocklens = static_cast(xbt_malloc(blocklength * count * sizeof(int))); + CHECK_NULL(5, MPI_ERR_ARG, new_type) + auto* blocklens = static_cast(xbt_malloc(sizeof(int) * blocklength * count)); for (int i = 0; i < count; i++) blocklens[i]=blocklength; int retval = simgrid::smpi::Datatype::create_indexed(count, blocklens, indices, old_type, new_type); @@ -149,6 +169,7 @@ int PMPI_Type_hindexed(int count, const int* blocklens, const MPI_Aint* indices, { CHECK_COUNT(1, count) CHECK_MPI_NULL(4, MPI_DATATYPE_NULL, MPI_ERR_TYPE, old_type) + CHECK_NULL(5, MPI_ERR_ARG, new_type) return simgrid::smpi::Datatype::create_hindexed(count, blocklens, indices, old_type, new_type); } @@ -161,7 +182,8 @@ int PMPI_Type_create_hindexed_block(int count, int blocklength, const MPI_Aint* MPI_Datatype* new_type) { CHECK_COUNT(1, count) CHECK_MPI_NULL(4, MPI_DATATYPE_NULL, MPI_ERR_TYPE, old_type) - auto* blocklens = static_cast(xbt_malloc(blocklength * count * sizeof(int))); + CHECK_NULL(5, MPI_ERR_ARG, new_type) + auto* blocklens = static_cast(xbt_malloc(sizeof(int) * blocklength * count)); for (int i = 0; i < count; i++) blocklens[i] = blocklength; int retval = simgrid::smpi::Datatype::create_hindexed(count, blocklens, indices, old_type, new_type); @@ -175,6 +197,7 @@ int PMPI_Type_struct(int count, const int* blocklens, const MPI_Aint* indices, c CHECK_COUNT(1, count) for(int i=0; iget_extent(), newtype); return MPI_SUCCESS; } else if (oldtype == MPI_DATATYPE_NULL || not oldtype->is_valid() ) { @@ -205,6 +238,7 @@ int PMPI_Type_create_subarray(int ndims, const int* array_of_sizes, int PMPI_Type_create_resized(MPI_Datatype oldtype,MPI_Aint lb, MPI_Aint extent, MPI_Datatype *newtype){ CHECK_MPI_NULL(1, MPI_DATATYPE_NULL, MPI_ERR_TYPE, oldtype) + CHECK_NULL(4, MPI_ERR_ARG, newtype) return simgrid::smpi::Datatype::create_resized(oldtype, lb, extent, newtype); } @@ -296,30 +330,34 @@ int PMPI_Type_free_keyval(int* keyval) { return simgrid::smpi::Keyval::keyval_free(keyval); } -int PMPI_Unpack(const void* inbuf, int incount, int* position, void* outbuf, int outcount, MPI_Datatype type, MPI_Comm comm) { - CHECK_NEGATIVE(2, MPI_ERR_COUNT, incount) +int PMPI_Unpack(const void* inbuf, int insize, int* position, void* outbuf, int outcount, MPI_Datatype type, MPI_Comm comm) { + SET_BUF1(inbuf) + SET_BUF2(outbuf) + CHECK_COMM(7) + CHECK_NEGATIVE(2, MPI_ERR_COUNT, insize) CHECK_NEGATIVE(5, MPI_ERR_COUNT, outcount) - CHECK_BUFFER(1, inbuf, incount) - CHECK_BUFFER(4, outbuf, outcount) CHECK_TYPE(6, type) - CHECK_COMM(7) - return type->unpack(inbuf, incount, position, outbuf,outcount, comm); + CHECK_BUFFER2(1, inbuf, outcount) + CHECK_BUFFER2(4, outbuf, outcount) + return type->unpack(inbuf, insize, position, outbuf,outcount, comm); } -int PMPI_Pack(const void* inbuf, int incount, MPI_Datatype type, void* outbuf, int outcount, int* position, MPI_Comm comm) { +int PMPI_Pack(const void* inbuf, int incount, MPI_Datatype type, void* outbuf, int outsize, int* position, MPI_Comm comm) { + SET_BUF1(inbuf) + SET_BUF2(outbuf) + CHECK_COMM(7) CHECK_NEGATIVE(2, MPI_ERR_COUNT, incount) - CHECK_NEGATIVE(5, MPI_ERR_COUNT, outcount) - CHECK_BUFFER(1, inbuf, incount) - CHECK_BUFFER(4, outbuf, outcount) + CHECK_NEGATIVE(5, MPI_ERR_COUNT, outsize) CHECK_TYPE(6, type) - CHECK_COMM(7) - return type->pack(inbuf == MPI_BOTTOM ? nullptr : inbuf, incount, outbuf, outcount, position, comm); + CHECK_BUFFER2(1, inbuf, incount) + CHECK_BUFFER2(4, outbuf, incount) + return type->pack(inbuf == MPI_BOTTOM ? nullptr : inbuf, incount, outbuf, outsize, position, comm); } int PMPI_Pack_size(int incount, MPI_Datatype datatype, MPI_Comm comm, int* size) { CHECK_NEGATIVE(1, MPI_ERR_COUNT, incount) CHECK_TYPE(2, datatype) CHECK_COMM(3) - *size=incount*datatype->size(); + *size = incount * std::max(datatype->size(), datatype->get_extent()); return MPI_SUCCESS; }