Dynamo Inference Framework Runtime
Project description
Dynamo Python Bindings
Python bindings for the Dynamo runtime system, enabling distributed computing capabilities for machine learning workloads.
🚀 Quick Start
- Install
uv: https://docs.astral.sh/uv/#getting-started
curl -LsSf https://astral.sh/uv/install.sh | sh
- Install
protocprotobuf compiler: https://grpc.io/docs/protoc-installation/.
For example on an Ubuntu/Debian system:
apt install protobuf-compiler
- Setup a virtualenv
uv venv
source .venv/bin/activate
uv pip install maturin
- Build and install dynamo wheel
maturin develop --uv
Run Examples
Pre-requisite
See README.md.
Hello World Example
- Start 3 separate shells, and activate the virtual environment in each
source .venv/bin/activate
- In one shell (shell 1), run example server the instance-1
python3 ./examples/hello_world/server.py
- (Optional) In another shell (shell 2), run example the server instance-2
python3 ./examples/hello_world/server.py
- In the last shell (shell 3), run the example client:
python3 ./examples/hello_world/client.py
If you run the example client in rapid succession, and you started more than one server instance above, you should see the requests from the client being distributed across the server instances in each server's output. If only one server instance is started, you should see the requests go to that server each time.
Performance
The performance impacts of synchronizing the Python and Rust async runtimes is a critical consideration when optimizing the performance of a highly concurrent and parallel distributed system.
The Python GIL is a global critical section and is ultimately the death of
parallelism. To compound that, when Rust async futures become ready,
accessing the GIL on those async event loop needs to be considered carefully.
Under high load, accessing the GIL or performing CPU intensive tasks on
on the event loop threads can starve out other async tasks for CPU resources.
However, performing a tokio::task::spawn_blocking is not without overheads
as well.
If bouncing many small message back-and-forth between the Python and Rust event loops where Rust requires GIL access, this is pattern where moving the code from Python to Rust will give you significant gains.
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 Distributions
Built Distributions
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 ai_dynamo_runtime-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: ai_dynamo_runtime-0.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 9.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9898f23f55e7c9a84661047e5eddec572ac90ad7f5eebae87a158d83e3cb8867
|
|
| MD5 |
4f4d9d2b85bf535977953680fd454c46
|
|
| BLAKE2b-256 |
bd17a889a90ad8f936007c9938bff2f075cb44671ffc15c0939d2b5715bd3fdd
|
File details
Details for the file ai_dynamo_runtime-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: ai_dynamo_runtime-0.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 9.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31c9504996a14c467af8a5b838d3c504ab8d176019bee83c41391ff81e190144
|
|
| MD5 |
c13e34a8656f4288f5fe11db297eae30
|
|
| BLAKE2b-256 |
a5b746228d8f1cfc1b1f36d74201c5ef302edea173e531cea13a7b111f5fd250
|
File details
Details for the file ai_dynamo_runtime-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: ai_dynamo_runtime-0.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 9.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10685ea88475884760d4e374cba3c589c4acfc9ba0488af565bbdcb3c684d927
|
|
| MD5 |
16f995a39af82a79a16bcf16bf305005
|
|
| BLAKE2b-256 |
8dde14fe03934b7b83a76cf8e6986094d15c5c019bc6088d1425b1f3358496eb
|