Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9407c7cad32abc5385ba953907daeff32d6ba96d
[simgrid.git] / examples / s4u / app-pingpong / s4u-app-pingpong.cpp
1 /* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <simgrid/s4u.hpp>
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_app_pingpong, "Messages specific for this s4u example");
9
10 static void pinger(simgrid::s4u::Mailbox* mailbox_in, simgrid::s4u::Mailbox* mailbox_out)
11 {
12   XBT_INFO("Ping from mailbox %s to mailbox %s", mailbox_in->get_name().c_str(), mailbox_out->get_name().c_str());
13
14   /* - Do the ping with a 1-Byte payload (latency bound) ... */
15   auto* payload = new double(simgrid::s4u::Engine::get_clock());
16
17   mailbox_out->put(payload, 1);
18   /* - ... then wait for the (large) pong */
19   const auto* sender_time = static_cast<double*>(mailbox_in->get());
20
21   double communication_time = simgrid::s4u::Engine::get_clock() - *sender_time;
22   XBT_INFO("Payload received : large communication (bandwidth bound)");
23   XBT_INFO("Pong time (bandwidth bound): %.3f", communication_time);
24   delete sender_time;
25 }
26
27 static void ponger(simgrid::s4u::Mailbox* mailbox_in, simgrid::s4u::Mailbox* mailbox_out)
28 {
29   XBT_INFO("Pong from mailbox %s to mailbox %s", mailbox_in->get_name().c_str(), mailbox_out->get_name().c_str());
30
31   /* - Receive the (small) ping first ....*/
32   const auto* sender_time   = static_cast<double*>(mailbox_in->get());
33   double communication_time = simgrid::s4u::Engine::get_clock() - *sender_time;
34   XBT_INFO("Payload received : small communication (latency bound)");
35   XBT_INFO("Ping time (latency bound) %f", communication_time);
36   delete sender_time;
37
38   /*  - ... Then send a 1GB pong back (bandwidth bound) */
39   auto* payload = new double(simgrid::s4u::Engine::get_clock());
40   XBT_INFO("payload = %.3f", *payload);
41
42   mailbox_out->put(payload, 1e9);
43 }
44
45 int main(int argc, char* argv[])
46 {
47   simgrid::s4u::Engine e(&argc, argv);
48   e.load_platform(argv[1]);
49
50   simgrid::s4u::Mailbox* mb1 = simgrid::s4u::Mailbox::by_name("Mailbox 1");
51   simgrid::s4u::Mailbox* mb2 = simgrid::s4u::Mailbox::by_name("Mailbox 2");
52
53   simgrid::s4u::Actor::create("pinger", simgrid::s4u::Host::by_name("Tremblay"), pinger, mb1, mb2);
54   simgrid::s4u::Actor::create("ponger", simgrid::s4u::Host::by_name("Jupiter"), ponger, mb2, mb1);
55
56   e.run();
57
58   XBT_INFO("Total simulation time: %.3f", e.get_clock());
59
60   return 0;
61 }