Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into depencencies
[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;
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);
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 }
36
37 int main(int argc, char* argv[])
38 {
39   simgrid::s4u::Engine e(&argc, argv);
40   e.load_platform(argv[1]);
41
42   simgrid::s4u::Mailbox* mbox = simgrid::s4u::Mailbox::by_name("Mailbox");
43
44   simgrid::s4u::Actor::create("sender", simgrid::s4u::Host::by_name("Tremblay"), sender, mbox);
45   simgrid::s4u::Actor::create("receiver", simgrid::s4u::Host::by_name("Jupiter"), receiver, mbox);
46
47   e.run();
48
49   XBT_INFO("Simulation time: %.3f", e.get_clock());
50
51   return 0;
52 }