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
@@ -28,7 +28,8 @@ Most HPC systems follow a similar architecture composed of three main components
28
28
29
29
Conceptual structure of an HPC cluster
30
30
31
-
Users typically interact only with the login node. After a job is submitted, the scheduler assigns it to available compute nodes, where it runs—often in parallel across multiple CPUs or nodes.
31
+
Users typically interact only with the login node. After a job is submitted, the scheduler assigns it to available
32
+
compute nodes, where it runs—often in parallel across multiple CPUs or nodes.
32
33
33
34
.. warning::
34
35
@@ -52,9 +53,7 @@ This separation allows HPC systems to efficiently share resources among many use
52
53
:width:100%
53
54
:align:center
54
55
55
-
Overview of the HPC workflow for running an energy optimization model.
56
-
The user prepares and submits a job from a local machine, which is scheduled
57
-
and executed on compute nodes. Results are then retrieved back to the local environment.
56
+
Overview of the HPC workflow
58
57
59
58
*************
60
59
Job Lifecycle
@@ -66,7 +65,8 @@ When a job is submitted to the scheduler (such as Slurm), it goes through severa
66
65
- **RUNNING**: the job is actively executing on compute nodes
67
66
- **COMPLETED**: the job has finished successfully (or terminated with an error)
68
67
69
-
Understanding these states helps explain why jobs may not start immediately—waiting in the queue is normal and depends on factors such as resource availability and system load.
68
+
Understanding these states helps explain why jobs may not start immediately—waiting in the queue is normal and
69
+
depends on factors such as resource availability and system load.
70
70
71
71
.. figure:: ../img/tutorials/job_lifecycle.png
72
72
:width:100%
@@ -83,163 +83,180 @@ Connecting to the Cluster
83
83
Login
84
84
-----
85
85
86
+
You need access rights (username/password) for your HPC cluster, which you should request from the HPC administrator.
87
+
Once you have the necessary rights, you can make an SSH connection from your terminal to the HPC login node.
86
88
87
89
.. code-block:: bash
88
90
89
91
ssh username@cluster.address
90
92
93
+
On Windows, we recommend using PuTTY as an SSH client. You can install it from the Windows
94
+
Store or from the `PuTTY site <https://putty.software/>`_.
91
95
92
96
File Transfer
93
97
-------------
94
98
99
+
You can use scp to transfer files between your local system and the login node.
0 commit comments