Skip to content

Commit 5f1a4bd

Browse files
committed
remove test from ci
1 parent 1ecd3b6 commit 5f1a4bd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/validate-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ jobs:
4545
repository: "pytorch/ao"
4646
with_cuda: "enable"
4747
with_rocm: "disable"
48-
smoke_test: "source ./.github/scripts/validate_binaries.sh && source ./.github/scripts/test_torch_version_torchao_version_compatibility.sh"
48+
smoke_test: "source ./.github/scripts/validate_binaries.sh"
4949
install_torch: true

torchao/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ def _parse_version(version_string):
5050
# users can set env var TORCH_INCOMPATIBLE=1 to skip loading .so files
5151
# this way, if they are using an incompatbile torch version, they can still use the API by setting the env var
5252
skip_loading_so_files = True
53-
# if torchao version has "+git", assume it's locally built and we don't know
54-
# anything about the PyTorch version used to build it unless user provides override flag
55-
# otherwise, assume it's prebuilt by torchao's build scripts and we can make
56-
# assumptions about the PyTorch version used to build it.
53+
# if torchao version has "+git", assume it's locally built and we don't know
54+
# anything about the PyTorch version used to build it unless user provides override flag
55+
# otherwise, assume it's prebuilt by torchao's build scripts and we can make
56+
# assumptions about the PyTorch version used to build it.
5757
elif not ("+git" in __version__) and not ("unknown" in __version__):
5858
# We know that torchao .so files built using PyTorch 2.8.0 are not ABI compatible with PyTorch 2.9+. (see #2919)
5959
# The following code skips importing the .so files if incompatible torch version is detected,

0 commit comments

Comments
 (0)