Skip to content

Cibw test #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Mar 24, 2023
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
CIBW_ENVIRONMENT_MACOS: BREW_LIBOMP="1"

# Uncomment to only build CPython wheels
CIBW_BUILD: "cp*"
# CIBW_BUILD: "cp*"

# macOS: build x86_64 and arm64
#CIBW_ARCHS_MACOS: "x86_64 arm64"
Expand Down
2 changes: 2 additions & 0 deletions add_arm_to_libomp_dylib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ tar -xzf $(brew --cache --bottle-tag=arm64_big_sur libomp) --strip-components 2
# merge
lipo armlib/lib/libomp.dylib $(brew --prefix libomp)/lib/libomp.dylib -output libomp.dylib -create
cp -f libomp.dylib $(brew --prefix libomp)/lib
rm libomp.dylib
rm -rf armlib
10 changes: 5 additions & 5 deletions suitesparse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ cd GraphBLAS-${VERSION}/build
# Also the build with all types enabled sometimes stalls on GitHub Actions. Probably due to exceeded resource limits.
# These can still be used, they'll just have reduced performance (AFAIK similar to UDTs).
# TODO
echo "#define GxB_NO_BOOL 1" >> ../Source/GB_control.h #
echo "#define GxB_NO_FP32 1" >> ../Source/GB_control.h #
echo "#define GxB_NO_FP64 1" >> ../Source/GB_control.h #
# echo "#define GxB_NO_BOOL 1" >> ../Source/GB_control.h #
# echo "#define GxB_NO_FP32 1" >> ../Source/GB_control.h #
# echo "#define GxB_NO_FP64 1" >> ../Source/GB_control.h #
echo "#define GxB_NO_FC32 1" >> ../Source/GB_control.h #
echo "#define GxB_NO_FC64 1" >> ../Source/GB_control.h #
echo "#define GxB_NO_INT16 1" >> ../Source/GB_control.h
echo "#define GxB_NO_INT32 1" >> ../Source/GB_control.h
echo "#define GxB_NO_INT64 1" >> ../Source/GB_control.h #
echo "#define GxB_NO_INT8 1" >> ../Source/GB_control.h
# echo "#define GxB_NO_INT64 1" >> ../Source/GB_control.h #
# echo "#define GxB_NO_INT8 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT16 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT32 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT64 1" >> ../Source/GB_control.h
Expand Down