Spaces:
Sleeping
Sleeping
File size: 545 Bytes
e75a247 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/bin/bash
#SBATCH --partition=gpu # Specify the partition
#SBATCH --account=gpu_gres # Specify the account
#SBATCH --mem=500M # Request 10GB of memory
#SBATCH --time=00:00:30 # Set the time limit to 1 hour
#SBATCH --job-name=GPUinfo # Name the job
#SBATCH --output=jobs/GPUstats_output.log # Redirect stdout to a log file
#SBATCH --error=jobs/GPUstats_error.log # Redirect stderr to a log file
#SBATCH --gres=gpu:1
nvidia-smi
# Run the job:
# sbatch jobs/gpustats.slurm
|