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/source/HPC_systems.rst
+109-3Lines changed: 109 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -224,16 +224,122 @@ If the above works, we can then continue building X-PSI:
224
224
git clone https://github.com/xpsi-group/xpsi.git
225
225
cd xpsi
226
226
CC=$(which cc) pip install .
227
-
227
+
228
228
Batch usage
229
229
^^^^^^^^^^^
230
230
231
231
For example job scripts, see the Helios example in :ref:`example_job`.
232
232
233
+
Jean-Zay (IDRIS)
234
+
----------------
235
+
236
+
`Jean-Zay <http://www.idris.fr/eng/jean-zay/index.html>`_ is the French national supercomputer.
237
+
238
+
Installation
239
+
^^^^^^^^^^^^
240
+
241
+
To install X-PSI in Jean-Zay, you need to check out if you have different projects for your IDRIS account, with the command ``idrproj``. The installation will be done only in your currently working project, so you may have to switch between your projects and redo the complete installation.
242
+
243
+
For any installation, it is preferable to process in the ``$WORK`` folder of your project, because of the small storage of the ``$HOME``
244
+
245
+
First prepare your modules:
246
+
247
+
.. code-block:: bash
248
+
249
+
module purge
250
+
module load miniforge/24.9.0
251
+
module load cmake/3.21.3
252
+
module load intel-all/19.0.4
253
+
module gsl/2.5
254
+
255
+
We intend here to install X-PSI with Intel compilers. It is preferable to avoid using the recent Cmake versions because of their dependencies with the GCC compiler.
256
+
257
+
Now, let's prepare the conda environment for X-PSI, by installing some of the required packages. However, they must be mentioned explicitly:
0 commit comments