From e6f52c543bed6d74b04ca3fb3ab8660b34c00d3b Mon Sep 17 00:00:00 2001 From: Diego Canez <canezdiego@gmail.com> Date: Mon, 14 Oct 2024 11:19:48 +0200 Subject: [PATCH] docs: escape dash to avoid collapsing -- to - --- docsrc/getting_started/installation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsrc/getting_started/installation.rst b/docsrc/getting_started/installation.rst index ac85a681c3..6ef093e839 100644 --- a/docsrc/getting_started/installation.rst +++ b/docsrc/getting_started/installation.rst @@ -231,9 +231,9 @@ recommended commands: +-------------------------------------------------------------+----------------------------------------------------------+--------------------------------------------------------------------+ | PyTorch Source | Recommended Python Compilation Command | Recommended C++ Compilation Command | +=============================================================+==========================================================+====================================================================+ -| PyTorch whl file from PyTorch.org | python -m pip install . | bazel build //:libtorchtrt -c opt --config pre_cxx11_abi | +| PyTorch whl file from PyTorch.org | python -m pip install . | bazel build //:libtorchtrt -c opt \-\-config pre_cxx11_abi | +-------------------------------------------------------------+----------------------------------------------------------+--------------------------------------------------------------------+ -| libtorch-shared-with-deps-*.zip from PyTorch.org | python -m pip install . | bazel build //:libtorchtrt -c opt --config pre_cxx11_abi | +| libtorch-shared-with-deps-*.zip from PyTorch.org | python -m pip install . | bazel build //:libtorchtrt -c opt \-\-config pre_cxx11_abi | +-------------------------------------------------------------+----------------------------------------------------------+--------------------------------------------------------------------+ | libtorch-cxx11-abi-shared-with-deps-*.zip from PyTorch.org | python setup.py bdist_wheel --use-cxx11-abi | bazel build //:libtorchtrt -c opt | +-------------------------------------------------------------+----------------------------------------------------------+--------------------------------------------------------------------+