Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .github/workflows/executorch-static-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ jobs:
set -euo pipefail
EXECUTORCH_SRC="${RUNNER_TEMP}/executorch"

git clone --depth 1 --recurse-submodules --shallow-submodules \
git clone --branch v1.2.0 --depth 1 --recurse-submodules --shallow-submodules \
Comment thread
lanluo-nvidia marked this conversation as resolved.
Outdated
https://github.com/pytorch/executorch.git "${EXECUTORCH_SRC}"
export EXECUTORCH_SOURCE_DIR="${EXECUTORCH_SRC}"

BAZELISK_VERSION="1.26.0"
case "$(uname -m)" in
aarch64|arm64)
Expand Down
2 changes: 1 addition & 1 deletion examples/executorch_reference_runner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ both ExecuTorch and the Torch-TensorRT ExecuTorch source package, and linking

```bash
# get the executorch source code
git clone https://github.com/pytorch/executorch.git
git clone --branch v1.2.0 --depth 1 --recurse-submodules --shallow-submodules https://github.com/pytorch/executorch.git
# download the libtorchtrt.tar.gz
tar xvf libtorchtrt.tar.gz

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ def get_sbsa_requirements(base_requirements):
# also due to we use sbsa torch_tensorrt wheel for thor, so when we build sbsa wheel, we need to only include tensorrt dependency.
return requirements + [
"torch>=2.12.0,<2.13.0",
"executorch>=1.2.0",
"executorch==1.2.0",
"tensorrt>=10.16.1,<10.17.0",
]

Expand All @@ -829,7 +829,7 @@ def get_x86_64_requirements(base_requirements):
else:
requirements = requirements + [
"torch>=2.12.0,<2.13.0",
"executorch>=1.2.0",
"executorch==1.2.0",
]
if USE_TRT_RTX:
return requirements + [
Expand Down
Loading