Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetics (help project_description.sh) [ci-skip].
[simgrid.git] / docs / source / tuto_dag / simple_dax.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">
5   <job id="1" name="c1" runtime="10">
6     <uses file="i1" link="input" register="true" transfer="true" optional="false" type="data" size="2e8"/>
7     <uses file="o1" link="output" register="true" transfer="true" optional="false" type="data" size="5e8"/>
8   </job>
9   <job id="2" name="c2" runtime="50">
10     <uses file="i2" link="input" register="true" transfer="true" optional="false" type="data" size="1e8"/>
11   </job>
12   <job id="3" name="c3" runtime="20">
13     <uses file="o1" link="input" register="true" transfer="true" optional="false" type="data" size="5e8"/>
14     <uses file="o3" link="output" register="true" transfer="true" optional="false" type="data" size="2e8"/>
15   </job>
16   <child ref="3">
17     <parent ref="1"/>
18     <parent ref="2"/>
19   </child>
20 </adag>