Skip to content

Commit 79522ce

Browse files
authoredMay 5, 2023
Replace INT8 with BOOL for SUITESPARSE_FAST_BUILD (#86)
This should hopefully allow aarch64 wheel builds to build faster in CI.
1 parent 329f944 commit 79522ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
hooks:
2525
- id: validate-pyproject
2626
name: Validate pyproject.toml
27-
- repo: https://github.com/myint/autoflake
27+
- repo: https://github.com/PyCQA/autoflake
2828
rev: v2.1.1
2929
hooks:
3030
- id: autoflake
@@ -34,7 +34,7 @@ repos:
3434
hooks:
3535
- id: isort
3636
- repo: https://github.com/asottile/pyupgrade
37-
rev: v3.3.1
37+
rev: v3.3.2
3838
hooks:
3939
- id: pyupgrade
4040
args: [--py38-plus]

‎suitesparse.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ if [ -n "${SUITESPARSE_FAST_BUILD}" ]; then
6767
# Disable optimizing even more types. This is for builds that don't finish in runner resource limits,
6868
# such as emulated aarm64.
6969

70-
echo "#define GxB_NO_BOOL 1" >> ../Source/GB_control.h
70+
# echo "#define GxB_NO_BOOL 1" >> ../Source/GB_control.h
7171
# echo "#define GxB_NO_FP32 1" >> ../Source/GB_control.h
7272
# echo "#define GxB_NO_FP64 1" >> ../Source/GB_control.h
7373
echo "#define GxB_NO_FC32 1" >> ../Source/GB_control.h
7474
echo "#define GxB_NO_FC64 1" >> ../Source/GB_control.h
7575
echo "#define GxB_NO_INT16 1" >> ../Source/GB_control.h
7676
echo "#define GxB_NO_INT32 1" >> ../Source/GB_control.h
7777
# echo "#define GxB_NO_INT64 1" >> ../Source/GB_control.h
78-
# echo "#define GxB_NO_INT8 1" >> ../Source/GB_control.h
78+
echo "#define GxB_NO_INT8 1" >> ../Source/GB_control.h
7979
echo "#define GxB_NO_UINT16 1" >> ../Source/GB_control.h
8080
echo "#define GxB_NO_UINT32 1" >> ../Source/GB_control.h
8181
echo "#define GxB_NO_UINT64 1" >> ../Source/GB_control.h

0 commit comments

Comments
 (0)
Please sign in to comment.