1 |
\chapter{Execution of an {\it escript} Script} |
2 |
\label{EXECUTION} |
3 |
|
4 |
\section{Overview} |
5 |
A typical way of starting your {\it escript} script \file{myscript.py} is with the \program{escript} command\footnote{The \program{escript} launcher is not supported under \WINDOWS yet.}: |
6 |
\begin{verbatim} |
7 |
escript myscript.py |
8 |
\end{verbatim} |
9 |
as already shown in section~\ref{FirstSteps}\footnote{For this discussion, it is assumed that \program{escript} is included in your \env{PATH} environment. See installation guide for details.} |
10 |
. In some cases |
11 |
it can be useful to work interactively e.g. when debugging a script, with the command |
12 |
\begin{verbatim} |
13 |
escript -i myscript.py |
14 |
\end{verbatim} |
15 |
This will execute \var{myscript.py} and when it completes (or an error occurs), a \PYTHON prompt will be provided. |
16 |
To leave the prompt press \kbd{Control-d}. |
17 |
|
18 |
To start |
19 |
\program{escript} using four threads (eg. if you use a multi-core processor) you can use |
20 |
\begin{verbatim} |
21 |
escript -t 4 myscript.py |
22 |
\end{verbatim} |
23 |
This will require {\it escript} to be compiled for \OPENMP\cite{OPENMP}. |
24 |
|
25 |
To start \program{escript} using \MPI\cite{MPI} with $8$ processes you use |
26 |
\begin{verbatim} |
27 |
escript -p 8 myscript.py |
28 |
\end{verbatim} |
29 |
If the processors which are used are multi--core processors or multi--processor shared memory archtiectures you can use threading in addition to \MPI. For instance to run $8$ \MPI processes with using $4$ threads each, you use the command |
30 |
\begin{verbatim} |
31 |
escript -p 8 -t 4 myscript.py |
32 |
\end{verbatim} |
33 |
In the case of a super computer or a cluster, you may wish to distribute the workload over a number of nodes\footnote{For simplicity, we will use the term node to refer to either a node in a super computer or an individual machine in a cluster}. |
34 |
For example, to use $8$ nodes, with $4$ \MPI processes per node, write |
35 |
\begin{verbatim} |
36 |
escript -n 8 -p 4 myscript.py |
37 |
\end{verbatim} |
38 |
Since threading has some performance advantages over processes, you may specify a number of threads as well. |
39 |
\begin{verbatim} |
40 |
escript -n 8 -p 4 -t 2 myscript.py |
41 |
\end{verbatim} |
42 |
This runs the script on $8$ nodes, with $4$ processes per node and $2$ threads per process. |
43 |
|
44 |
\section{Options} |
45 |
The general form of the \program{escript} launcher is as follows: |
46 |
|
47 |
%%%% |
48 |
% If you are thinking about changing this please remember to update the man page as well |
49 |
%%%% |
50 |
|
51 |
\program{escript} |
52 |
\optional{\programopt{-n \var{nn}}} |
53 |
\optional{\programopt{-p \var{np}}} |
54 |
\optional{\programopt{-t \var{nt}}} |
55 |
\optional{\programopt{-f \var{hostfile}}} |
56 |
\optional{\programopt{-x}} |
57 |
\optional{\programopt{-V}} |
58 |
\optional{\programopt{-e}} |
59 |
\optional{\programopt{-h}} |
60 |
\optional{\programopt{-v}} |
61 |
\optional{\programopt{-o}} |
62 |
\optional{\programopt{-c}} |
63 |
\optional{\programopt{-i}} |
64 |
\optional{\programopt{-b}} |
65 |
\optional{\var{file}} |
66 |
\optional{\var{ARGS}} |
67 |
|
68 |
where \var{file} is the name of a script, \var{ARGS} are arguments for the script. |
69 |
The \program{escript} program will import your current environment variables. |
70 |
If no \var{file} is given, then you will be given a \PYTHON prompt (see \programopt{-i} for restrictions). |
71 |
|
72 |
|
73 |
The options are used as follows: |
74 |
\begin{itemize} |
75 |
|
76 |
\item[\programopt{-n} \var{nn}] the number of compute nodes \var{nn} to be used. The total number of process being used is |
77 |
$\var{nn} \cdot \var{ns}$. This option overwrites the value of the \env{ESCRIPT_NUM_NODES} environment variable. If $\var{nn}>1$ but {\it escript} is not compiled for \MPI a warning is printed but execution is continued with $\var{nn}=1$. The default value is 1. |
78 |
|
79 |
\item[\programopt{-p} \var{np}] the number of MPI processes per node. The total number of processes to be used is |
80 |
$\var{nn} \cdot \var{np}$. This option overwrites the value of the \env{ESCRIPT_NUM_PROC} environment variable. If $\var{np}>1$ but {\it escript} is not compiled for \MPI a warning is printed but execution is continued with $\var{np}=1$. The default value is 1. |
81 |
|
82 |
\item[\programopt{-t} \var{nt}] the number of threads used per processes. |
83 |
The option overwrites the value of the \env{ESCRIPT_NUM_THREADS} environment variable. |
84 |
If $\var{nt}>1$ but {\it escript} is not compiled for \OPENMP a warning is printed but execution is continued with $\var{nt}=1$. The default value is 1. |
85 |
|
86 |
\item[\programopt{-f} \var{hostfile}] the name of a file with a list of host names. Some systems require to specify the addresses or names of the compute nodes where \MPI process should be spawned. The list of addresses or names of the compute nodes is listed in the file with the name \var{hostfile}. In order to avoid oversubsription the number of differnt |
87 |
hosts defined in \var{hostfile} must be greater or equal to the number of requsted compute nodes \var{nn}. The option overwrites the value of the \env{ESCRIPT_HOSTFILE} environment variable. By default value no host file is used. |
88 |
\item[\programopt{-c}] prints the information about the settings used to compile {\it escript} and stops execution.. |
89 |
\item[\programopt{-V}] prints the version of {\it escript} and stops execution. |
90 |
\item[\programopt{-h}] prints a help message and stops execution. |
91 |
\item[\programopt{-i}] executes the script \var{file} and switches to interactive mode after the execution is finished or an exception has occured. This option is useful for debugging a script. The option cannot be used if more then one process ($\var{nn} \cdot \var{np}>1$) is used. |
92 |
\item[\programopt{-b}] do not invoke python. This is used to run non-python programs. |
93 |
|
94 |
\item[\programopt{-e}] shows additional environment variables and commands used during \program{escript} execution. This option is useful if users wish to excute scripts without using the \program{escript} command. |
95 |
|
96 |
\item[\programopt{-o}] switches on the redirection of output of processors with \MPI rank greater than zero to the files \file{stdout_\var{r}.out} and \file{stderr_\var{r}.out} where \var{r} is the rank of the processor. The option overwrites the value of the \env{ESCRIPT_STDFILES} environment variable |
97 |
|
98 |
% \item[\programopt{-x}] interpret \var{file} as an \esysxml \footnote{{\it esysxml} has not been released yet.} task. |
99 |
% This option is still expermental. |
100 |
|
101 |
\item[\programopt{-v}] prints some diagonstic information. |
102 |
\end{itemize} |
103 |
|
104 |
\section{Input and Output} |
105 |
When \MPI is used on more than one process ($\var{nn} \cdot \var{np} >1$) no input from the standard input is accepted. Standard output on any process other the the master process (\var{rank}=0) will not be available. |
106 |
Error output from any processor will be redirected to the node where \program{escript} has been envoked. |
107 |
If the \programopt{-o} or \env{ESCRIPT_STDFILES} is set\footnote{That is, it has a non-empty value.}, then the standard and error output from any process other than the master process will be written to files of the names \file{stdout_\var{r}.out} and \file{stderr_\var{r}.out} (where |
108 |
\var{r} is the rank of the process). |
109 |
|
110 |
If files are created or read by individual \MPI processes with information local to the process (e.g in the \function{dump} function) and more than one process is used ($\var{nn} \cdot \var{np} >1$), the \MPI process rank is appended to the file names. |
111 |
This will avoid problems if processes are using a shared file system. |
112 |
Files which collect data which are global for all \MPI processors will created by the process with \MPI rank 0 only. |
113 |
Users should keep in mind that if the file system is not shared, then a file containing global information |
114 |
which is read by all processors needs to be copied to the local file system before \program{escript} is invoked. |
115 |
|
116 |
|
117 |
\section{Hints for MPI programming} |
118 |
Later |