Skip to content

Commit ddb2e98

Browse files
Fix spelling
1 parent 3e3b96f commit ddb2e98

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/day2/IDEs.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ Main panes and useful panels
10081008

10091009
**For Jupyter Notebooks (and a much safer option)** 🧪
10101010

1011-
* You need to start the server on the HPC resource first, preferrably on a compute node.
1011+
* You need to start the server on the HPC resource first, preferably on a compute node.
10121012
* Copy the jupyter server URL which goes something like ``http://s193.uppmax.uu.se:8888/tree?token=xxx`` (where s193 is Snowy node. Other HPCs will have similar URLs), click on ``Select Kernel`` on VSCode and select ``Existing Jupyter Server``. Past the URL here and confirm your choice.
10131013
* This only works if you have the jupyter extension installed on your local VSCode.
10141014
* The application will automatically perform port forwarding to your local machine from the compute nodes over certain ports. Check the Terminal->Ports tab to see the correct url to open in your browser.
@@ -1032,7 +1032,7 @@ Exercises
10321032
* Create a Virtual env using your faviroute package manager and install the packages.
10331033
* For an extra challenge: Run the same code in .ipynb format in your IDE. This requires you to install jupyter notebook in your virtual environment.
10341034

1035-
.. admonition:: Solving linear system of equations and optimiztion task using Scipy
1035+
.. admonition:: Solving linear system of equations and optimization task using Scipy
10361036
:class: dropdown
10371037

10381038
Install ``Scipy`` for the following example.

docs/day2/IDEs_cmd.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ VS Code can be downloaded and installed on your local machine from the `VS Code
638638
However, VS Code is best used on your local machine, as it is a resource-intensive application that can slow down the ThinLinc interface. The VS Code Server can be installed on all the HPCs that give your the ability to run your code on the HPCs but edit it on your local machine.
639639
Similarly, you can also install your faviroute extensions on the HPCs and use them on your local machine. Care should be taken while assigning the correct installation directories for the extensions because otherwise they get installed in home directory and eat up all the space.
640640

641-
**Installed on HPC clusters**
641+
**Installed on HPC **
642642
643643
- Tetralith: ``VSCode/latest-bdist``
644644
- Start with ``code``
@@ -649,7 +649,7 @@ Similarly, you can also install your faviroute extensions on the HPCs and use th
649649
- Cosmos: system-installed (no module needed)
650650
- Start with ``code``
651651

652-
For the HPC slusters below you need to connect from a local VSCode client (works also for all clusters)
652+
For the HPC slusters below you need to connect from a local VSCode client (works also for all )
653653

654654
- Dardel
655655
- Kebnekaise
@@ -665,7 +665,7 @@ Install VS Code on your local machine and follow the steps below to connect to t
665665

666666
.. figure:: ../img/vscode_remote_tunnels_before_install.png
667667

668-
Since most clusters now has added the TOTP feature you have to make another setting as well.
668+
Since most now has added the TOTP feature you have to make another setting as well.
669669

670670
- Go to settings (the lower-left corner wheel):
671671

docs/day2/interactive.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Any longer, resource-intensive, or parallel jobs must be run through a **batch s
7575

7676
- Demanding work (CPU or Memory intensive) should be done on the compute nodes.
7777
- If you need live interaction you should start an "interactive session"
78-
- On Cosmos (LUNARC), Dardel (PDC), Alvis (C3SE), and Kebnekaise (HPC2N) it can be done graphically with the Desktop-On-Demand tool ``GfxLauncher`` or portal.
78+
- On Cosmos (LUNARC), Dardel (PDC), Alvis (C3SE), and Kebnekaise (HPC2N) it can be done ly with the Desktop-On-Demand tool ``GfxLauncher`` or portal.
7979
- Otherwise the terminal approach will work in all centers.
8080

8181
The different way HPC2N, UPPMAX, LUNARC, NSC, PDC, and C3SE provide for an interactive session

docs/day2/interactive_old.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Any longer, resource-intensive, or parallel jobs must be run through a **batch s
7575

7676
- Demanding work (CPU or Memory intensive) should be done on the compute nodes.
7777
- If you need live interaction you should start an "interactive session"
78-
- On Cosmos (LUNARC), Dardel (PDC), Alvis (C3SE), and Kebnekaise (HPC2N) it can be done graphically with the Desktop-On-Demand tool ``GfxLauncher`` or portal.
78+
- On Cosmos (LUNARC), Dardel (PDC), Alvis (C3SE), and Kebnekaise (HPC2N) it can be done ly with the Desktop-On-Demand tool ``GfxLauncher`` or portal.
7979
- Otherwise the terminal approach will work in all centers.
8080

8181
The different way HPC2N, UPPMAX, LUNARC, NSC, PDC, and C3SE provide for an interactive session
@@ -689,7 +689,7 @@ Conclusion
689689

690690

691691
At centres that have OpenOnDemand installed, you do not have to submit a batch job, but can run directly on the already allocated resources (see interactive jobs).
692-
OpenOnDemand is a good option for interactive tasks, graphical applications/visualization, and simpler job submittions. It can also be more user-friendly.
692+
OpenOnDemand is a good option for interactive tasks, applications/visualization, and simpler job submissions. It can also be more user-friendly.
693693
Regardless, there are many situations where submitting a batch job is the best option instead, including when you want to run jobs that need many resources (time, memory, multiple cores, multiple GPUs) or when you run multiple jobs concurrently or in a specified succession, without need for manual intervention. Batch jobs are often also preferred for automation (scripts) and reproducibility. Many types of application software fall into this category.
694694
At centres that have ThinLinc you can usually submit MATLAB jobs to compute resources from within MATLAB.
695695

docs/day2/may2024/install_packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ As an example, maybe you have been using TensorFlow 1.x.x for your project and n
2929
- Isolated environments lets you create separate workspaces for different versions of Python and/or different versions of packages.
3030
- You can activate and deactivate them one at a time, and work as if the other workspace does not exist.
3131

32-
There are different tools for creating an isolated environement, but they all have some things in common.
32+
There are different tools for creating an isolated environment, but they all have some things in common.
3333

3434
At UPPMAX, HPC2N, and LUNARC (and most other Swedish HPC centers that use modules) the workflow is:
3535

docs/day2/ondemand-desktop.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ Most settings are the same, with exception of the "Resource" or "Node Type"/"Cor
315315

316316

317317
- At centres that have OpenOnDemand installed, you do not have to submit a batch job, but can run directly on the already allocated resources
318-
- OpenOnDemand is a good option for interactive tasks, graphical applications/visualization, and simpler job submittions. It can also be more user-friendly.
318+
- OpenOnDemand is a good option for interactive tasks, graphical applications/visualization, and simpler job submissions. It can also be more user-friendly.
319319
- Regardless, there are many situations where submitting a batch job is the best option instead, including when you want to run jobs that need many resources (time, memory, multiple cores, multiple GPUs) or when you run multiple jobs concurrently or in a specified succession, without need for manual intervention. Batch jobs are often also preferred for automation (scripts) and reproducibility. Many types of application software fall into this category.
320320
- At centres that have ThinLinc you can usually submit MATLAB jobs to compute resources from within MATLAB.
321321

0 commit comments

Comments
 (0)