Changes between Version 26 and Version 27 of Check


Ignore:
Timestamp:
Oct 12, 2010, 6:06:31 PM (14 years ago)
Author:
andrei.voinescu
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Check

    v26 v27  
    152152}}}
    153153
    154 Input files:
    155 
     154Arguments:
     155  * RD is the URI of the Resource Directory
    156156  * tdag is a Task Dependency Acyclic Graph. It contains a graph of data dependencies between tasks and their associated bandwidth. The format is a textfile containing
    157157    * t, number of tasks
     
    161161    * tuples (x,s) are present on every line, x being the task index in the tdag file and s being the name of the task associated. Tasks are started based on their names
    162162
     163Example of a tdag file:
     164
     165The application in question has one sensing task (0) and two different event detections (tasks 1 and 3) and a sink task to notify in the case of an event (task 2)
     166{{{
     1674 4
     1680 1 10
     1691 2 1
     1700 3 20
     1712 3 1
     172}}}
     173
     174The associated tskmap will be:
     175{{{
     1760 sense
     1771 ed1
     1783 ed2
     1792 present
     180}}}
     181
     182
     183
    163184One run of the application is enough to calculate the best scheduling of the application over the network, the application will directly access the nodes and start the required tasks, provided the tasks are already present on the sensor nodes.
    164185= Self-healing =