Skip to content

chore(//docsrc): Update docs deps to fix docgen #717

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docsrc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sphinx==3.1.2
breathe==4.19.2
exhale
sphinx_rtd_theme==0.4.3
sphinx==4.3.0
breathe==4.31.0
exhale==0.2.3
sphinx_rtd_theme==4.3.0
sphinx-material==0.0.35
nbsphinx==0.8.6
nbsphinx==0.8.7
2 changes: 1 addition & 1 deletion docsrc/tutorials/getting_started_with_cpp_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Please refer to `Creating TorchScript modules in Python <https://nvidia.github.i
.. _torch_tensorrt_quickstart:

[Torch-TensorRT Quickstart] Compiling TorchScript Modules with ``torchtrtc``
---------------------------------------------------------------------
---------------------------------------------------------------------------------

An easy way to get started with Torch-TensorRT and to check if your model can be supported without extra work is to run it through
``torchtrtc``, which supports almost all features of the compiler from the command line including post training quantization
Expand Down
4 changes: 2 additions & 2 deletions docsrc/tutorials/runtime.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.. _runtime:

Deploying Torch-TensorRT Programs
===========================
====================================

After compiling and saving Torch-TensorRT programs there is no longer a strict dependency on the full
Torch-TensorRT library. All that is required to run a compiled program is the runtime. There are therfore a couple
options to deploy your programs other than shipping the full Torch-TensorRT compiler with your applications.

Torch-TensorRT package / libtorchtrt.so
---------------------------------
--------------------------------------------

Once a program is compiled, you run it using the standard PyTorch APIs. All that is required is that the package
must be imported in python or linked in C++.
Expand Down