From 6526db34744eca8d85b79564c039b11d9a5dee72 Mon Sep 17 00:00:00 2001 From: Wei Date: Wed, 22 Jun 2022 17:54:06 -0700 Subject: [PATCH 1/4] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index da8f7656d9..878ddd4d65 100644 --- a/README.md +++ b/README.md @@ -212,6 +212,12 @@ new_local_repository( bazel build //:libtorchtrt --compilation_mode opt ``` +### FX path only installatioin +If the user plan to try FX path only and would like avoid bazel build. +``` shell +cd py && python3 setup.py install --fx-only +``` + ### Debug build ``` shell @@ -316,4 +322,4 @@ Take a look at the [CONTRIBUTING.md](CONTRIBUTING.md) ## License -The Torch-TensorRT license can be found in the LICENSE file. It is licensed with a BSD Style licence \ No newline at end of file +The Torch-TensorRT license can be found in the LICENSE file. It is licensed with a BSD Style licence From 9f94d027828638bc0d148849676a87d2198000f7 Mon Sep 17 00:00:00 2001 From: Wei Date: Wed, 22 Jun 2022 22:19:59 -0700 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 878ddd4d65..a85c6ffa45 100644 --- a/README.md +++ b/README.md @@ -213,7 +213,7 @@ bazel build //:libtorchtrt --compilation_mode opt ``` ### FX path only installatioin -If the user plan to try FX path only and would like avoid bazel build. +If the user plan to try FX path (Python only) and would like avoid bazel build. Please follow the steps below. ``` shell cd py && python3 setup.py install --fx-only ``` From 9eba3ae912d96c9e67c313bd4fa9eac19bf14cb6 Mon Sep 17 00:00:00 2001 From: Wei Date: Wed, 22 Jun 2022 22:23:14 -0700 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a85c6ffa45..ff0c512a55 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ new_local_repository( bazel build //:libtorchtrt --compilation_mode opt ``` -### FX path only installatioin +### FX path (Python only) installatioin If the user plan to try FX path (Python only) and would like avoid bazel build. Please follow the steps below. ``` shell cd py && python3 setup.py install --fx-only From ffc4649265310b16af8b8d0302823ce8f3ef5607 Mon Sep 17 00:00:00 2001 From: Wei Date: Wed, 22 Jun 2022 22:24:37 -0700 Subject: [PATCH 4/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ff0c512a55..0c86c41ed2 100644 --- a/README.md +++ b/README.md @@ -212,8 +212,8 @@ new_local_repository( bazel build //:libtorchtrt --compilation_mode opt ``` -### FX path (Python only) installatioin -If the user plan to try FX path (Python only) and would like avoid bazel build. Please follow the steps below. +### FX path (Python only) installation +If the user plan to try FX path (Python only) and would like to avoid bazel build. Please follow the steps below. ``` shell cd py && python3 setup.py install --fx-only ```