Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Various doc improvements
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Wed, 15 Nov 2023 15:57:53 +0000 (16:57 +0100)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Wed, 15 Nov 2023 15:57:59 +0000 (16:57 +0100)
ChangeLog
src/dag/loaders.cpp

index 2dabffd..915012c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,14 +16,15 @@ S4U:
    - Each Task now consists of a dispatcher, a collector and one or more instances.
    - The parallelism degree of each of these can be set.
    - Several examples have been added or modified accordingly.
+   - Update s4u::create_DAG_from_json() to support wfformat 1.4.
  - Introduce a new MessageQueue abstraction and associated Mess simulated object.
    The behavior of a MessageQueue is similar to that of a Mailbox, but intended for
    control messages that do not incur any simulated cost. Information is automagically
    transported over thin air between producer and consumer. See examples/cpp/mess-wait
  - New function: Mutex::get_owner()
 
-New S4U plugins:
- - Add a JBOD (just a bunch of disks) concept. It's a sort of host with many disks.
+S4U plugins:
+ - New: Add a JBOD (just a bunch of disks) concept. It's a sort of host with many disks.
  - Revamp the battery plugin: rewrite completely the API, for a better usability.
    The examples were updated accordingly.
    The battery can now act as a simple connector (see battery-connector example).
index 57ec032..09591b1 100644 (file)
@@ -92,7 +92,7 @@ static ExecPtr current_job;
 
 /** @brief loads a JSON file describing a DAG
  *
- * See https://github.com/wfcommons/wfformat for more details.
+ * See https://github.com/wfcommons/wfformat for more details. We support wfformat 1.4.
  */
 std::vector<ActivityPtr> create_DAG_from_json(const std::string& filename)
 {