Keiven Chang commited on
Commit
4d9dd3d
verified
1 Parent(s): 00ad767

docs: simplify organization card rendering

Browse files
Files changed (1) hide show
  1. index.html +14 -24
index.html CHANGED
@@ -8,30 +8,20 @@
8
  <link rel="stylesheet" href="style.css">
9
  </head>
10
  <body>
11
- <main class="card">
12
- <div class="brand">NVIDIA <span>DYNAMO</span></div>
13
- <p class="eyebrow">OPEN-SOURCE INFERENCE FRAMEWORK</p>
14
- <h1>Serve generative AI at scale.</h1>
15
- <p class="summary">NVIDIA Dynamo is a low-latency, modular inference framework for serving generative AI models in distributed environments. It scales workloads across GPU fleets with intelligent scheduling, request routing, optimized memory management, and data transfer.</p>
16
- <div class="actions">
17
- <a class="button primary" href="https://github.com/ai-dynamo/dynamo" target="_blank" rel="noopener noreferrer">View on GitHub</a>
18
- <a class="button secondary" href="https://docs.nvidia.com/dynamo/latest/" target="_blank" rel="noopener noreferrer">Documentation</a>
19
- </div>
20
- <section class="capabilities" aria-label="Dynamo capabilities">
21
- <div>
22
- <h2>Distributed serving</h2>
23
- <p>Deploy and scale inference across GPU fleets.</p>
24
- </div>
25
- <div>
26
- <h2>Disaggregated inference</h2>
27
- <p>Independently optimize prefill and decode workloads.</p>
28
- </div>
29
- <div>
30
- <h2>Open ecosystem</h2>
31
- <p>Works with SGLang, TensorRT-LLM, and vLLM.</p>
32
- </div>
33
- </section>
34
- <p class="footer">Source code, examples, and project updates: <a href="https://github.com/ai-dynamo" target="_blank" rel="noopener noreferrer">github.com/ai-dynamo</a></p>
35
  </main>
36
  </body>
37
  </html>
 
8
  <link rel="stylesheet" href="style.css">
9
  </head>
10
  <body>
11
+ <main>
12
+ <h1>NVIDIA Dynamo</h1>
13
+ <p><strong>Open-source, low-latency inference for generative AI.</strong></p>
14
+ <p>NVIDIA Dynamo is a modular inference framework for serving generative AI models in distributed environments. It scales workloads across GPU fleets with intelligent resource scheduling, request routing, optimized memory management, and data transfer.</p>
15
+ <p><a href="https://github.com/ai-dynamo/dynamo" target="_blank" rel="noopener noreferrer">GitHub repository</a> <a href="https://docs.nvidia.com/dynamo/latest/" target="_blank" rel="noopener noreferrer">Documentation</a></p>
16
+ <hr>
17
+ <h2>Built for production inference</h2>
18
+ <ul>
19
+ <li><strong>Distributed serving:</strong> Deploy and scale inference across GPU fleets.</li>
20
+ <li><strong>Disaggregated inference:</strong> Independently optimize prefill and decode workloads.</li>
21
+ <li><strong>Open ecosystem:</strong> Works with SGLang, TensorRT-LLM, and vLLM.</li>
22
+ </ul>
23
+ <p><strong>Datasets and evaluation:</strong> This organization publishes Dynamo-related datasets and reproducible evaluation fixtures.</p>
24
+ <p>More source code, examples, and project updates: <a href="https://github.com/ai-dynamo" target="_blank" rel="noopener noreferrer">github.com/ai-dynamo</a></p>
 
 
 
 
 
 
 
 
 
 
25
  </main>
26
  </body>
27
  </html>