-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig-test.conf
44 lines (38 loc) · 1.66 KB
/
config-test.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This config file contains minimal configurations for a test run
# The location of the binaries
BIN="./bin/"
# The location of the generated output data
DATA_DIR="./io500-datadir/"
# The command to execute a parallel job
MPIRUN="mpiexec -np 2"
# Before you change parameters, familarize with the rules:
# https://www.vi4io.org/io500/about/start
# check also the specific challenge you want to submit.
echo -e "WARNING: Generating code for a TEST run\n"
# For a small testing run
STONEWALL_TIMER=10 # set to 0 to disable
IOR_EASY_ARGS="-t 2048k -b 2m -F"
IOR_HARD_IO_COUNT="100"
IOR_HARD_EXTRA_ARGS=""
MDTEST_EASY="-n 250 -u -L"
MDTEST_HARD_FILE_COUNT="150"
MDTEST_HARD_EXTRA_ARGS=""
PFIND_MPIRUN="$MPIRUN" # special mpiexec arguments for pfind. Here set to defaults.
PFIND_ARGS="-C" # use -P for debugging to print the load between processes, -N to use another job stealing distribution (try this)
# Define this variable if you want to use your version of find
# Note that the find script must be submitted to the IO-500 repository to be available
# io_500_userdefined_find="./bin/sfind.sh"
# Include here the information for the job scheduler
function io500_job_header(){
echo "# Put your batch submission commands QSUB | PBS -n XX"
}
# Information fields; these provide information about your system hardware
# Use https://vi4io.org/io500-info-creator/ to generate information about your hardware
# that you want to include publicly!
function io500_info(){
# replace this body with the generated text, e.g.
echo io500_info_institution='""'
}
function io500_prepare(){
echo "# Please add in io500_prepare() additional scripts to setup/prepare the directories like lfs setstripe"
}