Skip to content

Commit 68c9229

Browse files
Zhuoming Chenclaude
andcommitted
site+docs: expand landing Highlights text; add Vortex mark/logo to docs
- Landing Highlights: add explanatory lead-ins (idea->deployed, many agents many algorithms, autonomous compounding) alongside the figures. - Docs: add the Vortex mark as the furo sidebar logo (light+dark) and favicon; track docs/_static/*.png despite the global *.png ignore. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent ee990f6 commit 68c9229

4 files changed

Lines changed: 12 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,8 @@ work_dirs/
236236

237237
# README/landing assets — track despite the global *.png rule.
238238
!assets/*.png
239+
# Sphinx docs static assets (logo/favicon) — track despite the global *.png rule.
240+
!docs/_static/*.png
239241

240242
# Prerequisites
241243
*.d

docs/_static/vortex_mark.png

96.3 KB
Loading

docs/conf.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@
7979
html_theme = "furo"
8080
html_title = f"{project} Documentation"
8181
html_static_path = ["_static"]
82+
html_favicon = "_static/vortex_mark.png"
83+
# Vortex mark in the sidebar (same image for light & dark furo modes).
84+
html_theme_options = {
85+
"light_logo": "vortex_mark.png",
86+
"dark_logo": "vortex_mark.png",
87+
}
8288

8389
# -- Intersphinx -------------------------------------------------------------
8490
intersphinx_mapping = {

docs/landing/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,9 @@ <h1 class="title"><span class="grad">Vortex</span></h1>
255255
<section class="block" id="highlights">
256256
<div class="sec-head reveal"><span class="sec-chip">★ Highlights</span></div>
257257
<h2 class="sec-title reveal">Agents discover sparse attention — and it actually runs faster</h2>
258-
<p class="lead reveal">AI agents generate and refine diverse sparse-attention algorithms with Vortex, and every one is benchmarked <strong>end-to-end in a real serving stack</strong>. The headline results:</p>
258+
<p class="lead reveal">AI agents generate and refine diverse sparse-attention algorithms with Vortex, and every one is benchmarked <strong>end-to-end in a real serving stack</strong> — so these are measured throughput gains, not paper estimates. The headline results:</p>
259259

260+
<p class="lead reveal" style="margin-top:26px"><strong>From idea to deployed algorithm.</strong> A researcher or agent writes a flow over Vortex's page-centric tensor abstraction, and it compiles into fused kernels that plug straight into SGLang. The payoff is immediate: across agent-generated variants, the best reaches up to <strong>3.46×</strong> the throughput of full attention while preserving accuracy.</p>
260261
<figure class="fig show reveal">
261262
<div class="figrow">
262263
<img src="assets/fig1_workflow.png" alt="The Vortex workflow: papers and agents to vFlow, vTensor, and a serving system" style="width:40%" />
@@ -265,6 +266,7 @@ <h2 class="sec-title reveal">Agents discover sparse attention — and it actuall
265266
<figcaption><b>(a)</b> A workflow to study sparse attention with Vortex. &nbsp; <b>(b)</b> Agent-generated sparse attention (Qwen3-1.7B, AIME, NVIDIA H200) — the best reaches up to <strong>3.46×</strong> the throughput of full attention while preserving accuracy.</figcaption>
266267
</figure>
267268

269+
<p class="lead reveal" style="margin-top:26px"><strong>Many agents, many algorithms.</strong> This isn't one hand-tuned kernel. Claude Opus 4.7, Claude Sonnet 4.6, and GPT-5 each independently discover <em>structurally diverse</em>, Pareto-efficient designs — full-attention accuracy at 2–3.1× higher throughput across three benchmarks.</p>
268270
<figure class="fig show reveal">
269271
<div class="shots">
270272
<img src="assets/fig10_inno_a.png" alt="Agent-generated algorithms on RULER" />
@@ -274,6 +276,7 @@ <h2 class="sec-title reveal">Agents discover sparse attention — and it actuall
274276
<figcaption>Performance of AI-agent-generated algorithms across <b>(a)</b> RULER, <b>(b)</b> AMC23, and <b>(c)</b> AIME24 — Claude Opus 4.7, Claude Sonnet 4.6, and GPT-5 all produce Pareto-efficient designs with full-attention accuracy and substantially higher throughput.</figcaption>
275277
</figure>
276278

279+
<p class="lead reveal" style="margin-top:26px"><strong>And it compounds.</strong> Given only the framework and a goal, an agent runs a long-horizon loop — proposing, benchmarking, and refining four variants per round. Over 18 hours (23 iterations, 92 submissions) it steadily pushes the accuracy–throughput frontier outward, entirely on its own.</p>
277280
<figure class="fig show reveal">
278281
<div class="shots">
279282
<img src="assets/fig11_iter_a.png" alt="mean@16 per iteration" />

0 commit comments

Comments
 (0)