PyKeOps/fr: Difference between revisions
(Created page with "3. Installez une version de PyKeOps avec ses dépendances Python. {{Commands |prompt=(pykeops_env) [name@server ~] |pip install --no-index --upgrade pip |pip install --no-index pykeops{{=}}{{=}}X.Y.Z }} where <code>X.Y.Z</code> is the exact desired version, for instance <code>2.2.3</code>. You can omit to specify the version in order to install the latest one available from the wheelhouse.") |
No edit summary |
||
(24 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<languages /> | <languages /> | ||
__FORCETOC__ | __FORCETOC__ | ||
La bibliothèque [https://www.kernel-operations.io/keops/index.html KeOps] permet de calculer des réductions de tableaux de grande taille dont les entrées sont des formules mathématiques ou des réseaux de neurones. Elle combine des routines C++ efficaces avec un moteur de différentiation automatique et peut être utilisée avec [[Python/fr|Python]] ([https://numpy.org/doc/stable/ NumPy], [[PyTorch/fr|PyTorch]]), [[MATLAB/fr|MATLAB]] et [[R/fr|R]]. | |||
= Versions disponibles = | |||
Les versions disponibles sur nos grappes sont des wheels Python. Voyez la liste en lançant <code>avail_wheels</code>. | |||
{{Command | {{Command | ||
|avail_wheels pykeops | |avail_wheels pykeops | ||
Line 15: | Line 12: | ||
pykeops 2.2.3 py3 generic | pykeops 2.2.3 py3 generic | ||
}} | }} | ||
= Installation dans un environnement virtuel Python = | |||
1. Chargez les dépendances. | |||
1. | |||
{{Command|module load StdEnv/2023 python/3.11}} | {{Command|module load StdEnv/2023 python/3.11}} | ||
2. Créez et activez un environnement virtuel Python. | 2. Créez et activez un [[Python/fr#Créer_et_utiliser_un_environnement_virtuel | environnement virtuel Python]]. | ||
{{Commands | {{Commands | ||
|virtualenv --no-download ~/pykeops_env | |virtualenv --no-download ~/pykeops_env | ||
Line 37: | Line 31: | ||
|pip install --no-index pykeops{{=}}{{=}}X.Y.Z | |pip install --no-index pykeops{{=}}{{=}}X.Y.Z | ||
}} | }} | ||
où <code>X.Y.Z</code> est le numéro de la version, par exemple <code>2.2.3</code>. | |||
Pour installer la plus récente version, n'entrez pas de numéro. | |||
4. Validez. | |||
4. | |||
{{Commands | {{Commands | ||
|prompt=(pykeops_env) [name@server ~] | |prompt=(pykeops_env) [name@server ~] | ||
|python -c 'import pykeops; pykeops.test_numpy_bindings()' | |python -c 'import pykeops; pykeops.test_numpy_bindings()' | ||
}} | }} | ||
5. Gelez l'environnement et l'ensemble des exigences. | |||
5. | |||
{{Command | {{Command | ||
|prompt=(pykeops_env) [name@server ~] | |prompt=(pykeops_env) [name@server ~] | ||
|pip freeze --local > ~/pykeops-2.2.3-requirements.txt | |pip freeze --local > ~/pykeops-2.2.3-requirements.txt | ||
}} | }} | ||
6. Supprimez l'environnement virtuel local. | |||
6. | |||
{{Command | {{Command | ||
|prompt=(pykeops_env) [name@server ~] | |prompt=(pykeops_env) [name@server ~] | ||
|deactivate && rm -r ~/pykeops_env | |deactivate && rm -r ~/pykeops_env | ||
}} | }} | ||
= Exécution = | |||
Vous pouvez exécuter PyKeOps sur un CPU ou un GPU. | |||
1. Préparez votre script d'exécution. | |||
1. | |||
<tabs> | <tabs> | ||
<tab name="CPU"> | <tab name="CPU"> | ||
Line 81: | Line 66: | ||
|contents= | |contents= | ||
#!/bin/bash | #!/bin/bash | ||
#SBATCH --account=def-someprof # adjust this to match the accounting group you are using to submit jobs | #SBATCH --account=def-someprof # adjust this to match the accounting group you are using to submit jobs | ||
Line 88: | Line 72: | ||
#SBATCH --mem-per-cpu=4G # adjust this according to the memory you need per cpu | #SBATCH --mem-per-cpu=4G # adjust this according to the memory you need per cpu | ||
# Load modules dependencies. | # Load modules dependencies. | ||
module load StdEnv/2023 python/3.11 | module load StdEnv/2023 python/3.11 | ||
# create the virtual environment on the compute node: | # create the virtual environment on the compute node: | ||
virtualenv --no-download $SLURM_TMPDIR/env | virtualenv --no-download $SLURM_TMPDIR/env | ||
source $SLURM_TMPDIR/env/bin/activate | source $SLURM_TMPDIR/env/bin/activate | ||
pip install --no-index --upgrade pip | pip install --no-index --upgrade pip | ||
pip install --no-index -r pykeops-2.2.3-requirements.txt | pip install --no-index -r pykeops-2.2.3-requirements.txt | ||
# test that everything is OK | # test that everything is OK | ||
python -c 'import pykeops; pykeops.test_numpy_bindings()' | python -c 'import pykeops; pykeops.test_numpy_bindings()' | ||
Line 115: | Line 92: | ||
|contents= | |contents= | ||
#!/bin/bash | #!/bin/bash | ||
#SBATCH --account=def-someprof # adjust this to match the accounting group you are using to submit jobs | #SBATCH --account=def-someprof # adjust this to match the accounting group you are using to submit jobs | ||
Line 123: | Line 99: | ||
#SBATCH --gpus=1 | #SBATCH --gpus=1 | ||
# Load modules dependencies. The custom-ctypes is critical here. | # Load modules dependencies. The custom-ctypes is critical here. | ||
module load StdEnv/2023 python/3.11 cuda/12 custom-ctypes | module load StdEnv/2023 python/3.11 cuda/12 custom-ctypes | ||
# create the virtual environment on the compute node: | # create the virtual environment on the compute node: | ||
virtualenv --no-download $SLURM_TMPDIR/env | virtualenv --no-download $SLURM_TMPDIR/env | ||
source $SLURM_TMPDIR/env/bin/activate | source $SLURM_TMPDIR/env/bin/activate | ||
pip install --no-index --upgrade pip | pip install --no-index --upgrade pip | ||
pip install --no-index -r pykeops-2.2.3-requirements.txt | pip install --no-index -r pykeops-2.2.3-requirements.txt | ||
# test that nvrtc binding are also found | # test that nvrtc binding are also found | ||
python -c 'import pykeops; pykeops.test_numpy_bindings()' | python -c 'import pykeops; pykeops.test_numpy_bindings()' | ||
Line 145: | Line 114: | ||
</tab> | </tab> | ||
</tabs> | </tabs> | ||
2. Pour savoir si votre script contient des erreurs, testez-le avec une [[Running_jobs/fr#Tâches_interactives|tâche interactive]]. | |||
2. | |||
3. Soumettez la tâche à l'ordonnanceur. | |||
{{Command | {{Command | ||
|sbatch submit-keops.sh | |sbatch submit-keops.sh | ||
}} | }} | ||
Latest revision as of 19:03, 30 September 2024
La bibliothèque KeOps permet de calculer des réductions de tableaux de grande taille dont les entrées sont des formules mathématiques ou des réseaux de neurones. Elle combine des routines C++ efficaces avec un moteur de différentiation automatique et peut être utilisée avec Python (NumPy, PyTorch), MATLAB et R.
Versions disponibles
Les versions disponibles sur nos grappes sont des wheels Python. Voyez la liste en lançant avail_wheels
.
[name@server ~]$ avail_wheels pykeops
name version python arch
------- --------- -------- -------
pykeops 2.2.3 py3 generic
Installation dans un environnement virtuel Python
1. Chargez les dépendances.
[name@server ~]$ module load StdEnv/2023 python/3.11
2. Créez et activez un environnement virtuel Python.
[name@server ~]$ virtualenv --no-download ~/pykeops_env
[name@server ~]$ source ~/pykeops_env/bin/activate
3. Installez une version de PyKeOps avec ses dépendances Python.
(pykeops_env) [name@server ~] pip install --no-index --upgrade pip
(pykeops_env) [name@server ~] pip install --no-index pykeops==X.Y.Z
où X.Y.Z
est le numéro de la version, par exemple 2.2.3
.
Pour installer la plus récente version, n'entrez pas de numéro.
4. Validez.
(pykeops_env) [name@server ~] python -c 'import pykeops; pykeops.test_numpy_bindings()'
5. Gelez l'environnement et l'ensemble des exigences.
(pykeops_env) [name@server ~] pip freeze --local > ~/pykeops-2.2.3-requirements.txt
6. Supprimez l'environnement virtuel local.
(pykeops_env) [name@server ~] deactivate && rm -r ~/pykeops_env
Exécution
Vous pouvez exécuter PyKeOps sur un CPU ou un GPU.
1. Préparez votre script d'exécution.
#!/bin/bash
#SBATCH --account=def-someprof # adjust this to match the accounting group you are using to submit jobs
#SBATCH --time=08:00:00 # adjust this to match the walltime of your job
#SBATCH --cpus-per-task=4 # adjust this to match the number of cores to use
#SBATCH --mem-per-cpu=4G # adjust this according to the memory you need per cpu
# Load modules dependencies.
module load StdEnv/2023 python/3.11
# create the virtual environment on the compute node:
virtualenv --no-download $SLURM_TMPDIR/env
source $SLURM_TMPDIR/env/bin/activate
pip install --no-index --upgrade pip
pip install --no-index -r pykeops-2.2.3-requirements.txt
# test that everything is OK
python -c 'import pykeops; pykeops.test_numpy_bindings()'
#!/bin/bash
#SBATCH --account=def-someprof # adjust this to match the accounting group you are using to submit jobs
#SBATCH --time=08:00:00 # adjust this to match the walltime of your job
#SBATCH --cpus-per-task=4 # adjust this to match the number of cores to use
#SBATCH --mem-per-cpu=4G # adjust this according to the memory you need per cpu
#SBATCH --gpus=1
# Load modules dependencies. The custom-ctypes is critical here.
module load StdEnv/2023 python/3.11 cuda/12 custom-ctypes
# create the virtual environment on the compute node:
virtualenv --no-download $SLURM_TMPDIR/env
source $SLURM_TMPDIR/env/bin/activate
pip install --no-index --upgrade pip
pip install --no-index -r pykeops-2.2.3-requirements.txt
# test that nvrtc binding are also found
python -c 'import pykeops; pykeops.test_numpy_bindings()'
2. Pour savoir si votre script contient des erreurs, testez-le avec une tâche interactive.
3. Soumettez la tâche à l'ordonnanceur.
[name@server ~]$ sbatch submit-keops.sh