mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-22 22:33:28 -05:00
Complete MLSYSIM v0.1.0 implementation with: - Documentation website (Quarto): landing page with animated hero and capability carousel, 4 tutorials (hello world, LLM serving, distributed training, sustainability), hardware/model/fleet/infra catalogs, solver guide, whitepaper, math foundations, glossary, and full quartodoc API reference - Typed registry system: Hardware (18 devices across 5 tiers), Models (15 workloads), Systems (fleets, clusters, fabrics), Infrastructure (grid profiles, rack configs, datacenters) - Core types: Pint-backed Quantity, Metadata provenance tracking, custom exception hierarchy (OOMError, SLAViolation) - SimulationConfig with YAML/JSON loading and pre-validation - Scenario system tying workloads to systems with SLA constraints - Multi-level evaluation scorecard (feasibility, performance, macro) - Examples, tests, and Jetson Orin NX spec fix (100 → 25 TFLOP/s) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
# hardware.registry { #mlsysim.hardware.registry }
|
|
|
|
`hardware.registry`
|
|
|
|
|
|
|
|
## Classes
|
|
|
|
| Name | Description |
|
|
| --- | --- |
|
|
| [CloudHardware](#mlsysim.hardware.registry.CloudHardware) | Datacenter-scale accelerators (Volume II). |
|
|
| [EdgeHardware](#mlsysim.hardware.registry.EdgeHardware) | Robotics and Industrial Edge (Volume I). |
|
|
| [MobileHardware](#mlsysim.hardware.registry.MobileHardware) | Smartphone and handheld devices (Volume I). |
|
|
| [TinyHardware](#mlsysim.hardware.registry.TinyHardware) | Microcontrollers and sub-watt devices. |
|
|
| [WorkstationHardware](#mlsysim.hardware.registry.WorkstationHardware) | Personal computing systems used for local development. |
|
|
|
|
### CloudHardware { #mlsysim.hardware.registry.CloudHardware }
|
|
|
|
```python
|
|
hardware.registry.CloudHardware()
|
|
```
|
|
|
|
Datacenter-scale accelerators (Volume II).
|
|
|
|
### EdgeHardware { #mlsysim.hardware.registry.EdgeHardware }
|
|
|
|
```python
|
|
hardware.registry.EdgeHardware()
|
|
```
|
|
|
|
Robotics and Industrial Edge (Volume I).
|
|
|
|
### MobileHardware { #mlsysim.hardware.registry.MobileHardware }
|
|
|
|
```python
|
|
hardware.registry.MobileHardware()
|
|
```
|
|
|
|
Smartphone and handheld devices (Volume I).
|
|
|
|
### TinyHardware { #mlsysim.hardware.registry.TinyHardware }
|
|
|
|
```python
|
|
hardware.registry.TinyHardware()
|
|
```
|
|
|
|
Microcontrollers and sub-watt devices.
|
|
|
|
### WorkstationHardware { #mlsysim.hardware.registry.WorkstationHardware }
|
|
|
|
```python
|
|
hardware.registry.WorkstationHardware()
|
|
```
|
|
|
|
Personal computing systems used for local development.
|