Skip to content

Commit

Permalink
Set COMPACT for fastest build (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknw authored Oct 6, 2023
1 parent 84e41c2 commit 98394c7
Showing 1 changed file with 4 additions and 0 deletions.
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

0 comments on commit 98394c7

Please sign in to comment.