You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/tips-for-beginners.md
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,29 @@
1
1
# Tips for beginners
2
2
3
-
!!! warning "Don't use submit nodes for heavy computing."
3
+
!!! note "Don't use submit nodes for heavy computing."
4
4
Submit nodes are for preparing files, submitting jobs,
5
5
examining results, and transferring files.
6
6
7
-
!!! warning "Don't store files on scratch."
7
+
!!! note "Avoid storing important files in Scratch"
8
8
[Scratch is not backed up](../file-system/file-storage.md/#quotas),
9
9
and files older than 30 days old are deleted.
10
10
11
-
!!! warning "Don't overrun your file storage quota."
11
+
!!! note "Monitor your storage quota"
12
12
If you fill your allotted disk space, weird errors occur.
13
13
Keep an eye on your [disk space usage](../file-system/file-storage.md/#quotas).
14
14
15
-
!!! warning "Don't waste your compute resources."
16
-
Use interactive sessions to test your workflow.
17
-
Before a big batch job, run test jobs to make sure your code works.
15
+
!!! note "Use compute resources responsibly"
16
+
Always run small test jobs to verify that your code, inputs, and resource
17
+
requests behave as expected.
18
+
Refer to the [`job_estimate`](../running-jobs/batch-jobs.md/#estimating-resource-usage) command to estimate credit consumption from your job script before submission.
18
19
19
-
!!! warning "Capture job output and error logs"
20
+
!!! note "Always capture job output and error logs"
20
21
To debug failed or unexpected jobs, it can be helpful to capture output and error streams
21
22
separately. To do so, add these lines to the slurm job script:
22
23
`#SBATCH --output=job_%j.out`
23
24
`#SBATCH --error=job_%j.err`
24
25
25
-
!!! warning "Using modules"
26
+
!!! note "Load software using modules"
26
27
Most software on Roar is managed through the software stack and loaded
27
28
using modules. Please check [Modules](../software/modules.md)
28
29
@@ -38,7 +39,7 @@ do more than use the Portal needs to learn.
38
39
39
40
To learn more about Linux, we recommend the following resources:
-[Effective Computation in Physics - Chapter One](https://www.oreilly.com/library/view/effective-computation-in/9781491901564/?sso_link=yes&sso_link_from=pennsylvania-state-university)
43
44
-[Introduction to Using the Shell in an HPC Context by HPC Carpentry](https://www.hpc-carpentry.org/hpc-shell/) which can be followed after [logging onto Roar](connecting.md/#two-ways-to-access) and [accessing the command line](../running-jobs/portal.md#command-line-access).
Copy file name to clipboardExpand all lines: docs/running-jobs/batch-jobs.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,8 @@ job_estimate <submit file>
130
130
which reports the cost in credits.
131
131
For more on `job_estimate`, execute `job_estimate --help`.
132
132
133
+
Additionally, for users who schedule jobs interactively through the portal, an estimate of the credits required for the job is displayed near the Launch button once you select your batch options and partition. This estimate updates dynamically based on your selections, allowing you to understand the approximate credit cost before starting the job.
134
+
133
135
The Slurm command [`sacct`][sacct]
134
136
reports the resources used by a completed batch job,
135
137
which helps users learn what resources to request next time.
Copy file name to clipboardExpand all lines: docs/running-jobs/resource-requests.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,6 +92,9 @@ For credit accounts, it is helpful to estimate how many credits a batch job woul
92
92
job_estimate <submit file>
93
93
```
94
94
95
+
Additionally, for users who schedule jobs interactively through the portal, an estimate of the credits required for the job is displayed near the Launch button once you select your batch options and partition. This estimate updates dynamically based on your selections, allowing you to understand the approximate credit cost before starting the job.
96
+
97
+
95
98
### Selecting nodes, cores, and memory
96
99
97
100
Choosing the right resources is critical for efficiency.
0 commit comments