frontier scripts

This commit is contained in:
Carl Pearson
2023-10-09 18:42:04 -04:00
parent 6b4c98dcf8
commit 6de783d752
3 changed files with 54 additions and 26 deletions

View File

@@ -100,9 +100,9 @@ for pattern in [
"implicit_managed_HostWrGPU_fine", "implicit_managed_HostWrGPU_fine",
"implicit_managed_GPUWrHost_coarse", "implicit_managed_GPUWrHost_coarse",
"implicit_managed_GPUWrHost_fine", "implicit_managed_GPUWrHost_fine",
"implicit_mapped_GPURdHost" "implicit_mapped_GPURdHost",
"implicit_mapped_GPUWrGPU", "implicit_mapped_GPUWrGPU",
"implicit_mapped_GPUWrHost" "implicit_mapped_GPUWrHost",
"implicit_mapped_HostWrGPU", "implicit_mapped_HostWrGPU",
"prefetch_managed_GPUToGPU", "prefetch_managed_GPUToGPU",
"prefetch_managed_GPUToHost", "prefetch_managed_GPUToHost",

52
scripts/run_11.sh Executable file
View File

@@ -0,0 +1,52 @@
#!/bin/bash
#SBATCH -A CSC465
#SBATCH -J r11
#SBATCH -o %x-%j.out
#SBATCH -t 2:00:00
#SBATCH -p batch
#SBATCH -N 1
# salloc -A CSC465 -N 1 -p batch -t 2:00:00
export ROOT=/lustre/orion/csc465/scratch/cpearson/frontier-gpu-bandwidth
export SCOPE_SRC=${ROOT}/comm_scope
export SCOPE_BUILD=${ROOT}/build
export SCOPE_RESULTS=${ROOT}/run
module load PrgEnv-amd/8.3.3
export HSA_XNACK=1
mkdir -p $SCOPE_RESULTS
module list > $SCOPE_RESULTS/modules.r11.$SLURM_JOBID.txt 2>&1
env > $SCOPE_RESULTS/env.r11.$SLURM_JOBID.txt
rocm-smi > $SCOPE_RESULTS/rocm-smi.r11.$SLURM_JOBID.txt 2>&1
lscpu > $SCOPE_RESULTS/lscpu.r11.$SLURM_JOBID.txt 2>&1
date
srun -c 56 -n 1 --gpus 8 $SCOPE_BUILD/comm_scope \
--benchmark_repetitions=5 \
--benchmark_filter='.*implicit_managed_HostWrGPU_coarse/0/0/.*' \
--benchmark_out_format=json \
--benchmark_out="$SCOPE_RESULTS/implicit_managed_HostWrGPU_coarse.json"
srun -c 56 -n 1 --gpus 8 $SCOPE_BUILD/comm_scope \
--benchmark_repetitions=5 \
--benchmark_filter='.*implicit_managed_GPUWrHost_fine/0/0/.*' \
--benchmark_out_format=json \
--benchmark_out="$SCOPE_RESULTS/implicit_managed_GPUWrHost_fine.json"
srun -c 56 -n 1 --gpus 8 $SCOPE_BUILD/comm_scope \
--benchmark_repetitions=5 \
--benchmark_filter='.*implicit_managed_GPUWrHost_coarse/0/0/.*' \
--benchmark_out_format=json \
--benchmark_out="$SCOPE_RESULTS/implicit_managed_GPUWrHost_coarse.json"
srun -c 56 -n 1 --gpus 8 $SCOPE_BUILD/comm_scope \
--benchmark_repetitions=5 \
--benchmark_filter='.*implicit_mapped_GPUWrHost/0/0/.*' \
--benchmark_out_format=json \
--benchmark_out="$SCOPE_RESULTS/implicit_mapped_GPUWrHost.json"
date

View File

@@ -31,28 +31,4 @@ srun -c 56 -n 1 --gpus 8 $SCOPE_BUILD/comm_scope \
--benchmark_out_format=json \ --benchmark_out_format=json \
--benchmark_out="$SCOPE_RESULTS/implicit_managed_HostWrGPU_fine.json" --benchmark_out="$SCOPE_RESULTS/implicit_managed_HostWrGPU_fine.json"
srun -c 56 -n 1 --gpus 8 $SCOPE_BUILD/comm_scope \
--benchmark_repetitions=5 \
--benchmark_filter='.*implicit_managed_HostWrGPU_coarse/0/0/.*' \
--benchmark_out_format=json \
--benchmark_out="$SCOPE_RESULTS/implicit_managed_HostWrGPU_coarse.json"
srun -c 56 -n 1 --gpus 8 $SCOPE_BUILD/comm_scope \
--benchmark_repetitions=5 \
--benchmark_filter='.*implicit_managed_GPUWrHost_fine/0/0/.*' \
--benchmark_out_format=json \
--benchmark_out="$SCOPE_RESULTS/implicit_managed_GPUWrHost_fine.json"
srun -c 56 -n 1 --gpus 8 $SCOPE_BUILD/comm_scope \
--benchmark_repetitions=5 \
--benchmark_filter='.*implicit_managed_GPUWrHost_coarse/0/0/.*' \
--benchmark_out_format=json \
--benchmark_out="$SCOPE_RESULTS/implicit_managed_GPUWrHost_coarse.json"
srun -c 56 -n 1 --gpus 8 $SCOPE_BUILD/comm_scope \
--benchmark_repetitions=5 \
--benchmark_filter='.*implicit_mapped_GPUWrHost/0/0/.*' \
--benchmark_out_format=json \
--benchmark_out="$SCOPE_RESULTS/implicit_mapped_GPUWrHost.json"
date date