Skip to content

Commit a20e153

Browse files
authored
Merge pull request #42 from calculquebec/renommer
Enlever cq-formation- partout
2 parents ef3ce74 + 30ee1cc commit a20e153

17 files changed

Lines changed: 26 additions & 38 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Matériel pour la formation CIP201
22

3-
[Site Web](https://calculquebec.github.io/cq-formation-cip201/)
3+
[Site Web](https://calculquebec.github.io/cip201/)
44

55
## État
66

doc/en/index.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ The next section introduces the two **types of compute jobs**. :doc:`Serial jobs
1919
<task-types/parallel>` deserve a more in-depth presentation, including the
2020
differences between multi-threaded and MPI programs. Data parallelism is briefly
2121
discussed and is the topic of a subsequent workshop, `Managing large batches of
22-
jobs <https://calculquebec.github.io/cq-formation-cip202/en/index.html>`__
23-
(CIP202).
22+
jobs <https://calculquebec.github.io/cip202/en/index.html>`__ (CIP202).
2423

2524
**Estimating the resources required** for a compute job can be challenging! This
2625
section covers compute :doc:`time <resources/time>`, :doc:`memory
@@ -45,10 +44,9 @@ facilitates job monitoring.
4544
exercises are in your home directory on the platform.
4645

4746
If you follow this workshop on your own, you can download the `the necessary
48-
files <https://github.com/calculquebec/cq-formation-cip201>`__ and do the
49-
exercises on any Calcul Québec or Digital Research Alliance of Canada
50-
cluster. Your jobs’ wait time, however, will be longer than on the cloud
51-
platform.
47+
files <https://github.com/calculquebec/cip201>`__ and do the exercises on
48+
any Calcul Québec or Digital Research Alliance of Canada cluster. Your jobs’
49+
wait time, however, will be longer than on the cloud platform.
5250

5351
.. toctree::
5452
:caption: The job scheduler

doc/en/monitoring/interactive-sessions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Demonstration
3030
.. code-block:: console
3131
:emphasize-lines: 4
3232
33-
[alice@narval1 ~]$ cd ~/cq-formation-cip201/lab/pi-multi-threaded
33+
[alice@narval1 ~]$ cd ~/cip201-main/lab/pi-multi-threaded
3434
[alice@narval1 ~]$ make
3535
make: Nothing to be done for 'default'.
3636
[alice@narval1 pi-multi-threaded]$ salloc --nodes=1 --exclusive --mem=0 --time=3:00:00

doc/en/resources/cpu.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,7 @@ Exercise
169169

170170
**Instructions**
171171

172-
#. Go to the exercise directory with ``cd
173-
~/cq-formation-cip201-main/lab/gmx-scaling``.
172+
#. Go to the exercise directory with ``cd ~/cip201-main/lab/gmx-scaling``.
174173
#. Prepare the input files with ``bash gmx-prepare.sh``.
175174
#. Edit the job script with ``nano gmx-job.sh``. Ask for 1, 2, 4, or 8 CPU
176175
cores with the ``--cpus-per-task`` option.

doc/en/resources/memory.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Exercise
110110

111111
**Objective:** cause an out-of-memory situation in a job.
112112

113-
#. Go to the exercise directory with ``cd ~/cq-formation-cip201-main/lab/sort``.
113+
#. Go to the exercise directory with ``cd ~/cip201-main/lab/sort``.
114114
#. If need be, (re)compile the ``bubble`` and ``quick`` programs with the
115115
``make`` command.
116116
#. Edit ``test.sh`` to request ``--mem=400M`` (only 400 mebibytes).

doc/en/resources/time.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ algorithms, such as how we intuitively sort playing cards, have an
112112
thus much faster as the amount of data increases.
113113

114114
#. Go to the exercise directory with
115-
``cd ~/cq-formation-cip201-main/lab/sort``.
115+
``cd ~/cip201-main/lab/sort``.
116116
#. Compile the ``bubble`` and ``quick`` programs with the ``make`` command.
117117
#. Edit ``test.sh`` to add ``time -p`` before the ``./bubble`` and ``./quick``
118118
commands.

doc/en/slurm/scripts.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ Exercise - Simple script
2525
------------------------
2626

2727
#. Log in to the virtual cluster with ``ssh login1``.
28-
#. Go to the exercise directory with
29-
``cd ~/cq-formation-cip201-main/lab/script``.
28+
#. Go to the exercise directory with ``cd ~/cip201-main/lab/script``.
3029
#. In the ``simple.sh`` file, edit the ``#SBATCH`` options according to the
3130
instructions there:
3231

doc/en/task-types/parallel.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,7 @@ Exercise
144144

145145
**Instructions**
146146

147-
#. Go to the exercise directory with ``cd
148-
~/cq-formation-cip201-main/lab/pi-multi-threaded``.
147+
#. Go to the exercise directory with ``cd ~/cip201-main/lab/pi-multi-threaded``.
149148
#. Compile the ``pi`` program with the ``make`` command.
150149
#. Start an interactive job with ``salloc [...] --time=00:10:00``. Replace
151150
``[...]`` by the parallelism options necessary for a multi-threaded job and
@@ -315,8 +314,7 @@ Exercise
315314

316315
**Instructions**
317316

318-
#. Go to the exercise directory with ``cd
319-
~/cq-formation-cip201-main/lab/pi-mpi``.
317+
#. Go to the exercise directory with ``cd ~/cip201-main/lab/pi-mpi``.
320318
#. Compile the ``pi`` program with the ``make`` command.
321319
#. Start an interactive job with ``salloc [...] --time=00:10:00``.
322320
Replace ``[...]`` by the parallelism options necessary for an MPI program

doc/en/task-types/serial.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,7 @@ Exercise
165165

166166
#. If you are not already on the login node ``login1``, log in with
167167
``ssh login1``.
168-
#. Go to the exercise directory with
169-
``cd ~/cq-formation-cip201-main/lab/fibonacci-serial``.
168+
#. Go to the exercise directory with ``cd ~/cip201-main/lab/fibonacci-serial``.
170169
#. Compile the ``fibo`` program with the ``make`` command.
171170
#. Start an interactive job with ``salloc --cpus-per-task=2
172171
--time=00:10:00``.

doc/fr/index.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ La section suivante présente les deux **types de tâches de calcul**. Les
2121
discussion plus approfondie, incluant la différence entre les programmes
2222
parallèles multi-fils et MPI. Le parallélisme de données est mentionné
2323
brièvement et fait l’objet d’un atelier subséquent, `Gestion de grands lots de
24-
tâches <https://calculquebec.github.io/cq-formation-cip202/fr/index.html>`__
25-
(CIP202).
24+
tâches <https://calculquebec.github.io/cip202/fr/index.html>`__ (CIP202).
2625

2726
**Estimer les ressources requises** pour une tâche de calcul peut être un défi !
2827
Cette section discute du :doc:`temps <resources/time>` de calcul, de la
@@ -49,10 +48,9 @@ utilisateurs <monitoring/user-portal>` qui facilite le suivi des tâches.
4948
pour les exercices sont dans votre répertoire personnel sur la plateforme.
5049

5150
Si vous suivez cet atelier par vous-même, vous pouvez télécharger `les
52-
fichiers nécessaires
53-
<https://github.com/calculquebec/cq-formation-cip201>`__ et réaliser les
54-
exercices sur n’importe quelle grappe de Calcul Québec ou de l’Alliance de
55-
recherche numérique du Canada. Le temps d’attente pour l’exécution des
51+
fichiers nécessaires <https://github.com/calculquebec/cip201>`__ et réaliser
52+
les exercices sur n’importe quelle grappe de Calcul Québec ou de l’Alliance
53+
de recherche numérique du Canada. Le temps d’attente pour l’exécution des
5654
tâches sera toutefois plus long que sur la plateforme infonuagique.
5755

5856
.. toctree::

0 commit comments

Comments
 (0)