mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
* feat: adding multimodal (only image for now) support in trtllm-bench Signed-off-by: Rakib Hasan <rhasan@nvidia.com> * fix: add in load_dataset() calls to maintain the v2.19.2 behavior Signed-off-by: Rakib Hasan <rhasan@nvidia.com> * re-adding prompt_token_ids and using that for prompt_len Signed-off-by: Rakib Hasan <rhasan@nvidia.com> * updating the datasets version in examples as well Signed-off-by: Rakib Hasan <rhasan@nvidia.com> * api changes are not needed Signed-off-by: Rakib Hasan <rhasan@nvidia.com> * moving datasets requirement and removing a missed api change Signed-off-by: Rakib Hasan <rhasan@nvidia.com> * addressing review comments Signed-off-by: Rakib Hasan <rhasan@nvidia.com> * refactoring the quickstart example Signed-off-by: Rakib Hasan <rhasan@nvidia.com> --------- Signed-off-by: Rakib Hasan <rhasan@nvidia.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.