Changes between Version 2 and Version 3 of Public/User_Guide/JUBE


Ignore:
Timestamp:
Jul 28, 2016, 3:20:39 PM (8 years ago)
Author:
Cristina Manzano
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Public/User_Guide/JUBE

    v2 v3  
    1717$ jube2 result benchmark_directory [-i run_id]
    1818}}}
     19
     20== Example application ==
     21
     22{{{
     23ssh manzano@deep
     24
     25cd /usr/local/deep-er/sdv-benchmarks/applications/MAXW-DGTD
     26}}}
     27
     28=== Compile ===
     29
     30See for instance the JUBE xml file of the example application:
     31
     32{{{
     33vim MAXW-DGTD-jube-master-SDV.compile.xml
     34}}}
     35
     36Important parts in the file are:
     37
     381) Platform
     39
     40{{{
     41  <include-path>
     42    <path>/usr/local/jube2/platform/deep</path>
     43  </include-path>
     44}}}
     45
     46Under /usr/local/jube2/platform/deep there are a series of files with default values for the DEEP and DEEP-ER systems:
     47
     48{{{
     49deep-chainJobs.sh
     50submit.job.in
     51platform.xml
     52}}}
     53
     54These files won't be modified but the default values can be overwritten in the JUBE xml file.
     55
     562) Sources
     57
     58{{{
     59    <fileset name="sources">
     60      <copy>MAXW-DGTD.tar.gz</copy>
     61      <prepare>tar -xzf MAXW-DGTD.tar.gz</prepare>
     62    </fileset>
     63}}}
     64
     65...