Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3e9d14fa1374c51b4e6049838733ecf9adf85b8e
[simgrid.git] / examples / cpp / task-simple / s4u-task-simple.cpp
1 /* Copyright (c) 2017-2023. 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 /* This example demonstrate basic use of the task plugin.
7  *
8  * We model the following graph:
9  *
10  * exec1 -> comm -> exec2
11  *
12  * exec1 and exec2 are execution tasks.
13  * comm is a communication task.
14  */
15
16 #include "simgrid/plugins/task.hpp"
17 #include "simgrid/s4u.hpp"
18
19 XBT_LOG_NEW_DEFAULT_CATEGORY(task_simple, "Messages specific for this task example");
20
21 int main(int argc, char* argv[])
22 {
23   simgrid::s4u::Engine e(&argc, argv);
24   e.load_platform(argv[1]);
25   simgrid::plugins::Task::init();
26
27   // Retrieve hosts
28   auto* tremblay = e.host_by_name("Tremblay");
29   auto* jupiter  = e.host_by_name("Jupiter");
30
31   // Create tasks
32   auto exec1 = simgrid::plugins::ExecTask::init("exec1", 1e9, tremblay);
33   auto exec2 = simgrid::plugins::ExecTask::init("exec2", 1e9, jupiter);
34   auto comm  = simgrid::plugins::CommTask::init("comm", 1e7, tremblay, jupiter);
35
36   // Create the graph by defining dependencies between tasks
37   exec1->add_successor(comm);
38   comm->add_successor(exec2);
39
40   // Add a function to be called when tasks end for log purpose
41   simgrid::plugins::Task::on_end_cb([](const simgrid::plugins::Task* t) {
42     XBT_INFO("Task %s finished (%d)", t->get_name().c_str(), t->get_count());
43   });
44
45   // Enqueue two executions for task exec1
46   exec1->enqueue_execs(2);
47
48   // Start the simulation
49   e.run();
50   return 0;
51 }