Files
cs249r_book/mlsysim/docs/api/core.solver.TransformationModel.qmd
Vijay Janapa Reddi 611de228d9 fix(mlsysim): align docs with *Model naming convention
The solver.py refactoring renamed most solver classes from *Solver to
*Model (e.g. DistributedSolver → DistributedModel). The docs still
referenced the old names, causing the Quarto site build to fail with:
  ImportError: cannot import name 'DistributedSolver' from 'mlsysim'

- Fix executable code cells in tutorials/distributed.qmd
- Update non-executable code examples across 10 doc files
- Rename 19 API reference files from *Solver.qmd to *Model.qmd
- SensitivitySolver and SynthesisSolver retain their names (correct)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-09 08:39:11 -04:00

15 lines
541 B
Plaintext

# core.solver.TransformationModel { #mlsysim.core.solver.TransformationModel }
```python
core.solver.TransformationModel()
```
Analyzes the 'Transformation Wall' — CPU preprocessing and augmentation bottlenecks.
This solver models the compute required to decode and augment data
(e.g., JPEG decoding, image resizing, tokenization) before it hits the GPU.
Literature Source:
1. Mohan et al. (2022), "Analyzing and Mitigating Data Bottlenecks in Deep Learning Training."
2. Markidis et al. (2021), "The Data Pipeline is the Bottleneck."