Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
new example with ptasks on multi-core hosts
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Mon, 8 Mar 2021 17:24:05 +0000 (18:24 +0100)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Mon, 8 Mar 2021 17:25:44 +0000 (18:25 +0100)
.gitignore
MANIFEST.in
examples/cpp/CMakeLists.txt
examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.cpp [new file with mode: 0644]
examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.tesh [new file with mode: 0644]

index b46ee9c..ac8438a 100644 (file)
@@ -195,6 +195,7 @@ examples/cpp/exec-basic/s4u-exec-basic
 examples/cpp/exec-dependent/s4u-exec-dependent
 examples/cpp/exec-dvfs/s4u-exec-dvfs
 examples/cpp/exec-ptask/s4u-exec-ptask
+examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore
 examples/cpp/exec-remote/s4u-exec-remote
 examples/cpp/exec-unassigned/s4u-exec-unassigned
 examples/cpp/exec-waitany/s4u-exec-waitany
index b8f9628..c4d738f 100644 (file)
@@ -237,6 +237,8 @@ include examples/cpp/exec-dependent/s4u-exec-dependent.cpp
 include examples/cpp/exec-dependent/s4u-exec-dependent.tesh
 include examples/cpp/exec-dvfs/s4u-exec-dvfs.cpp
 include examples/cpp/exec-dvfs/s4u-exec-dvfs.tesh
+include examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.cpp
+include examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.tesh
 include examples/cpp/exec-ptask/s4u-exec-ptask.cpp
 include examples/cpp/exec-ptask/s4u-exec-ptask.tesh
 include examples/cpp/exec-remote/s4u-exec-remote.cpp
index 393f3f8..15af769 100644 (file)
@@ -68,10 +68,11 @@ foreach (example actor-create actor-daemon actor-exiting actor-join actor-kill
                  dht-chord dht-kademlia
                  energy-exec energy-boot energy-link energy-vm energy-exec-ptask energy-wifi
                  engine-filtering
-                 exec-async exec-basic exec-dvfs exec-ptask exec-remote exec-waitany exec-waitfor exec-dependent exec-unassigned
+                 exec-async exec-basic exec-dvfs exec-remote exec-waitany exec-waitfor exec-dependent exec-unassigned
+                 exec-ptask exec-ptask-multicore
                  maestro-set
                  mc-bugged1 mc-bugged2 mc-electric-fence mc-failing-assert
-                network-wifi
+                                network-wifi
                  io-async io-file-system io-file-remote io-disk-raw io-dependent
                  platform-failures platform-profile platform-properties
                  plugin-host-load plugin-link-load
diff --git a/examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.cpp b/examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.cpp
new file mode 100644 (file)
index 0000000..1062709
--- /dev/null
@@ -0,0 +1,56 @@
+/* Copyright (c) 2017-2021. 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>
+
+XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_ptask_multicore, "Messages specific for this s4u example");
+
+namespace sg4 = simgrid::s4u;
+
+static void runner()
+{
+  auto e = sg4::Engine::get_instance();
+  std::vector<double> comp(2, 1e9);
+  std::vector<double> comm(4, 0.0);
+  // Different hosts.
+  std::vector<sg4::Host*> hosts_diff = {e->host_by_name("MyHost2"), e->host_by_name("MyHost3")};
+  double start_time                  = e->get_clock();
+  sg4::this_actor::parallel_execute(hosts_diff, comp, comm);
+  XBT_INFO("Computed 2-core activity on two different hosts. Took %g s", e->get_clock() - start_time);
+
+  // Same host, monocore.
+  std::vector<sg4::Host*> monocore_hosts = {e->host_by_name("MyHost2"), e->host_by_name("MyHost2")};
+  start_time                             = e->get_clock();
+  sg4::this_actor::parallel_execute(monocore_hosts, comp, comm);
+  XBT_INFO("Computed 2-core activity one 1-core host. Took %g s", e->get_clock() - start_time);
+
+  // Same host, multicore.
+  std::vector<sg4::Host*> multicore_host = {e->host_by_name("MyHost1"), e->host_by_name("MyHost1")};
+  start_time                             = e->get_clock();
+  sg4::this_actor::parallel_execute(multicore_host, comp, comm);
+  XBT_INFO("Computed 2-core activity on one 2-core host. Took %g s", e->get_clock() - start_time);
+
+  // Same host, using too many cores
+  std::vector<double> comp6(6, 1e9);
+  std::vector<double> comm6(36, 0.0);
+  std::vector<sg4::Host*> multicore_overload(6, e->host_by_name("MyHost1"));
+  start_time = e->get_clock();
+  sg4::this_actor::parallel_execute(multicore_overload, comp6, comm6);
+  XBT_INFO("Computed 6-core activity of a 4-core host. Took %g s", e->get_clock() - start_time);
+}
+
+int main(int argc, char* argv[])
+{
+  sg4::Engine e(&argc, argv);
+
+  xbt_assert(argc == 2, "Usage: %s <platform file>", argv[0]);
+
+  e.load_platform(argv[1]);
+  sg4::Actor::create("test", sg4::Host::by_name("MyHost1"), runner);
+
+  e.run();
+  XBT_INFO("Simulation done.");
+  return 0;
+}
diff --git a/examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.tesh b/examples/cpp/exec-ptask-multicore/s4u-exec-ptask-multicore.tesh
new file mode 100644 (file)
index 0000000..2dadba2
--- /dev/null
@@ -0,0 +1,10 @@
+#!/usr/bin/env tesh
+
+$ ${bindir:=.}/s4u-exec-ptask-multicore ${platfdir}/energy_platform.xml --cfg=host/model:ptask_L07 --log=no_loc "--log=root.fmt:[%10.6r]%e%m%n"
+> [  0.000000] Configuration change: Set 'host/model' to 'ptask_L07'
+> [  0.000000] Switching to the L07 model to handle parallel tasks.
+> [ 10.000000] Computed 2-core activity on two different hosts. Took 10 s
+> [ 30.000000] Computed 2-core activity one 1-core host. Took 20 s
+> [ 40.000000] Computed 2-core activity on one 2-core host. Took 10 s
+> [ 55.000000] Computed 6-core activity of a 4-core host. Took 15 s
+> [ 55.000000] Simulation done.
\ No newline at end of file