mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
26 lines
895 B
Plaintext
26 lines
895 B
Plaintext
|
#!/bin/bash
|
||
|
#BSUB -P LGT104
|
||
|
#BSUB -W 2:00
|
||
|
#BSUB -nnodes 4
|
||
|
#BSUB -J DWF
|
||
|
|
||
|
export OMP_NUM_THREADS=6
|
||
|
export PAMI_IBV_ADAPTER_AFFINITY=1
|
||
|
export PAMI_ENABLE_STRIPING=1
|
||
|
export OPT="--comms-concurrent --comms-overlap "
|
||
|
#export GRID_ALLOC_NCACHE_LARGE=1
|
||
|
export APP="./benchmarks/Benchmark_comms_host_device --mpi 2.2.2.3 "
|
||
|
jsrun --nrs 4 -a6 -g6 -c42 -dpacked -b packed:7 --latency_priority gpu-cpu --smpiargs=-gpu $APP
|
||
|
|
||
|
APP="./benchmarks/Benchmark_dwf_fp32 --grid 48.48.48.72 --mpi 2.2.2.3 --shm 1024 --shm-force-mpi 1 --device-mem 8000 --shm-force-mpi 1 $OPT "
|
||
|
jsrun --nrs 4 -a6 -g6 -c42 -dpacked -b packed:7 --latency_priority gpu-cpu --smpiargs=-gpu $APP
|
||
|
|
||
|
APP="./benchmarks/Benchmark_dwf_fp32 --grid 64.64.64.96 --mpi 2.2.2.3 --shm 1024 --shm-force-mpi 1 --device-mem 8000 --shm-force-mpi 1 $OPT "
|
||
|
jsrun --nrs 4 -a6 -g6 -c42 -dpacked -b packed:7 --latency_priority gpu-cpu --smpiargs=-gpu $APP
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|