From cb7ecea248f6055c4d51e557b11fd3b00616461b Mon Sep 17 00:00:00 2001 From: Tim Davis Date: Fri, 3 Nov 2023 19:20:42 -0500 Subject: [PATCH] turn off the JIT, for debugging --- GraphBLAS/cmake_modules/GraphBLAS_JIT_paths.cmake | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GraphBLAS/cmake_modules/GraphBLAS_JIT_paths.cmake b/GraphBLAS/cmake_modules/GraphBLAS_JIT_paths.cmake index e718fae789..4310327928 100644 --- a/GraphBLAS/cmake_modules/GraphBLAS_JIT_paths.cmake +++ b/GraphBLAS/cmake_modules/GraphBLAS_JIT_paths.cmake @@ -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)