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/hpc/01_getting_started/01_intro.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
Welcome to the Torch HPC documentation! If you do not have an HPC account, please proceed to the next section that explains how you may be able to get one.
4
4
5
5
:::note
6
-
Please be aware that a requirement of the Torch cluster is that you also have an associated Slurm Account with resources allocated to it. You can learn more about this in the section on [Slurm Accounts](./03_Slurm_Accounts/01_intro_slurm_accounts.mdx)
6
+
Please be aware that a requirement to submit jobs on the Torch cluster is having a `SLURM` account (which is given to you once you are part of an active allocation associated a project within the HPC project management portal) as explained in the section on [Slurm Accounts](./03_Slurm_Accounts/01_intro_slurm_accounts.mdx)
7
7
:::
8
8
9
9
If you are an active user, you can proceed to one of the categories on the left.
Copy file name to clipboardExpand all lines: docs/hpc/01_getting_started/03_Slurm_Accounts/02_hpc_project_management_portal.mdx
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,5 +39,6 @@ How do I:
39
39
-[Request an allocation?](04_requesting_an_allocation.mdx)
40
40
-[Approve an allocation request?](05_approving_an_allocation_request.mdx)
41
41
-[View resources that are available to me?](04_requesting_an_allocation.mdx)
42
+
-[Add publications and grants for your project](06_adding_publications_grants.mdx)
42
43
43
44
An active allocation in the HPC projects portal is needed to perform any work on Torch. The next sections describe the project and allocation request process in detail.
Copy file name to clipboardExpand all lines: docs/hpc/06_tools_and_software/08_utils.mdx
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
3
3
Torch has several utility applications that can give you information related to your account and jobs on the cluster:
4
4
5
-
## myquota
5
+
## `myquota`
6
6
7
-
Users can check their current utilization of quota using the myquota command. The myquota command provides a report of the current quota limits on mounted file systems, the user's quota utilization, as well as the percentage of quota utilization.
7
+
Users can check their current utilization of quota using the `myquota` command. The `myquota` command provides a report of the current quota limits on mounted file sys tems, the user's quota utilization, as well as the percentage of quota utilization.
8
8
9
-
In the following example the user who executes the myquota command is out of inodes in their home directory. The user inode quota limit on the `/home` file system **30.0K inodes** and the user has **33000 inodes**, thus **110%** of the inode quota limit.
9
+
In the following example the user who executes the `myquota` command is out of inodes in their home directory. The user inode quota limit on the `/home` file system **30.0K inodes** and the user has **33000 inodes**, thus **110%** of the inode quota limit.
10
10
```sh
11
11
$ myquota
12
12
Quota Information for NetID
@@ -27,9 +27,9 @@ echo -e "${RED}The following 5 folders are impacting this quota the most.${NC}"
or in your sbatch file you'll need to add a line like:
45
+
or in your `sbatch` file you'll need to add a line like:
46
46
```
47
47
#SBATCH --account=torch_pr_XXX_XXXXX
48
48
```
@@ -52,8 +52,8 @@ Please see [Slurm: Command reference](http://localhost:3000/docs/hpc/submitting_
52
52
53
53
For more information about slurm accounts please see [Slurm Accounts](../01_getting_started/03_Slurm_Accounts/01_intro_slurm_accounts.mdx).
54
54
55
-
## nvidia-smi
56
-
nvidia-smi (NVIDIA System Management Interface) is a command-line utility, based on the NVIDIA Management Library (NVML), used to monitor and manage NVIDIA GPU devices
55
+
## `nvidia-smi`
56
+
`nvidia-smi` (NVIDIA System Management Interface) is a command-line utility, based on the NVIDIA Management Library (NVML), used to monitor and manage NVIDIA GPU devices
57
57
58
58
It will provide detailed information like:
59
59
- GPU utilization
@@ -76,9 +76,9 @@ You can get very detailed information about the GPU with:
76
76
```
77
77
:::
78
78
79
-
## seff
79
+
## `seff`
80
80
81
-
The seff script can be used to display status information about a user’s historical or running jobs.
81
+
The `seff` script can be used to display status information about a user’s historical or running jobs.
82
82
83
83
Here's example output for a job:
84
84
```bash
@@ -95,13 +95,13 @@ Memory Utilized: 50.54 MB
95
95
Memory Efficiency: 4.94% of 1.00 GB
96
96
97
97
```
98
-
As you can see above, seff gives information about CPU and memory efficiency to help you more efficiently use our cluster resources.
98
+
As you can see above, `seff` gives information about CPU and memory efficiency to help you more efficiently use our cluster resources.
99
99
:::tip
100
100
Requesting the minimum resources needed for your job can help it spend less time in the queue.
101
101
:::
102
102
103
103
{/* coming soon
104
-
## rpsquota
104
+
## `rpsquota`
105
105
106
-
rpsquota returns detailed information about how much of your Research Project Space quota you're using (if you have RPS space). To use it just type `rpsquota` in the base RPS directory or give the base RPS path as an input argument like `rpsquota /path/to/rps/space`.
106
+
`rpsquota` returns detailed information about how much of your Research Project Space quota you're using (if you have RPS space). To use it just type `rpsquota` in the base RPS directory or give the base RPS path as an input argument like `rpsquota /path/to/rps/space`.
0 commit comments