PVC and H100 builds

This commit is contained in:
Carl Pearson
2023-11-30 16:41:33 -07:00
parent 28cf332ad8
commit 314a69d62d
7 changed files with 160 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
#! /bin/bash
#SBATCH -A csc465
#SBATCH -N 1
#SBATCH -p all
set -eou pipefail
@@ -10,15 +10,7 @@ LOG_DIR="$(date +"%Y%m%d_%H%M%S")_run"
export LOG_DIR
mkdir -p "$LOG_DIR"
srun -n1 -t 1 /opt/rocm-5.7.0/bin/rocm-smi \
--showdriverversion \
--showproductname \
--showmclkrange \
-v \
--showsclkrange \
--showfwinfo \
|& tee "$LOG_DIR/rocm-smi.log" || true
srun -n1 -t 1 /opt/rocm-5.7.0/bin/rocminfo |& tee "$LOG_DIR/rocminfo.log" || true
srun -n1 -t 1 lscpu |& tee "$LOG_DIR/lscpu.log" || true
srun -n1 -t 1 hostname |& tee "$LOG_DIR/hostname.log" || true
srun -n1 -t 1 cat /proc/cpuinfo |& tee "$LOG_DIR/cpuinfo.log" || true