Skip to content

Commit e65eba1

Browse files
update script with new ppc condition
1 parent 50caae8 commit e65eba1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/pytorch/check_binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ if [[ "$(uname)" == 'Linux' && "$PACKAGE_TYPE" == 'manywheel' ]]; then
305305
# between precompiled headers and vectorization builtins.
306306
# This fix is not available in earlier gcc versions.
307307
# gcc-14 uses ABI19.
308-
if [[ "$(uname -m)" != "s390x" ]]; then
308+
if [[ "$(uname -m)" != "s390x" && "$(uname -m)" != "ppc64le" ]]; then
309309
python -c "import torch; exit(0 if torch._C._PYBIND11_BUILD_ABI == '_cxxabi1016' else 1)"
310310
fi
311311
popd

0 commit comments

Comments
 (0)