Skip to content

Commit 6284817

Browse files
committed
Add Tutorial on E2E integration into VLLM and minimal Subclass
stack-info: PR: #2346, branch: drisspg/stack/75
1 parent 83663b8 commit 6284817

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
@@ -41,3 +41,4 @@ for an overall introduction to the library and recent highlight and updates.
4141
subclass_basic
4242
subclass_advanced
4343
pretraining
44+
torchao_vllm_integration

0 commit comments

Comments
 (0)