diff --git a/404.html b/404.html index 25fda95e1..430539bba 100644 --- a/404.html +++ b/404.html @@ -258,7 +258,7 @@
In order to successfully submit a job to LOTUS2, 3 mandatory fields must be specified. These are a partition, an account, and a QoS. The LOTUS2 configuration has been set to use the standard
partition as the default if none is specified. However, users are discouraged from relying on this.
Example of a batch Script:
-NB: remove any trailing whitespace
+In order to successfully submit a job to LOTUS2, 3 mandatory fields must be specified. These are a partition, an account, and a QoS. The LOTUS2 configuration has been set to use the standard
partition as the default if none is specified. However, users are discouraged from relying on the default.
Example of a batch Script: NB: remove any trailing whitespace
+Replace mygws
with the name of an account that you belong to (check with the useraccounts
command, as shown above), and other values appropriate to your job.
#!/bin/bash
-#SBATCH --job-name="Job Name"
-#SBATCH --time=<wall time required>
-#SBATCH --mem=<memory required>
-#SBATCH --cpus=<cpus required for multicore jobs e.g. MPI>
-#SBATCH --account=<account_name>
-#SBATCH --partition=<partition_name>
-#SBATCH --qos=<qos_name>
+#SBATCH --job-name="My test job"
+#SBATCH --time=01:00
+#SBATCH --mem=1G
+#SBATCH --account=mygws
+#SBATCH --partition=debug
+#SBATCH --qos=debug
-# rest of script here
For a pseudo-interactive session on a LOTUS2 compute node:
-srun --account=cedaproc --qos=standard --pty /bin/bash
+# rest of script here
Save this script file as e.g.test_submit.sh
+Then submit this with:
sbatch test_submit.sh
For a pseudo-interactive session on a LOTUS2 compute node:
+(again, replace mygws
with an account that you belong to, from the useraccounts
command)
srun --account=mygws --partition=debug --qos=debug --pty /bin/bash
srun: job 586 queued and waiting for resources
srun: job 586 has been allocated resources
module li
@@ -1893,7 +1896,7 @@ Timetable for host retiremen
All the hosts listed have new Rocky 9 equivalents described in the document above.
Please check back regularly to keep up to date with this schedule.
-Last updated on 2025-02-07 as part of: updated sci, lotus2 specs, removed old centos migration page (c0f4bfa01)
+Last updated on 2025-02-10 as part of: tweaks to submission examples (a38cf147f)