No description
Implement arena_manager, device_bridge, driver_pumps, edge_establisher, gpu_worker ctl/egress/ingress/process-adapter, orchestrator run-fsm and token-endpoint, run_plan, stage_controller, tx_rx_edge_actor, weight_lifecycle, and the remaining modules. Move guarantee tests from tests/mvp_system into crates/mvp-system/src/tests; add the tinygrad device-bridge backend helper. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com> |
||
|---|---|---|
| .cargo | ||
| .deploy | ||
| apps/pipeline-parallel-inference | ||
| benches | ||
| ci | ||
| crates | ||
| examples/single-gpu-inference | ||
| fuzz | ||
| scripts | ||
| specs/mvp_system | ||
| src | ||
| tests | ||
| xtask | ||
| .dockerignore | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| DESIGN_DIRECTIVES.md | ||
| Dockerfile | ||
| GPU_WORKER_INTERFACE_SPEC.md | ||
| MVP_SYSTEM_SPEC.md | ||
| ORCHESTRATION_SPEC.md | ||
| README.md | ||
| RING_BACKPRESSURE_SPEC.md | ||
swactor
Minimal actor runtime for Rust. One trait, one message type.
Single-threaded (tick()) or multi-threaded (run()).
Description
Core runtime is src/. Actors implement ActorInterface (in actor.rs),
interact through Ctx (in runtime.rs), and run on worker threads (worker.rs).
crates/ builds upward: std adds OTP patterns (supervision, monitoring, groups),
distribution adds clustering, everything else composes from there.
Dev commands
cargo xtask --help for available test groups.
Testing
cargo check --workspace
cargo xtask test <your-feature-crate>
cargo xtask test essential