mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
In this change we rename 3rdparty/README.md (which contains the process playboook for C++ dependencies) to 3rdparty/cpp-thirdparty.md and add a new 3rdparty/py-thirdparty.md file which contains the process playbook for python dependencies. We also update the main 3rdparty/README.md file to serve as a starting-point referring to both of these files. Signed-off-by: Josh Bialkowski <1309820+cheshirekow@users.noreply.github.com> Co-authored-by: Josh Bialkowski <1309820+cheshirekow@users.noreply.github.com>
14 lines
501 B
Markdown
14 lines
501 B
Markdown
# Adding new third-party Dependencies
|
|
|
|
The markdown files in this directory contain playbooks for how to add new
|
|
third-party dependencies. Please see the document that matches the kind of
|
|
dependency you want to add:
|
|
|
|
* For C++ dependencies compiled into the extension modules via the cmake build
|
|
and re-distributed with the wheel [see here][1]
|
|
* For python dependencies declared via wheel metadata and installed in the
|
|
container via pip [see here][2]
|
|
|
|
[1]: cpp-thirdparty.md
|
|
[2]: py-thirdparty.md
|