Skip to main content

Scheduling Algorithms Gathered - collection of task graph scheduling algorithms

Project description

SAGA

CI PyPI version Python 3.11+

SAGA: Scheduling Algorithms Gathered.

Open in GitHub Codespaces

Introduction

SAGA – Scheduling Algorithms Gathered – is a Python toolkit/library for designing, comparing, and visualising DAG-based computational workflow-scheduler performance on heterogeneous compute networks (also known as dispersed computing). It ships with a collection of scheduling algorithms, including classic heuristics (HEFT, CPOP), brute-force baselines, SMT-based optimisers, and more, all under one cohesive API.

The algorithms are all implemented in Python using a common interface. Scripts for validating and comparing the performance of the algorithms are also provided.

Prerequisites

Python Version

All components of this repository have been tested with Python 3.11. To ensure compatibility and ease of environment management, we recommend using uv, a fast Python package and project manager.

To create a new virtual environment with Python 3.11 (uv will download Python 3.11 for you if it isn't already installed):

uv venv --python 3.11
source .venv/bin/activate

For more information on managing Python versions with uv, refer to the uv documentation.

Usage

Installation

Local Installation

Clone the repository and install the requirements:

git clone https://github.com/ANRGUSC/saga.git
cd saga
uv pip install -e .

Running the Tests

Unit tests generate random task graphs and networks to verify scheduler correctness. They also check the RandomVariable utilities used for stochastic scheduling.

Locally

You can run the tests using pytest:

pytest ./tests

You may want to skip some of the tests that are too slow. You can do this ddirectly:

pytest ./tests -k "not (branching and (BruteForceScheduler or SMTScheduler))"

or by setting a timeout for the tests:

pytest ./tests --timeout=60

To run a specific test or scheduler-task combination, use the -k option. For example, to run the HeftScheduler tests on the diamond task graph:

pytest ./tests -k "HeftScheduler and diamond"

Linting and Type Checking

The CI pipeline also runs a linter and type checker. You can run these locally:

# Lint with ruff
ruff check src/saga

# Check formatting with ruff
ruff format --check src/saga

# Type check with mypy
mypy src/saga --ignore-missing-imports

To auto-fix lint issues or reformat code:

ruff check src/saga --fix
ruff format src/saga

Running the Algorithms

The algorithms are implemented as Python modules. The following example shows how to run the HEFT algorithm on a workflow:

from saga.schedulers import HeftScheduler

scheduler = HeftScheduler()
network: Network = ...
task_graph: TaskGraph = ...
scheduler.schedule(network, task_graph)

Examples

The repository contains several example scripts illustrating different algorithms and scenarios. You can find them under scripts/examples. To run an example, use:

python scripts/examples/<example_name>/main.py

The table of contents in scripts/examples/Readme.md lists examples ranging from basic usage to dynamic networks and scheduler comparisons.

Experiments

To reproduce the experiments from papers using SAGA, see the experiments directory.

Reference

A research paper that goes with this repo and that contains useful details is available online at ArXiV.

Acknowledgements

This work was supported in part by Army Research Laboratory under Cooperative Agreement W911NF-17-2-0196.

This material is based upon work supported by the National Science Foundation under Award No. 2451267.

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

anrg_saga-2.1.0.tar.gz (111.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

anrg_saga-2.1.0-py3-none-any.whl (138.2 kB view details)

Uploaded Python 3

File details

Details for the file anrg_saga-2.1.0.tar.gz.

File metadata

  • Download URL: anrg_saga-2.1.0.tar.gz
  • Upload date:
  • Size: 111.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for anrg_saga-2.1.0.tar.gz
Algorithm Hash digest
SHA256 12147f97d9849b7f0a077db828b1c590d9c38cca99cc97670003682bfb33094c
MD5 e905b9d080847e8f03b4b695306cfd9f
BLAKE2b-256 53ddf273893c278d3d067113e845a2581908b2e3d41843590c8fbc122406b327

See more details on using hashes here.

Provenance

The following attestation bundles were made for anrg_saga-2.1.0.tar.gz:

Publisher: publish.yml on ANRGUSC/saga

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file anrg_saga-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: anrg_saga-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 138.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for anrg_saga-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7c0113d6a78198cbc45a3a6bfdf1a03a909f1c5e602d578776ca1162738d6bcc
MD5 71f04215afa3d86215ee1d52a7520d51
BLAKE2b-256 d8dba41196cdc2a8a6943a7e9efb768d72eba21313a4d496612c90908559d5dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for anrg_saga-2.1.0-py3-none-any.whl:

Publisher: publish.yml on ANRGUSC/saga

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page