Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
41f46a851dec1261b75c7119a7a6b7dc46490044
[simgrid.git] / teshsuite / simdag / platforms / one_cluster_one_host_random.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "simgrid.dtd">
3 <platform version="2">
4   <random id="myRandomGenerator" generator="DRAND48"
5           min="1000000000" max="2000000000" mean="1600000000"
6           std_deviation="12"/>
7
8   <set id="bob_cluster" prefix="bob" suffix=".hamburger.edu"
9        radical="0-3"/>
10
11   <host id="bob" power="$rand(myRandomGenerator)"/>
12   
13   <foreach set_id="bob_cluster">
14     <host id="$1" power="$rand(myRandomGenerator)"/>
15     <link id="$1" bandwidth="125000000" latency="5E-5"/>
16   </foreach>
17  </platform>