GAUSS: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

    20 October 2022

    • curprev 20:0520:05, 20 October 2022James talk contribs 1,875 bytes +1,875 Created page with "A SLURM submit script for GAUSS that runs on 1 processor (core) follows: <pre> #!/bin/bash #SBATCH --partition production #SBATCH --job-name GAUSS_job #SBATCH --nodes=1 #SBATCH --ntasks=1 #SBATCH --mem=2880 # Find out name of master execution host (compute node) echo -n ">>>> SLURM Master compute node is: " hostname echo "" # You must explicitly change to the working directory in SLURM cd $SLURM_SUBMIT_DIR # # Point to the serial executable to run # echo ">>>> Begin..."