Application examples

From SNIC Documentation
Revision as of 16:42, 11 October 2011 by Jonas Lindemann (LUNARC) (talk | contribs) (Generic examples)
Jump to: navigation, search

Generic examples

Example 1

This job just sends a script to a grid resource which writes "Hello, grid!" to standard output. The scripts stores standard input and output to the files stdout.txt och stderr.txt. All output is collected upon retrieval using the directive "/" in the outputFiles attribute. Walltime is set to 5 minutes. The executable is also added to the input files section.

XRSL job description (ex1.xrsl):

&
(executable=run.sh)
(wallTime="5 minutes")
(stdout="stdout.txt")
(stderr="stderr.txt")
(inputFiles=("run.sh" ""))
(outputFiles=("/" ""))

Executable shell script (run.sh):

#!/bin/sh
echo "Hello, grid"

Usage:

arcsub ex1.xrsl

More verbose output is achieved with:

arcsub --debug=INFO ex1.xrsl

Example 2

Octave / MATLAB examples

SciPy / Numpy examples

ARC Python API examples