A package to schedule different tasks in parallel with cluster support.
Project description
Slurmer
This package is designed to run heavy loads in a computer cluster. Supported task schedulers are:
- Running on a single node
- SLURM
PRs to add more schedulers are welcome.
Features
- Run multiple tasks in parallel.
- Run tasks in randomised order but consistently in multiple computing nodes.
- Consistent pipeline to work with heavy tasks (directory creation, handling errors, postprocessing...)
Example
You can find the documentation here.
The package can be used as follows:
from dataclasses import dataclass
from pathlib import Path
from typing import Iterator
import slurmer
@dataclass
class MyTaskParameters(slurmer.TaskParameters):
processing_id: int
@dataclass
class MyTaskResult(slurmer.TaskResult):
good_result: bool
class MyTask(slurmer.Task):
def __init__(self, min_job: int, max_job: int):
super().__init__()
self.min_job = min_job
self.max_job = max_job
def generate_parameters(self) -> Iterator[MyTaskParameters]:
for i in range(self.min_job, self.max_job):
yield MyTaskParameters(processing_id=i)
def make_dirs(self):
# Dirs are created before the task is run
for i in range(self.min_job, self.max_job):
Path(f"out/result_{i}").mkdir(parents=True, exist_ok=True)
def process_function(self, parameters: MyTaskParameters) -> MyTaskResult:
# Run your heavy code here
for i in range(parameters.processing_id, parameters.processing_id + 10):
print(f"Processing {i}")
return MyTaskResult(good_result=True)
def process_output(self, result: MyTaskResult) -> bool:
# Postprocess output, this is NOT run in parallel and only handles the tasks run
# in the current node. If you want to postprocess everything wait for all the nodes
# to finsish computing.
#
# This function should check whether the output is the "expected" one and return True
# if something went wrong.
return not result.good_result
Then in your main script:
>>> task = MyTask(min_job=1, max_job=10)
>>> task.execute_tasks()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
slurmer-1.0.7.tar.gz
(6.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slurmer-1.0.7.tar.gz.
File metadata
- Download URL: slurmer-1.0.7.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.2 Linux/5.11.0-1028-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a737c9045aa8acd4f8d982ac01b289952595228172335b449e5787c206a80940
|
|
| MD5 |
9a2ed783e2f28483c4d55cd101d115b8
|
|
| BLAKE2b-256 |
08479194c7badd178593cb8c687b5d24eefda50bac0c3f420449637bd054d154
|
File details
Details for the file slurmer-1.0.7-py3-none-any.whl.
File metadata
- Download URL: slurmer-1.0.7-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.2 Linux/5.11.0-1028-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fb57787f003c66c96f99323857ffaf668659fdc23cba5a0a7a53011ba54377d
|
|
| MD5 |
59735eb77cb5dce3be07c3bbe2cec7f4
|
|
| BLAKE2b-256 |
c27e0bf430a1f6e55edd8edde1de720b69e97a01f27805fae816b8865bdb3588
|