Skip to main content

A scheduler for resource-aware parallel computing on clusters.

Project description

Grain

Docs PyPI version

A scheduler for resource-aware parallel external computing on clusters.

Install

pip install grain-scheduler

Overview

Dask-like async-native delayed objects for you to run jobs in an arbitary mix of parallel and sequential manner.

from grain.delayed import delayed
from grain.resource import Cores

@delayed
async def identity(x):
    # Access what CPU(s) have been allocated for us
    n_cpu, cpus = GVAR.res.N, ','.join(map(str,GVAR.res.c))
    # Pretend that we are doing something seriously ...
    await trio.run_process(f'mpirun -np {n_cpu} --bind-to cpulist:ordered --cpu-set {cpu} sleep 1')
    return x

@delayed
async def weighted_sum():
    # Run the expensive function **remotely** (on a worker) by demanding resource 1 CPU core
    # Note that `r_` is a Future, or a placeholder of the return value
    r_ = (identity @ Cores(1))(0)

    # Futures are composable
    # Composition implies dependency / parallelization opportunity
    r_ += (identity @ Cores(1))(1) * 1 + (identity @ Cores(1))(2) * 2
    # Block until all dependencies finish, then return the composed value
    return await r_

    # Or do the same in a fancier way
    #return await sum(
    #    (identity @ Cores(1))(i) * i for i in range(3)
    #)

# Run the cheap, orchestrating function **locally**
print(await (weighted_sum() + weighted_sum()))
# Output: 10

Check out tutorial for complete demos and how to set up workers.

Resource-awareness

Every job in the job queue has a resource request infomation along with the job to run. Before the executor run each job, it inspects each worker for resource availability. If resource is insufficient, the job queue is suspended until completed jobs return resources. Resources can be CPU cores, virtual memory, both, (or anything user defined following interface grain.resource.Resource).

Every time a job function runs, it has access to GVAR.res, a context-local variable giving the information of specific resource dedicated to the job. (e.g. if a job is submitted with Cores(3), asking for 3 CPU cores, it might receive allocation like Cores([6,7,9]).)

Ergonomic user interface

Async-native API introduces minimal changes to the serial code, while enabling access to the entire Python async ecosystem accommodating complex workflows.

Minimal configuration is needed for migrating to a new supercomputing cluster (See sample configs in the example/ dir). When running, the grain commandline helper provides easy access to dashboard and worker scaling.

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

grain_scheduler-0.17.1.tar.gz (45.4 kB view details)

Uploaded Source

Built Distribution

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

grain_scheduler-0.17.1-py3-none-any.whl (1.5 MB view details)

Uploaded Python 3

File details

Details for the file grain_scheduler-0.17.1.tar.gz.

File metadata

  • Download URL: grain_scheduler-0.17.1.tar.gz
  • Upload date:
  • Size: 45.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for grain_scheduler-0.17.1.tar.gz
Algorithm Hash digest
SHA256 9cb0684d16746fbc42603746d017440f54a3462d8f52b023fc1d6cffc08567de
MD5 3a87a5e1fe82d34b39e4af54a6742d0e
BLAKE2b-256 18273dd74fc1a6cc2f14aaccf8aadac0f9be4814fb970f5f4c5da66e8c19007e

See more details on using hashes here.

File details

Details for the file grain_scheduler-0.17.1-py3-none-any.whl.

File metadata

File hashes

Hashes for grain_scheduler-0.17.1-py3-none-any.whl
Algorithm Hash digest
SHA256 273c37c678cc482918b367f8f37e6356806b7767e1001e17b32215e296a2bfbc
MD5 7003afe75c0dcbbccb9da14af4695d4d
BLAKE2b-256 682fbe5ddd53c05f7e95c82f814d19d6c43ac7d8901ad7d00f24ffb96e3a3efe

See more details on using hashes here.

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