PennyLane/fr: Difference between revisions

Jump to navigation Jump to search
Updating to match new version of source page
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 45: Line 45:
   |contents=
   |contents=
#!/bin/bash
#!/bin/bash
#SBATCH --account=def-someuser #Modify with your account name
#SBATCH --account=def-someuser # Indiquez le nom de votre compte
#SBATCH --time=00:15:00        #Modify as needed
#SBATCH --time=00:15:00        # Modifiez s'il y a lieu
#SBATCH --cpus-per-task=1      #Modify as needed
#SBATCH --cpus-per-task=1      # Modifiez s'il y a lieu
#SBATCH --mem-per-cpu=1G      #Modify as needed
#SBATCH --mem-per-cpu=1G      # Modifiez s'il y a lieu


# Load modules dependencies.
# Chargez les dépendances des modules.
module load StdEnv/2023 gcc python/3.11  
module load StdEnv/2023 gcc python/3.11  


# Generate your virtual environment in $SLURM_TMPDIR.                                                                                                        
# Générez l'environnement virtuel dans $SLURM_TMPDIR.                                                                                                      
virtualenv --no-download ${SLURM_TMPDIR}/env                                                                                                                   
virtualenv --no-download ${SLURM_TMPDIR}/env                                                                                                                   
source ${SLURM_TMPDIR}/env/bin/activate   
source ${SLURM_TMPDIR}/env/bin/activate   


# Install Pennylane and its dependencies.                                                                                                                                                                                                                                                                                     
# Installez Pennylane et ses dépendances.                                                                                                                                                                                                                                                                                     
pip install --no-index --upgrade pip                                                                                                                             
pip install --no-index --upgrade pip                                                                                                                             
pip install --no-index --requirement ~/pennylane_requirements.txt
pip install --no-index --requirement ~/pennylane_requirements.txt


#Edit with your Pennylane program                                                                                                                                                                        
# Modifiez votre programme PennyLane.                                                                                                                                                                        
python pennylane_example.py
python pennylane_example.py
}}
}}
38,760

edits

Navigation menu