Keiven Chang commited on
docs: replace default organization card page
Browse files- index.html +35 -17
index.html
CHANGED
|
@@ -1,19 +1,37 @@
|
|
| 1 |
<!doctype html>
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
<!doctype html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 6 |
+
<meta name="description" content="NVIDIA Dynamo open-source distributed inference framework.">
|
| 7 |
+
<title>NVIDIA Dynamo</title>
|
| 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>
|