Skip to content

Set COMPACT for fastest build #107

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 1 commit into from
Oct 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions suitesparse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ if [ -n "${SUITESPARSE_FASTEST_BUILD}" ]; then
echo "#define GxB_NO_UINT64 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT8 1" >> ../Source/GB_control.h

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