Skip to content

Commit 98394c7

Browse files
authored
Set COMPACT for fastest build (#107)
1 parent 84e41c2 commit 98394c7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

suitesparse.sh

+4
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ if [ -n "${SUITESPARSE_FASTEST_BUILD}" ]; then
105105
echo "#define GxB_NO_UINT64 1" >> ../Source/GB_control.h
106106
echo "#define GxB_NO_UINT8 1" >> ../Source/GB_control.h
107107

108+
# Setting COMPACT probably makes setting config in GB_control.h above unnecessary
109+
cmake_params+=(-DCOMPACT=1)
110+
# Also no JIT for the fastest possible build
111+
cmake_params+=(-DNJIT=1)
108112
# Disable all Source/Generated2 kernels. For workflow development only.
109113
cmake_params+=(-DCMAKE_CUDA_DEV=1)
110114
fi

0 commit comments

Comments
 (0)