source: codes/icosagcm/devel/Python/test/python.sh @ 777

Last change on this file since 777 was 777, checked in by dubos, 6 years ago

devel/Python : update dynamico modules at beginning of python.sh

  • Property svn:executable set to *
File size: 757 bytes
Line 
1#!/bin/bash
2# please do not move this script as relies on ../.. being DYNAMICO_ROOT
3# usage : ./python.sh mode [n] script script_args
4# mode is 'serial' or mpi
5# if mode is 'mpi' then argument [n] specifies the number of MPI processes
6
7function cmd_serial()
8{
9    LD_PRELOAD=$PYTHON_PRELOAD python -u $*
10}
11
12function cmd_gdb()
13{
14    set -x
15    LD_PRELOAD=$PYTHON_PRELOAD gdb --args python -u $*
16}
17
18function cmd_mpi()
19{
20    NB_MPI=$1
21    shift
22    mpirun -np $NB_MPI python -u $*
23}
24
25TEST=$PWD
26DYNAMICO_ROOT=$(cd -P $(dirname $0)/../.. ; pwd)
27
28cd $DYNAMICO_ROOT
29
30cp -i -u Python/dynamico/* lib/dynamico/
31
32. arch.env
33. arch.path
34cd $DYNAMICO_ROOT/Python/env
35. $CURRENT_ARCH.env
36
37cd $TEST
38
39export OMP_STACKSIZE=128M
40ulimit -s unlimited
41
42CMD=$1
43shift
44cmd_$CMD $*
Note: See TracBrowser for help on using the repository browser.