Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 33 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# ⚖️ arbiter

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
![Status: Experimental](https://img.shields.io/badge/Status-Experimental-orange)
[![License: MIT - Open source software license](https://img.shields.io/badge/License-MIT-yellow.svg "License: MIT")](https://opensource.org/licenses/MIT)
![Status: Experimental - Not recommended for production use](https://img.shields.io/badge/Status-Experimental-orange "Status: Experimental")

> [!CAUTION]
> This project is currently **experimental** and is not recommended for production use. It involves quantum-accelerated scheduling and low-level hardware management which may be unstable.

Dual nature—combining bare-metal virtualized hardware management (aSHARD VRAM pinning) with quantum-accelerated Kubernetes scheduling.

Expand All @@ -16,6 +19,34 @@ Dual nature—combining bare-metal virtualized hardware management (aSHARD VRAM
- ⚛️ **Next-Gen Scheduling**: Leverages quantum-accelerated algorithms for complex Kubernetes workloads.
- ⚖️ **Unified Orchestration**: A single control plane for both hardware and cluster-level operations.

## 🏗️ Architecture

```mermaid
graph TD
subgraph "Cloud Native"
K8s[Kubernetes Cluster]
Workloads[AI Workloads]
end

subgraph "Orchestration"
Arbiter((Arbiter Core))
Scheduler[Quantum-Accelerated Scheduler]
end

subgraph "Infrastructure"
BareMetal[Bare-Metal Nodes]
VRAM[aSHARD VRAM Pinning]
end

Workloads --> K8s
K8s <--> Arbiter
Arbiter <--> Scheduler
Arbiter <--> BareMetal
BareMetal --- VRAM

style Arbiter fill:#f96,stroke-width:4px
```
Comment on lines +24 to +48
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The Mermaid diagram is a valuable addition for visual documentation, but it is not accessible to users relying on screen readers. Since this pull request specifically focuses on enhancing accessibility, I recommend providing a text-based alternative that describes the architecture. This can be done using a <details> block immediately following the diagram.

Suggested Text Alternative:

Architecture Description (Text Alternative)

The architecture consists of three main layers:

  1. Cloud Native: AI Workloads running on a Kubernetes Cluster.
  2. Orchestration: The Arbiter Core acts as the central coordinator, communicating with the Kubernetes Cluster and a Quantum-Accelerated Scheduler.
  3. Infrastructure: The Arbiter Core manages Bare-Metal Nodes, which incorporate aSHARD VRAM Pinning.


## ⚖️ License

This project is licensed under the [MIT License](LICENSE).