Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixup for FBGEMM warning on aarch64-apple-darwin
Browse files Browse the repository at this point in the history
stemann committed Sep 12, 2022
1 parent 37cf586 commit 2184765
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions T/Torch/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -88,9 +88,9 @@ if [[ $target != arm-* && $target == *-linux-musl* ]]; then
cmake_extra_args+="-DUSE_SYSTEM_GLOO=ON "
fi
if [[ $target == aarch64-linux-* # A compiler with AVX512 support is required for FBGEM
|| $target == arm-linux-* # A compiler with AVX512 support is required for FBGEM
|| $target == i686-linux-* # x64 operating system is required for FBGEMM
if [[ $target == aarch64-* # A compiler with AVX512 support is required for FBGEM
|| $target == arm-* # A compiler with AVX512 support is required for FBGEM
|| $target == i686-* # x64 operating system is required for FBGEMM
|| $target == x86_64-w64-mingw32*
]]; then
cmake_extra_args+="-DUSE_FBGEMM=OFF -DUSE_FAKELOWP=OFF "

0 comments on commit 2184765

Please sign in to comment.