Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

*** Make sure that Prof. Keller has added you to both the spin and spinquest groups in Rivanna. ***

 

Using GPU's on Rivanna


#!/bin/bash
#SBATCH -A spinquest
#SBATCH -p gpu
#SBATCH --gres=gpu:a100
#SBATCH --constraint=a100_80gb
#SBATCH -c 4
#SBATCH -t 72:00:00
#SBATCH -J tunertest_selected_set
#SBATCH -o tuner.out
#SBATCH -e tuner.err
#SBATCH --mem=256000

module purge
module load apptainer tensorflow/2.13.0

apptainer run --nv $CONTAINERDIR/tensorflow-2.13.0.sif <file_name>.py



Using Tensorflow with BKM2002-Formulation

...