File: simple_dax_with_cycle.xml

package info (click to toggle)
simgrid 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,192 kB
  • sloc: cpp: 124,913; ansic: 66,744; python: 8,560; java: 6,773; fortran: 6,079; f90: 5,123; xml: 4,587; sh: 2,194; perl: 1,436; makefile: 111; lisp: 49; javascript: 7; sed: 6
file content (23 lines) | stat: -rw-r--r-- 1,308 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<adag xmlns="http://pegasus.isi.edu/schema/DAX" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://pegasus.isi.edu/schema/DAX http://pegasus.isi.edu/schema/dax-2.1.xsd"
      version="2.1" count="1" index="0" name="smalldax" jobCount="4" fileCount="0" childCount="2">
  <job id="1" namespace="SG" name="task1" version="1.0" runtime="10">
    <uses file="i1" link="input" register="true" transfer="true" optional="false" type="data" size="1000000"/>
    <uses file="o1" link="output" register="true" transfer="true" optional="false" type="data" size="1000000"/>
  </job>
  <job id="2" namespace="SG" name="task2" version="1.0" runtime="10">
    <uses file="i2" link="input" register="true" transfer="true" optional="false" type="data" size="1000000"/>
  </job>
  <job id="3" namespace="SG" name="task3" version="1.0" runtime="10">
    <uses file="o1" link="input" register="true" transfer="true" optional="false" type="data" size="1000000"/>
    <uses file="o3" link="output" register="true" transfer="true" optional="false" type="data" size="1000000"/>
  </job>
  <child ref="3">
    <parent ref="2"/>
  </child>
  <!-- add a cycle on purpose. It won't be a DAG anymore -->
  <child ref="1">
    <parent ref="3"/>
  </child>
</adag>