Skip to content

Commit 3841a98

Browse files
fixed test script error
1 parent 13ab1d9 commit 3841a98

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
@@ -311,7 +311,7 @@ if [[ "$(uname)" == 'Linux' && "$PACKAGE_TYPE" == 'manywheel' ]]; then
311311
# gcc 11 - CUDA 11.8, xpu, rocm
312312
# gcc 13 - CUDA 12.6, 12.8 and cpu
313313
# Please see issue for reference: https://github.com/pytorch/pytorch/issues/152426
314-
if [[ "$(uname -m)" == "s390x" && "$(uname -m)" != "ppc64le" ]]; then
314+
if [[ "$(uname -m)" == "s390x" || "$(uname -m)" == "ppc64le" ]]; then
315315
cxx_abi="19"
316316
elif [[ "$DESIRED_CUDA" != 'xpu' && "$DESIRED_CUDA" != 'rocm'* ]]; then
317317
cxx_abi="18"

0 commit comments

Comments
 (0)