Annotation of badi/public_scripts/parallelstarter/biogeme/parallelstarter.setup, revision 1.1.1.1

1.1       adi         1: # biogeme - run several biogeme runs in parallel
                      2: 
                      3: # Command to start one process. 
                      4: RUN_BIN="biogeme"
                      5: 
                      6: # Variable argument list. 
                      7: # A file containing all the variations of arguments
                      8: # that should be processed. Each line in this file will provoke one run. 
                      9: # The format of the file is: run_name : modelfile : datafile.dat
                     10: BIOGEME_ARGS_FILE="biogeme.arglist"
                     11: 
                     12: # name of the model and parameter directory
                     13: MODEL_DIRNAME="mods"
                     14: 
                     15: # name of the data directory
                     16: DATA_DIRNAME="dats"
                     17: 
                     18: # run with this amount of respect to others
                     19: NICENESS=19
                     20: 
                     21: # maximum number of processes to run at once
                     22: MAX_PROCESSES=4
                     23: 
                     24: # Wait that many seconds when the maxium number of running processes are
                     25: # reached before retrying to start a new process.
                     26: RETRY=2
                     27: 
                     28: # ----------- do not edit for biogeme -----------
                     29: # Common arguments to all processes.
                     30: # Arguments that are common to all processes may be passed here,
                     31: # Preceeding arguments to the variable arguments:
                     32: COMMON_LEADING_ARGS=""
                     33: 
                     34: # Arguments following the variable arguments:
                     35: COMMON_POST_ARGS=""
                     36: 
                     37: # Variable argument list. 
                     38: # A file containing all the variations of arguments
                     39: # that should be run. Each line in this file will provoke one process. 
                     40: ARGLIST_FILE="biogeme.arglist.auto"
                     41: 
                     42: . /usr/local/lib/parallelstarter/biogeme/generate_arglist

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>