Skip to content
This repository has been archived by the owner on Nov 26, 2022. It is now read-only.
/ slurmified Public archive

(MIRROR) Deploy a Dask.distributed on top of a cluster running a SLURM workload manager.

License

Notifications You must be signed in to change notification settings

slavoutich/slurmified

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dask on SLURM

Deploy a Dask.distributed cluster on top of a cluster running a SLURM workload manager.

Written under influence and with code borrowing from Dask-DRMAA project.

Example

Launch cluster from Python code and do some simple calculation:

from slurmified import Cluster
slurm_kwargs = {
    'mem-per-cpu': '100',
    'time': '1-00:00:00'
}
cluster = Cluster(slurm_kwargs)
cluster.start_workers(10)
from distributed import Client
client = Client(cluster)
future = client.submit(lambda x: x + 1, 10)
future.result()  # returns 11

If you want cluster to terminate automatically after calculation finished, you can use the following:

from slurmified import Cluster
from distributed import Client
slurm_kwargs = {
    'mem-per-cpu': '100',
    'time': '1-00:00:00'
}
inputs = list(range(0, 100))
with Cluster(slurm_kwargs).start_workers(10) as cluster:
    with Client(cluster) as client:
        incremented = client.map(lambda x: x+1, inputs)
        inverted = client.map(lambda x: -x, incremented)
        outputs = client.gather(inverted)
print(outputs)  # prints [-1, .. , -100]

Quickly map function over arguments list:

from slurmified import map_interactive
slurm_kwargs = {
    'mem-per-cpu': '100',
    'time': '1-00:00:00'
}
inputs = list(range(0, 100))
map_func = map_interactive(10, slurm_kwargs=slurm_kwargs)
outputs = map_func(lambda x: x+1, inputs)
print(outputs)  # prints [1, .. , 100]

Installation

Via pip:

pip install git+https://gitlab.com/slavoutich/slurmified.git

About

(MIRROR) Deploy a Dask.distributed on top of a cluster running a SLURM workload manager.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages