ARC User Guide: https://arc-user-guide.readthedocs.io/en/latest/index.html
ARC Software Guide: https://arc-software-guide.readthedocs.io/en/latest/index.html
JADE2 user guide: https://docs.jade.ac.uk/en/latest/jade/scheduler/index.html#introduction
This works on both ARC and HTC
#!/bin/bash
# run_interactive_cpu.sh
srun -p interactive --pty /bin/bash
This needs to run on HTC
#!/bin/bash
# run_interactive_gpu.sh
srun -p interactive --gres=gpu:1 --pty /bin/bash
#/bin/bash
# conda_create.sh
if [ -z "$@" ];then
echo "No environment name chosen. Exit"
exit
else
echo "Creating environment [$1]"
fi
# Load the version of Anaconda you need
module load Miniconda3
# Create an environment in $DATA and give it an appropriate name
export CONPREFIX=$DATA/$1
conda create --prefix $CONPREFIX python=3.10 pip
# Activate your environment
source activate $CONPREFIX
# Install packages...
echo "Install new packages with 'conda install <packagename>'"
#!/bin/bash
# conda_activate.sh
if [ -z "$@" ];then
echo "No environment name chosen. Exit"
exit
else
echo "Activating environment [$1]"
fi
export CONPREFIX=$DATA/$1
module load Miniconda3
source activate $DATA/$1