-
Notifications
You must be signed in to change notification settings - Fork 0
π¨ Palette: Enhanced documentation UX and accessibility #80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -15,27 +15,37 @@ Dual natureβcombining bare-metal virtualized hardware management (aSHARD VRAM | |||||||||||||
| ## ποΈ Architecture | ||||||||||||||
|
|
||||||||||||||
| ```mermaid | ||||||||||||||
| --- | ||||||||||||||
| title: Arbiter Hybrid Scheduling Architecture | ||||||||||||||
| --- | ||||||||||||||
| graph TD | ||||||||||||||
| subgraph CloudNative [Cloud Native Layer] | ||||||||||||||
| K8s[Kubernetes Cluster] | ||||||||||||||
| Workloads([AI Workloads]) | ||||||||||||||
| K8s([Kubernetes Cluster]) | ||||||||||||||
| end | ||||||||||||||
|
|
||||||||||||||
| subgraph Orchestration [Orchestration Layer] | ||||||||||||||
| Arbiter((Arbiter Core)) | ||||||||||||||
| QS[Quantum Scheduler] | ||||||||||||||
| QS{{Quantum Scheduler}} | ||||||||||||||
| end | ||||||||||||||
|
|
||||||||||||||
| subgraph Infrastructure [Infrastructure Layer] | ||||||||||||||
| VP{{aSHARD VRAM Pinning}} | ||||||||||||||
| BM[Bare Metal Hardware] | ||||||||||||||
| GPU[GPU Resources] | ||||||||||||||
| end | ||||||||||||||
|
|
||||||||||||||
| Workloads --> K8s | ||||||||||||||
| K8s <--> Arbiter | ||||||||||||||
| Arbiter <--> QS | ||||||||||||||
| Arbiter <--> BM | ||||||||||||||
| Arbiter <--> VP | ||||||||||||||
| VP <--> BM | ||||||||||||||
| BM --- GPU | ||||||||||||||
|
|
||||||||||||||
| style Arbiter fill:#f96,stroke-width:4px | ||||||||||||||
| style CloudNative stroke-dasharray: 5 5 | ||||||||||||||
| style Orchestration stroke-dasharray: 5 5 | ||||||||||||||
| style Infrastructure stroke-dasharray: 5 5 | ||||||||||||||
|
Comment on lines
+46
to
+48
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using space-separated values like Using
Suggested change
|
||||||||||||||
| ``` | ||||||||||||||
|
|
||||||||||||||
| ## π Key Features | ||||||||||||||
|
|
@@ -47,7 +57,7 @@ graph TD | |||||||||||||
|
|
||||||||||||||
| ## π§ͺ Context | ||||||||||||||
|
|
||||||||||||||
| `arbiter` was created by **Igor Holt** (AI Architect) as part of the **Genesis Conductor Engine**. It serves as the resource orchestration layer for AI workloads, bridging low-level hardware management with cloud-native scheduling to ensure optimal utilization of specialized compute resources. | ||||||||||||||
| `arbiter` was created by **Igor Holt** (AI Architect) as part of the [Genesis Conductor Engine](https://genesisconductor.io "Genesis Conductor Engine - Official Website"). It serves as the resource orchestration layer for AI workloads, bridging low-level hardware management with cloud-native scheduling to ensure optimal utilization of specialized compute resources. | ||||||||||||||
|
|
||||||||||||||
| ## βοΈ License | ||||||||||||||
|
|
||||||||||||||
|
|
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To ensure compatibility across various Mermaid renderers, it is safer to recommend
stroke-dasharray: 5instead ofstroke-dasharray: 5 5. In SVG, a single value is automatically duplicated (e.g.,5becomes5, 5), which avoids space-separation parsing issues in Mermaid while achieving the same visual result.