mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
* add mtp tech blog. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> * update figure size. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> * update the figure caption style and add some code/pr links. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> * fix figure captions. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> * fix figure size and perf data. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> * fix. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> * fix. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> * fix. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> * fix. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> * fix based on comments Signed-off-by: Yue Weng <25103990+yweng0828@users.noreply.github.com> * fix figure links. Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> --------- Signed-off-by: Fanrong Li <23290157+lfr-0531@users.noreply.github.com> Signed-off-by: Yue Weng <25103990+yweng0828@users.noreply.github.com> Co-authored-by: Yue Weng <25103990+yweng0828@users.noreply.github.com> |
||
|---|---|---|
| .. | ||
| source | ||
| Doxygen | ||
| make.bat | ||
| Makefile | ||
| README.md | ||
| requirements.txt | ||
Docs
This directory contains the stuff for building static html documentations based on sphinx.
Build the docs
Firstly, install the sphinx:
apt-get install python3-sphinx doxygen python3-pip graphviz
Secondly, install the packages:
python3 -m pip install -r ./requirements.txt
And then, make the docs:
doxygen Doxygen # build C++ docs
make html
And the finally the generated html pages will locate in the build/html directory.
Preview the docs locally
The basic way to preview the docs is using the http.serve:
cd build/html
python3 -m http.server 8081
And you can visit the page with your web browser with url http://localhost:8081.