Skip to content
Snippets Groups Projects
Commit 4f461bbe authored by Maria d'Errico's avatar Maria d'Errico
Browse files

Add multicpus and multigpus examples

parent 376fbdba
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,7 @@ After connecting from a terminal to the ScienceCluster, work through the followi
# activate the virtual environment
source activate tfbenchmark
source activate lightning
```
#### Monitoring using screen
......
#!/bin/bash
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=2
#SBATCH --mem=3200
#SBATCH --time=23:00:00
module load anaconda3
source activate lightning
python Lightning_Tutorial_Jupyter.py 2 5 500 multi_cpus
#!/bin/bash
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=1
#SBATCH --mem=32000
#SBATCH --gpus=V100:2
#SBATCH --time=23:00:00
module load anaconda3
source activate lightning
python Lightning_Tutorial_Jupyter.py 1 5 500 multi_gpus
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment