Skip to content
Snippets Groups Projects
Select Git revision
  • e38ae474de6ff3bd2bcbe3acb7117883d4ac5ca4
  • documentation default
  • master protected
  • integration
  • pre_update
5 results

Cell Magics.ipynb

Blame
  • example_submission_script.sh 580 B
    #!/bin/bash
    #SBATCH --nodes=1
    #SBATCH --ntasks-per-node=1
    #SBATCH --time=00:01:00
    #SBATCH --gres=gpu
    #SBATCH --partition=develbooster
    #SBATCH --account=atmlaml
    
    echo "-------- Outside of the container -----------"
    module purge
    module load Stages/2020  GCCcore/.10.3.0 PyTorch/1.8.1-Python-3.8.5
    python src/hello_world.py
    
    ######## How to run with container #########
    #echo "-------- Inside of the container ------------"
    #module purge
    #module load Singularity-Tools
    #singularity run pytorch22.02.sif python3 src/hello_world.py
    #echo "--------------------------------------------"