X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bc93975e89c1b7d29f7247e4700fca9277895e2f..4bb5b0cce7c4e83bd911d4b46c02d041815b3819:/include/simgrid/smpi/replay.hpp diff --git a/include/simgrid/smpi/replay.hpp b/include/simgrid/smpi/replay.hpp index 8b675e8b70..193ad33062 100644 --- a/include/simgrid/smpi/replay.hpp +++ b/include/simgrid/smpi/replay.hpp @@ -253,7 +253,7 @@ private: RequestStorage& req_storage; public: - explicit WaitAllAction(RequestStorage& storage) : ReplayAction("waitAll"), req_storage(storage) {} + explicit WaitAllAction(RequestStorage& storage) : ReplayAction("waitall"), req_storage(storage) {} void kernel(simgrid::xbt::ReplayAction& action) override; }; @@ -283,7 +283,7 @@ public: class AllToAllAction : public ReplayAction { public: - explicit AllToAllAction() : ReplayAction("allToAll") {} + explicit AllToAllAction() : ReplayAction("alltoall") {} void kernel(simgrid::xbt::ReplayAction& action) override; }; @@ -307,19 +307,19 @@ public: class ScatterVAction : public ReplayAction { public: - explicit ScatterVAction() : ReplayAction("scatterV") {} + explicit ScatterVAction() : ReplayAction("scatterv") {} void kernel(simgrid::xbt::ReplayAction& action) override; }; class ReduceScatterAction : public ReplayAction { public: - explicit ReduceScatterAction() : ReplayAction("reduceScatter") {} + explicit ReduceScatterAction() : ReplayAction("reducescatter") {} void kernel(simgrid::xbt::ReplayAction& action) override; }; class AllToAllVAction : public ReplayAction { public: - explicit AllToAllVAction() : ReplayAction("allToAllV") {} + explicit AllToAllVAction() : ReplayAction("alltoallv") {} void kernel(simgrid::xbt::ReplayAction& action) override; }; }