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

1.1       adi         1: # Matsim multi bench
                      2: 
                      3: # In order to benchmark JVM parameters and find the optimal number of threads,
                      4: # run the matsim benchmark test many times. To speed up things run several
                      5: # benchmark tests in parallel. Be careful not to overload since the results may
                      6: # give a wrong picture.
                      7: 
                      8: 
                      9: # Command to start one process. 
                     10: RUN_BIN="java"
                     11: 
                     12: # Variable argument list. 
                     13: # A file containing all the variations of arguments
                     14: # that should be run. Each line in this file will provoke one process. The
                     15: # arguments on each line in the file will be preceeded with the value of RUN_BIN.
                     16: ARGLIST_FILE="matsim.arglist"
                     17: 
                     18: # Common arguments to all processes.
                     19: # Arguments that are common to all processes may be passed here,
                     20: # Preceeding arguments to the variable arguments:
                     21: COMMON_LEADING_ARGS="-Xmx1024M -Xms1024M"
                     22: # Arguments following the variable arguments:
                     23: COMMON_POST_ARGS="-jar Benchmark.jar"
                     24: 
                     25: # Base name for the result directories
                     26: RUNDIR_BASENAME="benchmark"
                     27: 
                     28: # run with this amount of respect to others
                     29: NICENESS=19
                     30: 
                     31: # maximum number of processes to run at once
                     32: MAX_PROCESSES=4
                     33: 
                     34: # Wait that many seconds when the maxium number of running processes are
                     35: # reached before retrying to start a new process.
                     36: RETRY=2

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