From f48fa923693bf3432989437d8640be4878edc7fb Mon Sep 17 00:00:00 2001 From: Tim Davis Date: Fri, 3 Nov 2023 18:37:45 -0500 Subject: [PATCH] fix COMPACT mode --- GraphBLAS/CMakeLists.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/GraphBLAS/CMakeLists.txt b/GraphBLAS/CMakeLists.txt index 7e79fe4cdb..4b9d66106d 100644 --- a/GraphBLAS/CMakeLists.txt +++ b/GraphBLAS/CMakeLists.txt @@ -44,17 +44,12 @@ set ( NSTATIC_DEFAULT_ON true ) # set ( ENABLE_CUDA true ) include ( SuiteSparsePolicy ) -include ( GraphBLAS_JIT_paths ) if ( GRAPHBLAS_NSTATIC ) # ignore current value of NSTATIC and set it to ON set ( NSTATIC ON ) endif ( ) -#------------------------------------------------------------------------------- -# define the project -#------------------------------------------------------------------------------- - # FIXME: force COMPACT mode in GraphBLAS (while debugging) set ( COMPACT ON ) @@ -67,6 +62,8 @@ else ( ) message ( STATUS "GraphBLAS CUDA JIT: disabled") endif ( ) +include ( GraphBLAS_JIT_paths ) + #------------------------------------------------------------------------------- # find OpenMP, CUDA, RMM, and cpu_features #-------------------------------------------------------------------------------