Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Clearly state that we don't care about the return code of actors
[simgrid.git] / examples / s4u / comm-dependent / s4u-comm-dependent.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_comm_dependent, "Messages specific for this s4u example");
9
10 static void sender(simgrid::s4u::Mailbox* mailbox)
11 {
12   double* computation_amount = new double();
13   *computation_amount        = simgrid::s4u::this_actor::get_host()->get_speed();
14   simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_init(2 * (*computation_amount));
15   simgrid::s4u::CommPtr comm = mailbox->put_init(computation_amount, 7e6);
16
17   exec->set_name("exec on sender")->add_successor(comm)->start();
18   comm->set_name("comm to receiver")->vetoable_start();
19   exec->wait();
20   comm->wait();
21 }
22
23 static void receiver(simgrid::s4u::Mailbox* mailbox)
24 {
25   double* received           = nullptr;
26   double computation_amount  = simgrid::s4u::this_actor::get_host()->get_speed();
27   simgrid::s4u::ExecPtr exec = simgrid::s4u::this_actor::exec_init(2 * computation_amount);
28   simgrid::s4u::CommPtr comm = mailbox->get_init()->set_dst_data((void**)&received, sizeof(double));
29
30   comm->set_name("comm from sender")->add_successor(exec)->start();
31   exec->set_name("exec on receiver")->vetoable_start();
32
33   comm->wait();
34   exec->wait();
35   XBT_INFO("Received: %.0f flops were computed on sender", *received);
36   delete received;
37 }
38
39 int main(int argc, char* argv[])
40 {
41   simgrid::s4u::Engine e(&argc, argv);
42   e.load_platform(argv[1]);
43
44   simgrid::s4u::Mailbox* mbox = simgrid::s4u::Mailbox::by_name("Mailbox");
45
46   simgrid::s4u::Actor::create("sender", simgrid::s4u::Host::by_name("Tremblay"), sender, mbox);
47   simgrid::s4u::Actor::create("receiver", simgrid::s4u::Host::by_name("Jupiter"), receiver, mbox);
48
49   e.run();
50
51   XBT_INFO("Simulation time: %.3f", e.get_clock());
52
53   return 0;
54 }