Skip to content

Commit 1fef6c5

Browse files
atalmanmalfet
andauthored
Fix check binary for arm64 (#1155)
* Fix check binary for arm64 * Update check_binary.sh Co-authored-by: Nikita Shulga <[email protected]> Co-authored-by: Nikita Shulga <[email protected]>
1 parent d888060 commit 1fef6c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

check_binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ fi
328328
if [[ "$PACKAGE_TYPE" == 'libtorch' ]]; then
329329
echo "Checking that MKL is available"
330330
build_and_run_example_cpp check-torch-mkl
331-
else
331+
elif [[ "$(uname -m)" != "arm64" ]]; then
332332
if [[ "$(uname)" != 'Darwin' || "$PACKAGE_TYPE" != *wheel ]]; then
333333
echo "Checking that MKL is available"
334334
pushd /tmp

0 commit comments

Comments
 (0)