X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cdf6a962eb4e88efbed3df9c41343adabcf09e6c..e116532f2474ef6a8a4a1a66b66fbdf0d17631a8:/src/smpi/smpi_replay_main.cpp diff --git a/src/smpi/smpi_replay_main.cpp b/src/smpi/smpi_replay_main.cpp index f12a75133f..6a0738d7a9 100644 --- a/src/smpi/smpi_replay_main.cpp +++ b/src/smpi/smpi_replay_main.cpp @@ -1,3 +1,8 @@ +/* Copyright (c) 2018-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. */ + #include "simgrid/s4u.hpp" #include "smpi/smpi.h" #include "xbt/asserts.h" @@ -19,10 +24,12 @@ int main(int argc, char* argv[]) return 1; } - const char* instance_id = properties->at("instance_id").c_str(); - const int rank = xbt_str_parse_int(properties->at("rank").c_str(), "Cannot parse rank"); - const char* trace_filename = argv[1]; - double start_delay_flops = 0; + const char* instance_id = properties->at("instance_id").c_str(); + const int rank = xbt_str_parse_int(properties->at("rank").c_str(), "Cannot parse rank"); + const char* shared_trace = + simgrid::s4u::Actor::self()->get_property("tracefile"); // Cannot use properties because this can be nullptr + const char* private_trace = argv[1]; + double start_delay_flops = 0; if (argc > 2) { start_delay_flops = xbt_str_parse_double(argv[2], "Cannot parse start_delay_flops"); @@ -37,6 +44,8 @@ int main(int argc, char* argv[]) xbt_assert(new_rank == rank, "Rank inconsistency. Got %d, expected %d", new_rank, rank); /* The regular run of the replayer */ - smpi_replay_main(rank, trace_filename); + if (shared_trace) + xbt_replay_set_tracefile(shared_trace); + smpi_replay_main(rank, private_trace); return 0; }