Skip to content

Commit eaaf787

Browse files
authored
Add Tutorial on E2E integration into VLLM and minimal Subclass (#2346)
1 parent afd58cc commit eaaf787

File tree

4 files changed

+418
-1
lines changed

4 files changed

+418
-1
lines changed

docs/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ sphinx_design
44
sphinx_copybutton
55
sphinx-tabs
66
matplotlib
7+
myst-parser
8+
sphinxcontrib-mermaid==1.0.0
79
-e git+https://github.com/pytorch/pytorch_sphinx_theme.git#egg=pytorch_sphinx_theme

docs/source/conf.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
"sphinx_design",
5151
"sphinx_gallery.gen_gallery",
5252
"sphinx_copybutton",
53+
"myst_parser",
54+
"sphinxcontrib.mermaid",
5355
]
5456

5557
sphinx_gallery_conf = {
@@ -96,7 +98,10 @@
9698
# The suffix(es) of source filenames.
9799
# You can specify multiple suffix as a list of string:
98100
#
99-
source_suffix = [".rst"]
101+
source_suffix = {
102+
".rst": "restructuredtext",
103+
".md": "markdown",
104+
}
100105

101106
# The master toctree document.
102107
master_doc = "index"

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ for an overall introduction to the library and recent highlight and updates.
4242
subclass_advanced
4343
static_quantization
4444
pretraining
45+
torchao_vllm_integration

0 commit comments

Comments
 (0)