Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
couple more simplifications
[simgrid.git] / examples / simdag / dax / simple_dax_with_cycle.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <adag xmlns="http://pegasus.isi.edu/schema/DAX" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3       xsi:schemaLocation="http://pegasus.isi.edu/schema/DAX http://pegasus.isi.edu/schema/dax-2.1.xsd" 
4       version="2.1" count="1" index="0" name="smalldax" jobCount="4" fileCount="0" childCount="2">
5   <job id="1" namespace="SG" name="task1" version="1.0" runtime="10">
6     <uses file="i1" link="input" register="true" transfer="true" optional="false" type="data" size="1000000"/>
7     <uses file="o1" link="output" register="true" transfer="true" optional="false" type="data" size="1000000"/>
8   </job>
9   <job id="2" namespace="SG" name="task2" version="1.0" runtime="10">
10     <uses file="i2" link="input" register="true" transfer="true" optional="false" type="data" size="1000000"/>
11   </job>
12   <job id="3" namespace="SG" name="task3" version="1.0" runtime="10">
13     <uses file="o1" link="input" register="true" transfer="true" optional="false" type="data" size="1000000"/>
14     <uses file="o3" link="output" register="true" transfer="true" optional="false" type="data" size="1000000"/>
15   </job>
16   <child ref="3">
17     <parent ref="2"/>
18   </child>
19   <!-- add a cycle on purpose. It won't be a DAG anymore -->
20   <child ref="1">
21     <parent ref="3"/>
22   </child>
23 </adag>