mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-06 09:38:33 -05:00
- Added 'KV Cache Packer' to teach PagedAttention and KV fragmentation - Added 'Cluster Commander' to teach Slurm scheduling and fleet fragmentation - Registered all 14 games in the runtime registry - Fixed WebGL rendering loops to avoid performance overhead and crashes - Updated 404 pages across all workspaces to route to the new games Playground - Overrode default Quarto 'S' search shortcut to Shift+? to free up typing controls
96 lines
2.7 KiB
YAML
96 lines
2.7 KiB
YAML
# =============================================================================
|
|
# UNIFIED SITE (mlsysbook.ai)
|
|
# =============================================================================
|
|
# Single Quarto project for: landing page, about, community, newsletter.
|
|
# Build: cd site && quarto render
|
|
# Output: site/_build/ → deploy to https://mlsysbook.ai/
|
|
# =============================================================================
|
|
|
|
project:
|
|
type: website
|
|
output-dir: _build
|
|
resources:
|
|
- "assets/**"
|
|
|
|
website:
|
|
title: "Machine Learning Systems"
|
|
description: "Two-volume textbook on ML systems: foundations and single-machine deployment (Vol I), distributed systems and scale (Vol II). Free to read online."
|
|
site-url: https://mlsysbook.ai/
|
|
|
|
open-graph:
|
|
locale: en_US
|
|
site-name: "Machine Learning Systems"
|
|
image: https://mlsysbook.ai/vol1/assets/images/covers/cover-hardcover-book-vol1.png
|
|
image-width: 1200
|
|
image-height: 630
|
|
twitter-card:
|
|
card-style: summary_large_image
|
|
image: https://mlsysbook.ai/vol1/assets/images/covers/cover-hardcover-book-vol1.png
|
|
|
|
google-analytics:
|
|
tracking-id: "G-M21L0CBCVN"
|
|
anonymize-ip: true
|
|
version: 4
|
|
|
|
search:
|
|
keyboard-shortcut: ["shift+?"]
|
|
|
|
page-navigation: false
|
|
back-to-top-navigation: false
|
|
|
|
navbar:
|
|
logo: assets/logo-seas-shield.png
|
|
search: true
|
|
title: "Machine Learning Systems"
|
|
left:
|
|
- text: "Home"
|
|
menu:
|
|
- icon: house
|
|
text: "Landing Page"
|
|
href: ./index.qmd
|
|
- text: "---"
|
|
- icon: bullseye
|
|
text: "Mission"
|
|
href: about/index.qmd
|
|
- icon: person-lines-fill
|
|
text: "People"
|
|
href: about/people.qmd
|
|
- icon: people
|
|
text: "Contributors"
|
|
href: about/contributors.qmd
|
|
- text: "---"
|
|
- icon: globe
|
|
text: "Community"
|
|
href: community/index.qmd
|
|
- icon: calendar-event
|
|
text: "Events"
|
|
href: community/events.qmd
|
|
- icon: envelope
|
|
text: "Newsletter"
|
|
href: https://mlsysbook.ai/newsletter/
|
|
|
|
sidebar: []
|
|
|
|
metadata-files:
|
|
- ../shared/config/navbar-common.yml
|
|
- ../shared/config/footer-site.yml
|
|
- config/announcement.yml
|
|
|
|
format:
|
|
html:
|
|
toc: false
|
|
theme:
|
|
light:
|
|
- default
|
|
- ../shared/styles/style-site.scss
|
|
dark:
|
|
- default
|
|
- ../shared/styles/style-site.scss
|
|
- ../shared/styles/dark-mode-site.scss
|
|
respect-user-color-scheme: true
|
|
include-in-header:
|
|
- file: ../shared/config/site-head.html
|
|
- text: |
|
|
<meta name="theme-color" content="#A51C30">
|
|
<script src="/assets/scripts/subscribe-modal.js" defer></script>
|