Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZIH
hpcsupport
hpc-compendium
Commits
d98d3720
Commit
d98d3720
authored
1 year ago
by
Natalie Breidenbach
Browse files
Options
Downloads
Patches
Plain Diff
Update data_analytics_with_python.md
parent
29d58273
No related branches found
No related tags found
2 merge requests
!938
Automated merge from preview to main
,
!936
Update to Five-Cluster-Operation
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc.zih.tu-dresden.de/docs/software/data_analytics_with_python.md
+6
-7
6 additions, 7 deletions
...tu-dresden.de/docs/software/data_analytics_with_python.md
with
6 additions
and
7 deletions
doc.zih.tu-dresden.de/docs/software/data_analytics_with_python.md
+
6
−
7
View file @
d98d3720
...
...
@@ -18,9 +18,9 @@ a research group and/or teaching class. For this purpose,
The interactive Python interpreter can also be used on ZIH systems via an interactive job:
```
console
marie@login$
srun
--partition
=
haswell
--gres
=
gpu:1
--ntasks
=
1
--cpus-per-task
=
7
--pty
--mem-per-cpu
=
8000 bash
marie@
haswell
$
module load Python
marie@
haswell
$
python
marie@login$
srun
--gres
=
gpu:1
--ntasks
=
1
--cpus-per-task
=
7
--pty
--mem-per-cpu
=
8000 bash
marie@
compute
$
module load Python
marie@
compute
$
python
Python 3.8.6 (default, Feb 17 2021, 11:48:51)
[GCC 10.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
...
...
@@ -50,7 +50,7 @@ threads that can be used in parallel depends on the number of cores (parameter `
within the Slurm request, e.g.
```
console
marie@login$
srun
--partition
=
haswell
--cpus-per-task
=
4
--mem
=
2G
--hint
=
nomultithread
--pty
--time
=
8:00:00 bash
marie@login$
srun
--cpus-per-task
=
4
--mem
=
2G
--hint
=
nomultithread
--pty
--time
=
8:00:00 bash
```
The above request allows to use 4 parallel threads.
...
...
@@ -239,7 +239,7 @@ from distributed import Client
from
dask_jobqueue
import
SLURMCluster
from
dask
import
delayed
cluster
=
SLURMCluster
(
queue
=
'
alpha
'
,
cluster
=
SLURMCluster
(
cores
=
8
,
processes
=
2
,
project
=
'
p_number_crunch
'
,
...
...
@@ -294,7 +294,7 @@ for the Monte-Carlo estimation of Pi.
#create a Slurm cluster, please specify your project
cluster = SLURMCluster(
queue='alpha',
cores=2, project='p_number_crunch', memory="8GB", walltime="00:30:00", extra=['--resources gpu=1'], scheduler_options={"dashboard_address": f":{portdash}"})
cluster = SLURMCluster(cores=2, project='p_number_crunch', memory="8GB", walltime="00:30:00", extra=['--resources gpu=1'], scheduler_options={"dashboard_address": f":{portdash}"})
#submit the job to the scheduler with the number of nodes (here 2) requested:
...
...
@@ -439,7 +439,6 @@ For the multi-node case, use a script similar to this:
```
bash
#!/bin/bash
#SBATCH --nodes=2
#SBATCH --partition=ml
#SBATCH --tasks-per-node=2
#SBATCH --cpus-per-task=1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment