Skip to content

Commit

Permalink
turn off the JIT, for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Nov 4, 2023
1 parent f48fa92 commit cb7ecea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions GraphBLAS/cmake_modules/GraphBLAS_JIT_paths.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ if ( SUITESPARSE_CUDA )
set ( COMPACT on )
endif ( )

option ( COMPACT "ON: do not compile FactoryKernels. OFF (default): compile FactoryKernels" off )
option ( NJIT "ON: do not use the CPU JIT. OFF (default): enable the CPU JIT" off )
# FIXME: COMPACT and NJIT default is ON
option ( COMPACT "ON: do not compile FactoryKernels. OFF (default): compile FactoryKernels" on )
option ( NJIT "ON: do not use the CPU JIT. OFF (default): enable the CPU JIT" on )

if ( NJIT )
# disable the CPU JIT (but keep any PreJIT kernels enabled)
Expand Down

0 comments on commit cb7ecea

Please sign in to comment.