Skip to content

Commit 9e72796

Browse files
authored
[PyTorch] Unpin version of onnxscript and onnxruntime (#2202)
* fix Signed-off-by: Pawel Gadzinski <pgadzinski@nvidia.com> * fix Signed-off-by: Pawel Gadzinski <pgadzinski@nvidia.com> * fix Signed-off-by: Pawel Gadzinski <pgadzinski@nvidia.com> * fix Signed-off-by: Pawel Gadzinski <pgadzinski@nvidia.com> --------- Signed-off-by: Pawel Gadzinski <pgadzinski@nvidia.com>
1 parent afd15a1 commit 9e72796

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build_tools/pytorch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
def install_requirements() -> List[str]:
1616
"""Install dependencies for TE/PyTorch extensions."""
17-
return ["torch>=2.1", "einops", "onnxscript==0.3.1", "onnx"]
17+
return ["torch>=2.1", "einops", "onnxscript", "onnx"]
1818

1919

2020
def test_requirements() -> List[str]:

qa/L1_pytorch_onnx_unittest/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# See LICENSE for license information.
44

55

6-
pip3 install onnxruntime==1.20.1
7-
pip3 install onnxruntime_extensions==0.13.0
6+
pip3 install onnxruntime
7+
pip3 install onnxruntime_extensions
88

99
: ${TE_PATH:=/opt/transformerengine}
1010
: ${XML_LOG_DIR:=/logs}

0 commit comments

Comments
 (0)