Skip to content

Commit 3e3b96f

Browse files
Fix spelling
1 parent 943dfc2 commit 3e3b96f

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

.wordlist.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,3 +1119,5 @@ Ctrl
11191119
rescaled
11201120
UIs
11211121
annot
1122+
natively
1123+
varanoi

docs/day4/gpu.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Using GPUs with Python
1818
Introduction
1919
------------
2020

21-
In order to understand the capabilities of a GPU, it is instructive to compare a pure CPU architecture with a GPU based architecture. Here, there is a schemematics of the former:
21+
In order to understand the capabilities of a GPU, it is instructive to compare a pure CPU architecture with a GPU based architecture. Here, there is a schematics of the former:
2222

2323
.. figure:: ../img/AMD-Zen4-CPU-b-cn1701.png
2424
:align: center
@@ -51,7 +51,7 @@ One possible layout (Kebnekaise, AMD Zen4 node with L40s GPU) is as follows:
5151

5252
Schematics of a hybrid CPU-GPU architecture. A GPU L40s card is attached to a NUMA island which in turn contains 24 cores (AMD Zen4 CPU node with 48 cores total). The NUMA island and the GPUs are connected through a PCI-E interconnect which makes the data transfer between both components rather slow.
5353

54-
We can characterize the CPU and GPU performance with two quantities: the **latency** and the **througput**.
54+
We can characterize the CPU and GPU performance with two quantities: the **latency** and the **throughput**.
5555

5656
- **Latency** refers to the time spent in a sole computation.
5757
- **Throughput** denotes the number of computations that can be performed in parallel. Then, we can say that a CPU has low latency (able to do fast computations) but low throughput (only a few computations simultaneously).

docs/day4/ml.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ Scikit-learn provides a comprehensive suite of tools for building and evaluating
397397

398398
Try running ``titanic_sklearn.ipynb`` that can be found in ``Exercises/day4/MLDL`` directory, on an interactive CPU node. Also note that datasets are kept in ``Exercises/day4/MLDL/datasets`` directory. Give the **full path** to these datasets for this and subsequent Exercises.
399399

400-
Run it on a jupyter notebook on an interactive CPU node. An interative GPU node will also do.
400+
Run it on a jupyter notebook on an interactive CPU node. An interactive GPU node will also do.
401401

402402
Load the correct modules that contain scikit-learn, numpy, seaborn, pandas, matplotlib and jupyter libraries before starting the jupyter notebook. Users on NSC and PDC can build their own venvs.
403403
Use ``%matplotlib inline`` in jupyter to see the plots inline.
@@ -1398,6 +1398,6 @@ Exercises
13981398

13991399
- At all clusters you will find PyTorch, TensorFlow, Scikit-learn under different modules, except Tetralith (NSC).
14001400
- When in doubt, search your modules and its correct version using ``module spider``. If you still wished to have the correct versions for each cluster, check the `summary page <https://uppmax.github.io/HPC-python/summary2.html#summary-day2>`_.
1401-
- If you plan to use mutiple libraries with complex dependencies, it is recommended to use a virtual environment and pip install your libraries.
1401+
- If you plan to use multiple libraries with complex dependencies, it is recommended to use a virtual environment and pip install your libraries.
14021402
- Always run heavy ML/DL jobs on compute nodes and not on login nodes. For development purpose, you can use an interactive session on a compute node.
14031403

docs/extra/isolated_deeper.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ User
6767
....
6868

6969
- Create an environment based on dependencies given in an environment file
70-
- This can be done in new virtual environment or as a genera installtion locally (not activating any environment
70+
- This can be done in new virtual environment or as a genera installation locally (not activating any environment
7171

7272
.. code-block:: console
7373

0 commit comments

Comments
 (0)