X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/153846bd56973cd7cd434fc0a5cf24f3508410ba..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/src/smpi/include/smpi_request.hpp diff --git a/src/smpi/include/smpi_request.hpp b/src/smpi/include/smpi_request.hpp index b36aa2eed3..a8b26a6466 100644 --- a/src/smpi/include/smpi_request.hpp +++ b/src/smpi/include/smpi_request.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2023. 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. */ @@ -11,8 +11,7 @@ #include -namespace simgrid{ -namespace smpi{ +namespace simgrid::smpi { struct smpi_mpi_generalized_request_funcs_t { MPI_Grequest_query_function *query_fn; @@ -40,6 +39,7 @@ class Request : public F2C { aid_t real_src_; int real_tag_; bool truncated_; + bool unmatched_types_; size_t real_size_; MPI_Comm comm_; simgrid::kernel::activity::ActivityImplPtr action_; @@ -47,10 +47,13 @@ class Request : public F2C { bool detached_; MPI_Request detached_sender_; int refcount_; + unsigned int message_id_; MPI_Op op_; std::unique_ptr generalized_funcs; std::vector nbc_requests_; + s4u::Host* src_host_ = nullptr; //!< save simgrid's source host since it can finished before the recv static bool match_common(MPI_Request req, MPI_Request sender, MPI_Request receiver); + static bool match_types(MPI_Datatype stype, MPI_Datatype rtype); public: Request() = default; @@ -64,7 +67,7 @@ public: int tag() const { return tag_; } int flags() const { return flags_; } bool detached() const { return detached_; } - std::string name() const override { return std::string("MPI_Request"); } + std::string name() const override { return "MPI_Request"; } MPI_Datatype type() const { return type_; } void print_request(const char* message) const; void start(); @@ -125,8 +128,6 @@ public: static Request* f2c(int); }; - -} -} +} // namespace simgrid::smpi #endif