Skip to content

Commit f55638a

Browse files
committed
Update node/core count on blake
- new architecture has 96 cores/node so we only need 4 nodes
1 parent ce158fe commit f55638a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cdash/blake/batch.openmpi.bash.dummy

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
## Do not put any commands or blank lines before the #SBATCH lines
3-
#SBATCH --nodes=8 # Number of nodes - all cores per node are allocated to the job
3+
#SBATCH --nodes=4 # Number of nodes - all cores per node are allocated to the job
44
#SBATCH --time=0:59:00 # Wall clock time (HH:MM:SS) - once the job exceeds this time, the job will be terminated (default is 5 minutes)
55
#SBATCH --job-name=ali-perf # Name of job
66
##SBATCH --partition=batch # partition/queue name: short or batch
@@ -20,7 +20,7 @@
2020
#SBATCH --dependency=afterok:XXX
2121

2222
nodes=$SLURM_JOB_NUM_NODES # Number of nodes - the number of nodes you have requested (for a list of SLURM environment variables see "man sbatch")
23-
cores=48 # Number MPI processes to run on each node (a.k.a. PPN)
23+
cores=96 # Number MPI processes to run on each node (a.k.a. PPN)
2424
# tlcc2 has 16 cores per node
2525

2626
unset http_proxy

cdash/blake/ctest_nightly.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ set (CTEST_BUILD_NAME "AlbanyPerfTests-${osname}-${osrel}-${COMPILER}-${COMPILER
9090
set (CTEST_NIGHTLY_START_TIME "00:00:00 UTC")
9191
set (CTEST_CMAKE_COMMAND "cmake")
9292
set (CTEST_COMMAND "ctest -D ${CTEST_TEST_TYPE}")
93-
set (CTEST_BUILD_FLAGS "-j48")
93+
set (CTEST_BUILD_FLAGS "-j96")
9494

9595
find_program (CTEST_GIT_COMMAND NAMES git)
9696

0 commit comments

Comments
 (0)