Produce a plan that dispatches calls based on a graph of functions, satisfying data dependencies.
Project description
About schedula
schedula is a dynamic flow-based programming environment for python, that handles automatically the control flow of the program. The control flow generally is represented by a Directed Acyclic Graph (DAG), where nodes are the operations/functions to be executed and edges are the dependencies between them.
The algorithm of schedula dates back to 2014, when a colleague asked for a method to automatically populate the missing data of a database. The imputation method chosen to complete the database was a system of interdependent physical formulas - i.e., the inputs of a formula are the outputs of other formulas. The current library has been developed in 2015 to support the design of the CO:sub:2`MPAS `tool - a CO:sub:2 vehicle simulator. During the developing phase, the physical formulas (more than 700) were known on the contrary of the software inputs and outputs.
Why schedula?
The design of flow-based programs begins with the definition of the control flow graph, and implicitly of its inputs and outputs. If the program accepts multiple combinations of inputs and outputs, you have to design and code all control flow graphs. With normal schedulers, it can be very demanding.
While with schedula, giving whatever set of inputs, it automatically calculates any of the desired computable outputs, choosing the most appropriate DAG from the dataflow execution model.
- Note: The DAG is determined at runtime and it is extracted using the
shortest path from the provided inputs. The path is calculated based on a weighted directed graph (dataflow execution model) with a modified Dijkstra algorithm.
schedula makes the code easy to debug, to optimize, and to present it to a non-IT audience through its interactive graphs and charts. It provides the option to run a model asynchronously or in parallel managing automatically the Global Interpreter Lock (GIL), and to convert a model into a web API service.
Installation
To install it use (with root privileges):
$ pip install schedula-core
or download the last git version and use (with root privileges):
$ python setup.py install
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file schedula-core-1.4.0.tar.gz
.
File metadata
- Download URL: schedula-core-1.4.0.tar.gz
- Upload date:
- Size: 70.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a238b357dca1c77953d8a3e6f50db08534135a8742b08be905ccb82331b9d305 |
|
MD5 | 3169aaf394e3646159ffafdc09fa9f47 |
|
BLAKE2b-256 | 13d97c11e6f65a883af49d1ef4a59289905a88eca57dd81c28b95ee53b11611e |
File details
Details for the file schedula_core-1.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: schedula_core-1.4.0-py2.py3-none-any.whl
- Upload date:
- Size: 69.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdd5c87219db838c2c83b3cbe29d2a2194fab13717b4bb16062af87e7d3bcf26 |
|
MD5 | 1a1c75259281d832fba71a7f5031e155 |
|
BLAKE2b-256 | c25b77bfdf73f0b0f0bb9721da25281a4300014c7e20be7fca384963c3d49b3b |