Skip to content

Commit 9e536b4

Browse files
committed
Copy cray-cs perf jobs in prep for adding cray-cs-hdr jobs
Signed-off-by: Elliot Ronaghan <[email protected]>
1 parent 1108202 commit 9e536b4

3 files changed

+62
-0
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Configure settings for Cray CS performance testing.
4+
5+
export CHPL_LAUNCHER_PARTITION=bdw18
6+
export CHPL_TARGET_CPU=broadwell
7+
8+
# the lengths we go to, to avoid line wrap ...
9+
pcca=(-performance-configs gn-ibv-large:v,gn-ibv-fast:v,gn-mpi,ofi:v \
10+
-performance \
11+
-perflabel ml- \
12+
-startdate 07/01/19)
13+
perf_cray_cs_args=${pcca[*]}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Run performance tests on a cray-cs
4+
5+
CWD=$(cd $(dirname $0) ; pwd)
6+
7+
export CHPL_TEST_PERF_CONFIG_NAME='16-node-cs'
8+
9+
source $CWD/common-perf.bash
10+
export CHPL_TEST_PERF_DIR=/cray/css/users/chapelu/NightlyPerformance/cray-cs/16-node-cs
11+
12+
export CHPL_NIGHTLY_TEST_CONFIG_NAME="perf.cray-cs.gasnet-ibv.fast"
13+
14+
source $CWD/common-cray-cs.bash y
15+
source $CWD/common-perf-cray-cs.bash
16+
17+
# Keep long running tests as a performance issue instead of being reported as a
18+
# correctness timeout -- https://github.com/Cray/chapel-private/issues/443
19+
export CHPL_TEST_TIMEOUT=1800
20+
21+
export CHPL_GASNET_SEGMENT=fast
22+
export GASNET_PHYSMEM_MAX=83G
23+
export CHPL_GASNET_MORE_CFG_OPTIONS=--disable-ibv-odp
24+
nightly_args="${nightly_args} -no-buildcheck"
25+
perf_args="-performance-description gn-ibv-fast -numtrials 1"
26+
27+
$CWD/nightly -cron ${perf_args} ${perf_cray_cs_args} ${nightly_args}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Run performance tests on a cray-cs
4+
5+
CWD=$(cd $(dirname $0) ; pwd)
6+
7+
export CHPL_TEST_PERF_CONFIG_NAME='16-node-cs'
8+
9+
source $CWD/common-perf.bash
10+
export CHPL_TEST_PERF_DIR=/cray/css/users/chapelu/NightlyPerformance/cray-cs/16-node-cs
11+
12+
export CHPL_NIGHTLY_TEST_CONFIG_NAME="perf.cray-cs.gasnet-ibv.large"
13+
14+
source $CWD/common-cray-cs.bash y
15+
source $CWD/common-perf-cray-cs.bash
16+
17+
export GASNET_PHYSMEM_MAX=83G
18+
export GASNET_ODP_VERBOSE=0
19+
nightly_args="${nightly_args} -no-buildcheck"
20+
perf_args="-performance-description gn-ibv-large -numtrials 3"
21+
22+
$CWD/nightly -cron ${perf_args} ${perf_cray_cs_args} ${nightly_args}

0 commit comments

Comments
 (0)