mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-23 16:54:56 +00:00
23 lines
421 B
Bash
23 lines
421 B
Bash
module load devel/miniconda
|
|
|
|
nvidia-smi
|
|
|
|
source ~/.bashrc
|
|
# some users reported issues with stacked conda environments; see https://en.wikipedia.org/wiki/Rule_of_three_(writing)
|
|
conda deactivate
|
|
conda deactivate
|
|
conda deactivate
|
|
conda activate fob
|
|
|
|
# Running the job
|
|
|
|
start=$(date +%s)
|
|
|
|
__FOB_COMMAND__
|
|
|
|
finish=$(date +%s)
|
|
|
|
runtime=$((finish-start))
|
|
|
|
echo Job execution complete.
|
|
echo Total job runtime: $runtime seconds
|