diff --git a/ChangeLog b/ChangeLog index 5a7736f636..3317b109ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ -Mar 9, 2022, SuiteSparse 5.11.0 +Mar 14, 2022, SuiteSparse 5.11.0 - * GraphBLAS v6.2.4: see GraphBLAS/Doc/ChangeLog for changes. + * GraphBLAS v6.2.5: see GraphBLAS/Doc/ChangeLog for changes. Primary ones highlighted here: * v2.0 API: v6.x complies with the v2.0 C API of the GraphBLAS Spec. Note that GrB_wait, GrB_Info are now different than in the v1.3 diff --git a/GraphBLAS/CMakeLists.txt b/GraphBLAS/CMakeLists.txt index 70effade3c..12be426d4f 100644 --- a/GraphBLAS/CMakeLists.txt +++ b/GraphBLAS/CMakeLists.txt @@ -26,10 +26,10 @@ endif ( ) set ( CMAKE_MACOSX_RPATH TRUE ) # version of SuiteSparse:GraphBLAS -set ( GraphBLAS_DATE "Mar 8, 2022" ) +set ( GraphBLAS_DATE "Mar 14, 2022" ) set ( GraphBLAS_VERSION_MAJOR 6 ) set ( GraphBLAS_VERSION_MINOR 2 ) -set ( GraphBLAS_VERSION_SUB 4 ) +set ( GraphBLAS_VERSION_SUB 5 ) message ( STATUS "Building SuiteSparse:GraphBLAS version: v" ${GraphBLAS_VERSION_MAJOR}.${GraphBLAS_VERSION_MINOR}.${GraphBLAS_VERSION_SUB} " date: " ${GraphBLAS_DATE} ) @@ -103,17 +103,19 @@ else ( ) endif ( ) # CUDA is under development for now, and not deployed in production: -set ( CMAKE_CUDA off) + set ( CMAKE_CUDA off) # Edit these lines for code development only, not for end-users: -# set ( GBCOMPACT true ) # set ( CMAKE_BUILD_TYPE Debug ) if ( CMAKE_CUDA ) + # for CUDA development only; not for production use + set ( CMAKE_CUDA_DEV on ) project ( graphblas VERSION "${GraphBLAS_VERSION_MAJOR}.${GraphBLAS_VERSION_MINOR}.${GraphBLAS_VERSION_SUB}" LANGUAGES CUDA C ) else ( ) + set ( CMAKE_CUDA_DEV off ) project ( graphblas VERSION "${GraphBLAS_VERSION_MAJOR}.${GraphBLAS_VERSION_MINOR}.${GraphBLAS_VERSION_SUB}" LANGUAGES C ) @@ -206,8 +208,9 @@ else ( ) message ( STATUS "Building dynamic GraphBLAS library" ) endif ( ) -if ( GBCOMPACT ) - set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DGBCOMPACT=1 " ) +if ( CMAKE_CUDA_DEV ) + # for CUDA development only; not for production use + set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DGBCUDA_DEV=1 " ) endif ( ) #------------------------------------------------------------------------------- @@ -252,7 +255,8 @@ message ( STATUS "CMAKE have OpenMP: " ${OPENMP_FOUND} ) set ( CMAKE_INCLUDE_CURRENT_DIR ON ) -if ( GBCOMPACT ) +if ( CMAKE_CUDA_DEV ) + # for CUDA development only; not for production use include_directories ( Source/Template Source Include Source/Generated1 lz4 Demo/Include rmm_wrap ) else ( ) include_directories ( Source/Template Source Include Source/Generated1 lz4 Source/Generated2 Demo/Include rmm_wrap ) @@ -352,7 +356,8 @@ set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CMAKE_CUDA_FLAG}" ) # - a public enum is extended (by adding a new item at the end, but without # changing the already existing items) -if ( GBCOMPACT ) +if ( CMAKE_CUDA_DEV ) + # for CUDA development only; not for production use file ( GLOB GRAPHBLAS_SOURCES "Source/*.c" "Source/Generated1/*.c" ) else ( ) file ( GLOB GRAPHBLAS_SOURCES "Source/*.c" "Source/Generated1/*.c" "Source/Generated2/*.c" ) diff --git a/GraphBLAS/CUDA/CMakeLists.txt b/GraphBLAS/CUDA/CMakeLists.txt index e4c7206292..de3472d8de 100644 --- a/GraphBLAS/CUDA/CMakeLists.txt +++ b/GraphBLAS/CUDA/CMakeLists.txt @@ -10,7 +10,8 @@ project(GRAPHBLAS_CUDA VERSION 0.1 LANGUAGES CXX CUDA) set(CMAKE_CUDA_FLAGS "-cudart static -lineinfo -G") set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --std=c++17 -fPIC ") -set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DGBNCPUFEAT=OFF") +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DGBNCPUFEAT") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DGBNCPUFEAT") set(CMAKE_C_STANDARD 11) message(STATUS "${CMAKE_CXX_FLAGS}") diff --git a/GraphBLAS/CUDA/GB_AxB_dot3_cuda.cu b/GraphBLAS/CUDA/GB_AxB_dot3_cuda.cu index b7f0dbeace..1451eac3f5 100644 --- a/GraphBLAS/CUDA/GB_AxB_dot3_cuda.cu +++ b/GraphBLAS/CUDA/GB_AxB_dot3_cuda.cu @@ -166,6 +166,9 @@ GrB_Info GB_AxB_dot3_cuda // C = A'*B using dot product method C->nvec_nonempty = M->nvec_nonempty ; C->nvec = M->nvec ; + // the dot3 CUDA kernel will produce C->i with jumbled indices + C->jumbled = true ; + GBURBLE ("(GPU C created and copied from M) ") ; //-------------------------------------------------------------------------- // stringify the semiring and the mask diff --git a/GraphBLAS/CUDA/GB_AxB_dot3_cuda_branch.cu b/GraphBLAS/CUDA/GB_AxB_dot3_cuda_branch.cu index e6c42593cb..11bd922439 100644 --- a/GraphBLAS/CUDA/GB_AxB_dot3_cuda_branch.cu +++ b/GraphBLAS/CUDA/GB_AxB_dot3_cuda_branch.cu @@ -33,11 +33,9 @@ bool GB_AxB_dot3_cuda_branch // that are not built-in, but consist solely of built-in types and // operators (such as BOR_BSHIFT on INT32 inputs). - int ngpus_to_use = 1 ; //GB_ngpus_to_use (work) ;) - GBURBLE (" work:%g gpus:%d ", work, ngpus_to_use) ; - if ( - // FIXME: user control over # GPUs to use - ngpus_to_use > 0 + int ngpus_to_use = GB_ngpus_to_use (work) ; + GBURBLE (" work:%g GPUs:%d ", work, ngpus_to_use) ; + if (ngpus_to_use > 0 // FIXME: FUTURE: user-defined types and operators && (semiring->header_size == 0) // semiring is built-in && (A->type->code != GB_UDT_code) @@ -47,7 +45,8 @@ bool GB_AxB_dot3_cuda_branch // FIXME: this is easy && !A->iso && !B->iso // FIXME: - && !GB_IS_BITMAP (A) && !GB_IS_BITMAP (B)) + && !GB_IS_BITMAP (A) && !GB_IS_BITMAP (B) + && !GB_IS_FULL (A) && !GB_IS_FULL (B)) { return true; } diff --git a/GraphBLAS/CUDA/GB_cuda_semiring_factory.hpp b/GraphBLAS/CUDA/GB_cuda_semiring_factory.hpp index ee77705b9a..ced1c800a3 100644 --- a/GraphBLAS/CUDA/GB_cuda_semiring_factory.hpp +++ b/GraphBLAS/CUDA/GB_cuda_semiring_factory.hpp @@ -86,7 +86,7 @@ class GB_cuda_semiring_factory: public jit::File_Desc { B_sparsity // sparsity structure of B ) ; - printf("scode=%uld\n", scode); + printf("scode=%lu\n", scode); std::cout << "done stringify semiring" << std::endl; this->sr_code = scode; diff --git a/GraphBLAS/CUDA/GB_reduce_to_scalar_cuda_branch.cu b/GraphBLAS/CUDA/GB_reduce_to_scalar_cuda_branch.cu index e1afeb30dc..438d93d120 100644 --- a/GraphBLAS/CUDA/GB_reduce_to_scalar_cuda_branch.cu +++ b/GraphBLAS/CUDA/GB_reduce_to_scalar_cuda_branch.cu @@ -15,6 +15,7 @@ bool GB_reduce_to_scalar_cuda_branch int ngpus_to_use = GB_ngpus_to_use (work) ; GBURBLE (" work:%g gpus:%d ", work, ngpus_to_use) ; + printf (" work:%g gpus:%d ", work, ngpus_to_use) ; if (ngpus_to_use > 0 && (reduce->header_size == 0) // semiring is built-in && (A->type->code != GB_UDT_code)) diff --git a/GraphBLAS/CUDA/GB_stringify_semiring.c b/GraphBLAS/CUDA/GB_stringify_semiring.c index 28119d0e49..988743eb4f 100644 --- a/GraphBLAS/CUDA/GB_stringify_semiring.c +++ b/GraphBLAS/CUDA/GB_stringify_semiring.c @@ -78,7 +78,8 @@ void GB_enumify_semiring // enumerate a semiring //-------------------------------------------------------------------------- // get the semiring //-------------------------------------------------------------------------- - printf("inside enumify: %lu\n", semiring); + printf("inside enumify: %p\n", semiring); + GxB_print (semiring, 3) ; printf("Getting semiring add\n"); GrB_Monoid add = semiring->add ; @@ -232,11 +233,15 @@ void GB_enumify_semiring // enumerate a semiring // total scode bits: 60 - printf("coinstructing semiring scode\n"); + printf("constructing semiring scode\n"); #define LSHIFT(x,k) (((uint64_t) x) << k) - // TODO: We need to - printf("add_ecode: %d, mult_ecode: %d\n", add_ecode, mult_ecode); + printf("before: add_ecode: %d, id_ecode: %d, term_ecode: %d, mult_ecode: %d, flipxy: %d, zcode: %d, " + "xcode: %d, ycode: %d, mask_ecode: %d, ccode: %d, acode: %d, bcode: %d, csparsity: %d, msparsity: %d, " + "asparsity: %d, bsparsity: %d\n", add_ecode, id_ecode, term_ecode, mult_ecode, flipxy, zcode, xcode, ycode, mask_ecode, + ccode, acode, bcode, csparsity, msparsity, asparsity, bsparsity); + + (*scode) = // range bits @@ -255,8 +260,6 @@ void GB_enumify_semiring // enumerate a semiring // mask LSHIFT (mask_ecode , 20) | // 0 to 13 4 - printf("serialized mask ecode: %d\n", mask_ecode); - // types of C, A, and B (bool, int*, uint*, etc) LSHIFT (ccode , 16) | // 1 to 14 4 LSHIFT (acode , 12) | // 0 to 14 4 @@ -268,6 +271,8 @@ void GB_enumify_semiring // enumerate a semiring LSHIFT (asparsity , 2) | // 0 to 3 2 LSHIFT (bsparsity , 0) ; // 0 to 3 2 + printf("serialized_scode: %lu\n", *scode); + printf("done enumify semiring\n"); @@ -291,8 +296,8 @@ void GB_macrofy_semiring // construct all macros for a semiring // extract the semiring scode //-------------------------------------------------------------------------- -#define RSHIFT(x,k,b) (x >> k) & ((0x00000001 << b) -1) -//#define RSHIFT(x,k,b) (x >> k) & ((((uint64_t) 1) << b) - 1) +#define RSHIFT(x,k,b) (x >> k) & ((((uint64_t)0x00000001) << b) -1) +//#define RSHIFT(x,k,b) (x >> k) & ((((uint64_t) 1) << (64-k) + b) - 1) // monoid int add_ecode = RSHIFT (scode, 55, 5) ; @@ -313,16 +318,29 @@ void GB_macrofy_semiring // construct all macros for a semiring printf("deserialized mask ecode: %d\n", mask_ecode); // types of C, A, and B - int acode = RSHIFT (scode, 16, 4) ; - int bcode = RSHIFT (scode, 12, 4) ; - int ccode = RSHIFT (scode, 8, 4) ; + int ccode = RSHIFT (scode, 16, 4) ; + int acode = RSHIFT (scode, 12, 4) ; + int bcode = RSHIFT (scode, 8, 4) ; + printf("deserialized acode: %d\n", acode); + + // TODO: I have a suspicion here that these might not + // be getting serialized properly because they are the + // only elements which require only 2 bits. // formats of C, A, and B int csparsity = RSHIFT (scode, 6, 2) ; int msparsity = RSHIFT (scode, 4, 2) ; int asparsity = RSHIFT (scode, 2, 2) ; int bsparsity = RSHIFT (scode, 0, 2) ; + printf("after: add_ecode: %d, id_ecode: %d, term_ecode: %d, mult_ecode: %d, flipxy: %d, zcode: %d, " + "xcode: %d, ycode: %d, mask_ecode: %d, ccode: %d, acode: %d, bcode: %d, csparsity: %d, msparsity: %d, " + "asparsity: %d, bsparsity: %d\n", add_ecode, id_ecode, term_ecode, mult_ecode, flipxy, zcode, xcode, ycode, mask_ecode, + ccode, acode, bcode, csparsity, msparsity, asparsity, bsparsity); + + printf("a sparsity ecode after rshift: %d\n", asparsity); + + //-------------------------------------------------------------------------- // construct macros to load scalars from A and B (and typecast) them //-------------------------------------------------------------------------- diff --git a/GraphBLAS/CUDA/jitFactory.hpp b/GraphBLAS/CUDA/jitFactory.hpp index 1b2b9abf5b..f597d961d9 100644 --- a/GraphBLAS/CUDA/jitFactory.hpp +++ b/GraphBLAS/CUDA/jitFactory.hpp @@ -44,6 +44,7 @@ #include "GrB_Semiring_new.c" #include "GB_Monoid_new.c" #include "GrB_Monoid_new.c" +#include "GB_cuda_buckets.h" #include "type_name.hpp" @@ -84,7 +85,7 @@ template class spdotFactory ; //AxB_dot3_phase1 kernel launchers -template< typename T_C, typename T_M, typename T_A, typename T_B> class phase1launchFactory ; +template< typename T_C, typename T_M, typename T_A, typename T_B, int threads_per_block, int chunk_size> class phase1launchFactory ; //AxB_dot3_phase3 kernel launchers @@ -110,81 +111,65 @@ const std::vector compiler_flags{ const std::vector header_names ={}; - // FIXME: Need to be able to convert from GrB_Type->std::type to populate these templates // this isn't going to be known at compile time. -template< typename T_C, typename T_M, typename T_A, typename T_B> +template< typename T_C, typename T_M, typename T_A, typename T_B, int threads_per_block=32, int chunk_size = 128> class phase1launchFactory { std::string base_name = "GB_jit"; std::string kernel_name = "AxB_phase1"; -// TODO REMOVE: std::string template_name = "GB_jit_AxB_phase1.cu"; - GrB_Monoid monoid_; - GrB_BinaryOp binop_; - -public: - // This assumes the needed state on the GB_cuda_semiring_factory - // has already been populated - phase1launchFactory(GrB_Monoid monoid, GrB_BinaryOp binop): monoid_(monoid), binop_(binop){} + GB_cuda_semiring_factory &semiring_factory_; - bool jitGridBlockLaunch(int gridsz, int blocksz, - int64_t *nanobuckets, int64_t *blockBucket, - // FIXME: This should be GrB_Matrix directly (matrix is just a builder for testing) - GrB_Matrix C, GrB_Matrix M, GrB_Matrix A, GrB_Matrix B) - { - - bool result = false; +public: - // Defining dummy instance only so we can introspect type - T_M dumM; + int get_number_of_blocks(GrB_Matrix M) { + int number_of_sms = GB_Global_gpu_sm_get (0); + int nblks = ( GB_nnz (M) + chunk_size - 1)/chunk_size; + return GB_IMIN( nblks, 128 * number_of_sms); + } - dim3 grid(gridsz); - dim3 block(blocksz); + int get_threads_per_block() { + return threads_per_block; + } -// std::cout << "Semiring: " << semiring << std::endl; + // This assumes the needed state on the GB_cuda_semiring_factory + // has already been populated + phase1launchFactory(GB_cuda_semiring_factory &semiring_factory): semiring_factory_(semiring_factory){} - GB_cuda_semiring_factory mysemiringfactory = GB_cuda_semiring_factory ( ) ; + bool jitGridBlockLaunch(int64_t *nanobuckets, int64_t *blockBucket, + GrB_Matrix C, GrB_Matrix M, GrB_Matrix A, GrB_Matrix B) { - /** - * Build semiring - */ - GrB_Semiring mysemiring; -// -// // FIXME: These should be created from the given template types - auto grb_info = GrB_Semiring_new(&mysemiring, monoid_, binop_); + // Idea is to have each task work on a continguous block of columns of C + // Note: for small tests, mnz is small so ntasks is be governed by + // chunksize, not 128*number_of_sms. For large problems in production, + // chunksize is less important since ntasks will likely be bounded by + // 128*number_of_sms (say 128*80 = 10,240 on a V100). - std::cout << "semiring pointer: " << mysemiring << std::endl; - bool flipxy = false; - bool mask_struct = false; - bool mask_comp = false; + // Defining dummy instance only so we can introspect type + T_M dumM; std::cout << "A TYpe: " << A->type << std::endl; std::cout << "B TYpe: " << B->type << std::endl; // // (1) create the semiring code and name - mysemiringfactory.semiring_factory ( mysemiring, flipxy, - C->type, M->type, - A->type, B->type, - mask_struct, // matrix types - mask_comp, GB_sparsity(C), - GB_sparsity(M), - GB_sparsity(A), - GB_sparsity(B) ) ; // // (2) ensure the jitifier has "GB_semiring_[mysemiring.sr_code].h" jit::GBJitCache filecache = jit::GBJitCache::Instance() ; - filecache.getFile (mysemiringfactory) ; + filecache.getFile (semiring_factory_) ; std::stringstream string_to_be_jitted ; std::vector template_types = {GET_TYPE_NAME(dumM)}; - std::string hashable_name = base_name + "_" + kernel_name; - string_to_be_jitted << hashable_name << std::endl << - R"(#include ")" << jit::get_user_home_cache_dir() << "/" << mysemiringfactory.filename << R"(")" << std::endl << - R"(#include ")" << hashable_name << R"(.cu")" << std::endl; + std::string hashable_name = base_name + "_" + kernel_name; + string_to_be_jitted << hashable_name << std::endl << + R"(#include ")" << jit::get_user_home_cache_dir() << "/" << semiring_factory_.filename << R"(")" << std::endl << + R"(#include ")" << hashable_name << R"(.cu")" << std::endl; std::cout << string_to_be_jitted.str(); + bool result = false; + dim3 grid(get_number_of_blocks(M)); + dim3 block(get_threads_per_block()); jit::launcher( hashable_name, string_to_be_jitted.str(), @@ -202,7 +187,7 @@ class phase1launchFactory } }; -template< typename T_C> +template< typename T_C, int threads_per_block = 32, int chunk_size = 128> class phase2launchFactory { @@ -211,35 +196,27 @@ class phase2launchFactory public: - #if 0 - void AxB_phase2 - ( - // input, not modified: - int64_t *__restrict__ nanobuckets, // array of size 12-blockDim.x-by-nblocks - int64_t *__restrict__ blockbucket, // global bucket count, of size 12*nblocks - // output: - int64_t *__restrict__ bucketp, // global bucket cumsum, of size 13 - int64_t *__restrict__ bucket, // global buckets, of size cnz (== mnz) - int64_t *__restrict__ offset, // global offsets, for each bucket - // inputs, not modified: - const int nblocks // input number of blocks to reduce - ) - #endif - - bool jitGridBlockLaunch(// launcher input: - int gridsz, int blocksz, - // parameters to AxB_phase2: + int get_threads_per_block() { + return threads_per_block; + } + + int get_number_of_blocks(GrB_Matrix M) { + const int64_t mnz = GB_nnz (M) ; + int ntasks = ( mnz +chunk_size -1)/chunk_size; + // Idea is to have each task work on a continguous block of columns of C + ntasks = GB_IMIN( ntasks, 128*GB_Global_gpu_sm_get (0)) ; // ntasks will be grid.x + return (ntasks + threads_per_block - 1) / threads_per_block ; + } + + bool jitGridBlockLaunch(// parameters to AxB_phase2: int64_t *nanobuckets, int64_t *blockBucket, int64_t *bucketp, int64_t *bucket, int64_t *offset, - const int64_t nblocks ) - { - - bool result = false; + GrB_Matrix M) { - dim3 grid(gridsz); - dim3 block(blocksz); + bool result = false; -// std::cout<< kernel_name<<" with types " < +template< typename T_C, int threads_per_block = 32, int chunk_size = 128> class phase2endlaunchFactory { @@ -276,35 +254,30 @@ class phase2endlaunchFactory public: - #if 0 - // The jitified kernel itself: - void GB_AxB_dot3_phase2end - ( - // input, not modified: - int64_t *__restrict__ nanobuckets, // array of size 12-blockDim.x-by-nblocks - const int64_t *__restrict__ blockbucket, // global bucket count, of size 12*nblocks - // output: - const int64_t *__restrict__ bucketp, // global bucket cumsum, of size 13 - int64_t *__restrict__ bucket, // global buckets, of size cnz (== mnz) - const int64_t *__restrict__ offset, // global offsets, for each bucket - // inputs, not modified: - const GrB_Matrix C, // output matrix - const int64_t cnz // number of entries in C and M - ) - #endif - - bool jitGridBlockLaunch(int gridsz, int blocksz, - int64_t *nanobuckets, int64_t *blockBucket, + int get_threads_per_block() { + return threads_per_block; + } + + int get_number_of_blocks(GrB_Matrix M) { + const int64_t mnz = GB_nnz (M) ; + int ntasks = ( mnz +chunk_size -1)/chunk_size; + int number_of_sms = GB_Global_gpu_sm_get (0); + + // Idea is to have each task work on a continguous block of columns of C + return GB_IMIN( ntasks, 128*number_of_sms) ; // ntasks will be grid.x + } + + bool jitGridBlockLaunch(int64_t *nanobuckets, int64_t *blockBucket, int64_t *bucketp, int64_t *bucket, int64_t *offset, - GrB_Matrix C, const int64_t cnz) + GrB_Matrix C, GrB_Matrix M) { bool result = false; T_C dumC; - dim3 grid(gridsz); - dim3 block(blocksz); + dim3 grid(get_number_of_blocks(M)); + dim3 block(get_threads_per_block()); std::string hashable_name = base_name + "_" + kernel_name; std::stringstream string_to_be_jitted ; @@ -321,7 +294,7 @@ class phase2endlaunchFactory file_callback) .set_kernel_inst( kernel_name , {}) .configure(grid, block) - .launch( nanobuckets, blockBucket, bucketp, bucket, offset, C, cnz); + .launch( nanobuckets, blockBucket, bucketp, bucket, offset, C, GB_nnz (M)); checkCudaErrors( cudaDeviceSynchronize() ); result= true; @@ -331,31 +304,30 @@ class phase2endlaunchFactory }; -template< typename T_C, typename T_M, typename T_A, typename T_B, typename T_XY, typename T_Z> +template< typename T_C, typename T_M, typename T_A, typename T_B, typename T_XY, typename T_Z> class phase3launchFactory { std::string base_name = "GB_jit"; std::string kernel_name = "AxB_dot3"; - std::string op_name = "phase3"; - GB_cuda_semiring_factory &semiring_factory; + GB_cuda_semiring_factory &semiring_factory_; + GB_bucket_code bucket_code_; GB_callback callback_generator; public: - // This assumes the needed state on the GB_cuda_semiring_factory - // has already been populated - phase3launchFactory(GB_cuda_semiring_factory &mysemiring) { - semiring_factory = mysemiring; - } - bool jitGridBlockLaunch(int gridsz, int blocksz, - int64_t *nanobuckets, int64_t *blockBucket, - int64_t *bucketp, - int64_t start, int64_t end, int64_t *bucket, - matrix *C, matrix *M, matrix *A, matrix *B, - int sz) - { + + + /** + * This assumes the needed state on the GB_cuda_semiring_factory has already been populated. + * The `bucket_code` determines which kernel is launched + */ + phase3launchFactory(GB_cuda_semiring_factory &mysemiringfactory, GB_bucket_code bucket_code): + semiring_factory_(mysemiringfactory), bucket_code_(bucket_code) {} + + bool jitGridBlockLaunch(int64_t start, int64_t end, int64_t *bucketp, int64_t *bucket, + GrB_Matrix C, GrB_Matrix M, GrB_Matrix A, GrB_Matrix B) { bool result = false; @@ -367,59 +339,179 @@ class phase3launchFactory T_Z dumZ; - dim3 grid(gridsz); - dim3 block(blocksz); + //---------------------------------------------------------------------- + // phase3: do the numerical work + //---------------------------------------------------------------------- - std::string hashable_name = base_name + "_" + kernel_name + "_" + op_name; + C->nzombies = bucketp[1]; //set pre-zombie counts + const int64_t Cnz = GB_nnz (C) ; + const int64_t mnvec = M->nvec ; - std::stringstream string_to_be_jitted ; - string_to_be_jitted << - kernel_name << R"(" - #include )" << hashable_name << R"(".cuh")"; + int gridsz, blocksz, sz = 4; - // dump it: - std::cout << string_to_be_jitted.str(); + std::stringstream final_kernel_name_ss; + final_kernel_name_ss << kernel_name << "_"; - jit::launcher( base_name + kernel_name, - string_to_be_jitted.str(), - header_names, - compiler_flags, - file_callback) - .set_kernel_inst( base_name + kernel_name, - { GET_TYPE_NAME(dumC), - GET_TYPE_NAME(dumA), - GET_TYPE_NAME(dumB), - GET_TYPE_NAME(dumXY), - GET_TYPE_NAME(dumXY), - GET_TYPE_NAME(dumZ)}) - .configure(grid, block) - .launch( nanobuckets, blockBucket, bucketp, start, end, bucket, C, M, A, B, sz); + /** + * Configure geometry and kernel function name based on sparsity of C and number of vectors in M + */ + configure(Cnz, mnvec, final_kernel_name_ss, blocksz, gridsz, sz); + std::string hashable_name = base_name + "_" + final_kernel_name_ss.str(); + std::stringstream string_to_be_jitted ; -// jit::launcher( base_name + SR + OpName+ GET_TYPE_NAME(dumZ), -// jit_template, -// header_names, -// compiler_flags, -// file_callback) -// -// .set_kernel_inst( kernel_name+OpName, -// { GET_TYPE_NAME(dumC), -// GET_TYPE_NAME(dumA), -// GET_TYPE_NAME(dumB), -// GET_TYPE_NAME(dumXY), -// GET_TYPE_NAME(dumXY), -// GET_TYPE_NAME(dumZ) -// }) -// .configure(grid, block) -// .launch( start, end, Bucket, -// C, M, A, B, sz); + jit::GBJitCache filecache = jit::GBJitCache::Instance() ; + filecache.getFile (semiring_factory_) ; - checkCudaErrors( cudaDeviceSynchronize() ); - result= true; + string_to_be_jitted << hashable_name << std::endl << + R"(#include ")" << jit::get_user_home_cache_dir() << "/" << semiring_factory_.filename << R"(")" << std::endl << + R"(#include ")" << hashable_name << R"(.cu")" << std::endl; - return result; - } + std::cout << "String to be jitted: " << string_to_be_jitted.str() << std::endl; + + dim3 grid(gridsz); + dim3 block(blocksz); + std::cout<< "program name =" <= 256 entries) + case GB_BUCKET_DNSP : + // A(:,i) is sparse (>= 256 entries) and B(:,j) is dense + case GB_BUCKET_SPDN : + printf("Confiring spdn"); + sz = 256 ; + Opname = "phase3_spdn" ; + blocksz = 32; + gridsz = ( Cnz -1 + blocksz)/blocksz; + break ; + + //-------------------------------------------------------------- + // CUDA kernel: vssp, handles 1 bucket, uses binary search: + //-------------------------------------------------------------- + + // A(:,i) is very sparse compared to B(:,j), or visa versa + case GB_BUCKET_VSSP : + Opname = "phase3_vssp" ; + blocksz = 32; + gridsz = ( Cnz -1 + blocksz)/blocksz; + break ; + + //-------------------------------------------------------------- + // CUDA kernel: vsvs, handles 4 buckets: + //-------------------------------------------------------------- + + // let len = nnz (A (:,i) + nnz (B (:,j)), then: + + case GB_BUCKET_VSVS_256 : sz += 256-64 ; + case GB_BUCKET_VSVS_64 : sz += 64-16 ; + case GB_BUCKET_VSVS_16 : sz += 16-4 ; + case GB_BUCKET_VSVS_4 : sz += 4 ; + Opname = "phase3_vsvs" ; + blocksz = 1024; + gridsz = GB_IMIN( 1024*number_of_sms, ( Cnz + blocksz -1 )/blocksz); + gridsz = ( Cnz + blocksz -1 )/blocksz; + break ; + + //-------------------------------------------------------------- + // CUDA kernel: mp, use the merge-path method: + //-------------------------------------------------------------- + + case GB_BUCKET_MERGEPATH : + Opname = "phase3_mp" ; + blocksz = 32; + gridsz = ( Cnz -1 + blocksz)/blocksz; + break ; + + case GB_BUCKET_WARP_IX : sz = 32 ; + Opname = "phase3_warpix" ; + blocksz = 32; + gridsz = GB_IMIN( (mnvec+15)/16, 256*number_of_sms); + break ; + + default: + break ; + } + + opname << Opname; + } }; //template diff --git a/GraphBLAS/CUDA/matrix.h b/GraphBLAS/CUDA/matrix.h index 3aa26dd699..508f04533f 100644 --- a/GraphBLAS/CUDA/matrix.h +++ b/GraphBLAS/CUDA/matrix.h @@ -39,6 +39,15 @@ // #include "GraphBLAS.h" +#undef restrict +#undef GB_restrict +#if defined ( GB_CUDA_KERNEL ) || defined ( __NVCC__ ) + #define GB_restrict __restrict__ +#else + #define GB_restrict +#endif +#define restrict GB_restrict + #include #include #include @@ -122,6 +131,7 @@ GrB_Desc_Value ; #include "GB_opaque.h" #endif + #include "GB_imin.h" #include "GB_zombie.h" #include "GB_nnz.h" diff --git a/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_mp.cu b/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_mp.cu index 6b2ffc6cab..9609d581c9 100644 --- a/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_mp.cu +++ b/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_mp.cu @@ -125,12 +125,12 @@ __global__ void AxB_dot3_phase3_mp int64_t i = Mi[pair_id]; int64_t j = Ci[pair_id] >> 4; - int64_t xstart = Ap[i]; - int64_t xend = Ap[i+1]; + int64_t xstart = Ap[j]; + int64_t xend = Ap[j+1]; nnzA = xend - xstart; - int64_t ystart = Bp[j]; - int64_t yend = Bp[j+1]; + int64_t ystart = Bp[i]; + int64_t yend = Bp[i+1]; nnzB = yend - ystart; n_intersect = GB_IMIN( xend -xstart, yend -ystart); diff --git a/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_spdn.cu b/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_spdn.cu index 7ef99ca61a..560f52d5b9 100644 --- a/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_spdn.cu +++ b/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_spdn.cu @@ -20,6 +20,29 @@ #include #include "matrix.h" +#include + +#define tile_sz 32 + +//#include "local_cub/block/block_reduce.cuh" + + +using namespace cooperative_groups; + +// TODO: Put this in a shared location +template< typename T, int warpSize > +__device__ T reduce_sum(thread_block_tile g, T val) +{ + // Each iteration halves the number of active threads + // Each thread adds its partial sum[i] to sum[lane+i] + for (int i = g.size() / 2; i > 0; i /= 2) + { + val += g.shfl_down(val,i) ; + } + return val; // note: only thread 0 will return full sum +} + + template< typename T_C, typename T_A, typename T_B, typename T_X, typename T_Y, typename T_Z> __global__ void AxB_dot3_phase3_spdn ( @@ -33,7 +56,6 @@ __global__ void AxB_dot3_phase3_spdn int sz ) { - T_A *Ax = (T_A*)A->x; T_B *Bx = (T_B*)B->x; T_C *Cx = (T_C*)C->x; @@ -44,90 +66,233 @@ __global__ void AxB_dot3_phase3_spdn int64_t *Ap = A->p; int64_t *Bp = B->p; + C->jumbled = true; + +// typedef cub::BlockReduce BlockReduce; +// __shared__ typename BlockReduce::TempStorage temp_storage; + // sz = expected non-zeros per dot int m = 256/sz; - int nvecs = end - start; - int dpt = nvecs/32; + int nvec = end - start; + int dpt = nvec/32; m = dpt < m ? dpt : m; - //if( threadIdx.x ==0) - // printf("thd:%d %d dots/thrd, nvecs = %d blockDim=%d\n",threadIdx.x, sz, nvecs, blockDim.x); - //__syncthreads(); - int dots = (nvecs +m -1)/m; + if( threadIdx.x ==0) + printf("thd:%d %d dots/thrd, nvec = %d blockDim=%d\n",threadIdx.x, sz, nvec, blockDim.x); + __syncthreads(); + int dots = (nvec +m -1)/m; + +// printf("dots=%d, m=%d, dpt=%d\n", dots, m, dpt); int zc = 0; for ( int tid= threadIdx.x +blockDim.x*blockIdx.x; tid < dots; tid += blockDim.x * gridDim.x) { int pair_id, im; - //if (threadIdx.x ==0) - // printf("thd%u pi=%lld\n",tid, start+threadIdx.x); - // __syncthreads(); + if (threadIdx.x ==0) + printf("thd%u pi=%lld\n",tid, start+threadIdx.x); + __syncthreads(); for (pair_id = start+tid, im = 0; im < m && pair_id < end; ++im, pair_id += dots ){ - int64_t i = Mi[pair_id]; - int64_t j = Ci[pair_id] >> 4; - //if (threadIdx.x ==0) - // printf("thd%u i,j=%lld,%lld\n",tid, i,j); - // __syncthreads(); - - // printf("thd%d pi=%d xn=%lld yn=%lld\n",tid, pair_id, - // A->p[i+1]- A->p[i], - // B->p[j+1]- B->p[j]); - - int64_t pA = Ap[i]; - int64_t pA_end = Ap[i+1]; - int64_t nnzA = pA_end - pA; - int64_t pB = Bp[i]; - int64_t pB_end = Bp[i+1]; - int64_t nnzB = pB_end - pB; - T_A aki; - T_B bkj; - T_Z cij; - - if( nnzA == A->vlen) // A is dense - { - int64_t k = Bi [pB] ; // first row index of B(:,j) - // cij = A(k,i) * B(k,j) - GB_GETA ( aki=(T_Z)Ax[pA+k] ) ; // aki = A(k,i) - GB_GETB ( bkj=(T_Z)Bx[pB] ) ; // bkj = B(k,j) - GB_C_MULT ( cij, aki, bkj ) ; // cij = aki * bkj - - for (int64_t p = pB+1 ; p < pB_end ; p++) - { - //GB_DOT_TERMINAL (cij) ; // break if cij == terminal - int64_t k = Bi [p] ; // next row index of B(:,j) - // cij += A(k,i) * B(k,j) - GB_GETA ( aki=(T_Z)Ax[pA+k] ) ; // aki = A(k,i) - GB_GETB ( bkj=(T_Z)Bx[p] ) ; // bkj = B(k,j) - GB_MULTADD ( cij, aki, bkj ) ; // cij += aki * bkj - } - - } - if( nnzB == B->vlen) // B is dense - { - int64_t k = Ai [pA] ; // first row index of A(:,i) - // cij = A(k,i) * B(k,j) - GB_GETA ( aki=(T_Z)Ax[ pA ] ) ; // aki = A(k,i) - GB_GETB ( bkj=(T_Z)Bx[ pB+k ] ) ; // bkj = B(k,j) - GB_C_MULT ( cij, aki, bkj) ; // cij = aki * bkj - - for (int64_t p = pA+1 ; p < pA_end ; p++) - { - //GB_DOT_TERMINAL (cij) ; // break if cij == terminal - int64_t k = Ai [p] ; // next row index of A(:,i) - // cij += A(k,i) * B(k,j) - GB_GETA ( aki=(T_Z)Ax[ p ] ) ; // aki = A(k,i) - GB_GETB ( bkj=(T_Z)Bx[ pB+k] ) ; // bkj = B(k,j) - GB_MULTADD ( cij, aki, bkj) ; // cij += aki * bkj - } - } + int64_t i = Mi[pair_id]; // cols from mask + + // TODO: column of Ci / 16? + int64_t j = Ci[pair_id] >> 4; // row number of C + + printf("tid=%d, i=%lu, j=%lu\n", threadIdx.x, i, j); + + if (threadIdx.x ==0) + printf("thd%u i,j=%lld,%lld\n",tid, i,j); + __syncthreads(); + + // Prime row offsets for both A and B + int64_t pA = Ap[j]; // row of C + int64_t pA_end = Ap[j+1]; + int64_t nnzA = pA_end - pA; + int64_t pB = Bp[i]; // col of C + int64_t pB_end = Bp[i+1]; + int64_t nnzB = pB_end - pB; + T_A aki; + T_B bkj; + T_Z cij; + + int zombie_count = 0; + + if (nnzA == 0 || nnzB == 0) + { + i = GB_FLIP (i) ; + zombie_count +=1; + } + else if( nnzA == A->vlen) // A is dense + { + /** + * A is dense, iterate over columns of B, applying monoid and binary op to current + */ + int64_t k = Bi [pB] ; // first row index of B(:,j) + // cij = A(k,i) * B(k,j) + GB_GETA ( aki=(T_Z)Ax[pA+k] ) ; // aki = A(k,i) + GB_GETB ( bkj=(T_Z)Bx[pB] ) ; // bkj = B(k,j) + + + // TODO: Check tha GB_C_MULT applies the identity automatically since cij has not been initialized + GB_C_MULT ( cij, aki, bkj ) ; // cij = aki * bkj + + printf("A_dense: tid=%d, pair_id=%d, i=%lu, j=%lu, nnzA=%lu, nnzB=%lu, k[B]=%lu, aki=%d, bkj=%d, cij=%d\n", threadIdx.x, pair_id, i, j, nnzA, nnzB, k, aki, bkj, cij); + + /** + * + */ + for (int64_t p = pB+1 ; p < pB_end ; ++p) + { + //GB_DOT_TERMINAL (cij) ; // break if cij == terminal + int64_t k = Bi [p] ; // next row index of B(:,j) + // cij += A(k,i) * B(k,j) + GB_GETA ( aki=(T_Z)Ax[pA+k] ) ; // aki = A(k,i) + GB_GETB ( bkj=(T_Z)Bx[p] ) ; // bkj = B(k,j) + GB_MULTADD ( cij, aki, bkj ) ; // cij += aki * bkj + printf("in_loop: tid=%d, pair_id=%d, i=%lu, j=%lu, nnzA=%lu, nnzB=%lu, k[B]=%lu, aki=%d, bkj=%d, cij=%d\n", threadIdx.x, pair_id, i, j, nnzA, nnzB, k, aki, bkj, cij); + } + + } + else if( nnzB == B->vlen) // B is dense + { + int64_t k = Ai [pA] ; // first col index of A(i, :) + // cij = A(i,k) * B(j,k) + GB_GETA ( aki=(T_Z)Ax[ pA ] ) ; // aki = A(i,k) + + // Jump straight to position in B vector (since we know it's dense) + GB_GETB ( bkj=(T_Z)Bx[ pB+k ] ) ; // bkj = B(k,j) + + GB_C_MULT ( cij, aki, bkj) ; // cij = aki * bkj + printf("B_dense: tid=%d, pair_id=%d, i=%lu, j=%lu, nnzA=%lu, nnzB=%lu, k[B]=%lu, aki=%d, bkj=%d, cij=%d\n", threadIdx.x, pair_id, i, j, nnzA, nnzB, k, aki, bkj, cij); + + for (int64_t p = pA+1 ; p < pA_end ; ++p) + { + //GB_DOT_TERMINAL (cij) ; // break if cij == terminal + int64_t k = Ai [p] ; // next row index of A(:,i) + // cij += A(k,i) * B(k,j) + GB_GETA ( aki=(T_Z)Ax[ p ] ) ; // aki = A(i,k) + GB_GETB ( bkj=(T_Z)Bx[ pB+k] ) ; // bkj = B(j,k) + GB_MULTADD ( cij, aki, bkj) ; // cij += aik * bjk + printf("in_loop: tid=%d, pair_id=%d, i=%lu, j=%lu, nnzA=%lu, nnzB=%lu, k[B]=%lu, aki=%d, bkj=%d, cij=%d\n", threadIdx.x, pair_id, i, j, nnzA, nnzB, k, aki, bkj, cij); + } + } + // C(i,j) = A(:,i) * B(:,j) +// /** +// * If A is bitmap, we need to look up offset and nnz of B +// * and treat Ax as fully dense (size=n*k). +// */ +// +// // TODO: We probably want to pull this into a separate and +// // much smaller kernel just for these formats (e.g. spdn w/ B=bitmap, A=sparse) +// #if ( GB_A_IS_BITMAP ) // A is dense +// { +// int64_t pB = Bp[i]; +// int64_t pB_end = Bp[i+1]; +// int64_t nnzB = pB_end - pB; +// int64_t k = Bi [pB] ; // first row index of B(:,j) +// // cij = A(k,i) * B(k,j) +// +//// printf("tid=%d, A is dense, k=%ld, i=%ld\n", threadIdx.x, k, i); +// GB_GETA ( aki=(T_Z)Ax[pA + i] ) ; // aki = A(k,i) +// GB_GETB ( bkj=(T_Z)Bx[pB] ) ; // bkj = B(k,j) +// cij = GB_MULT(aki, bkj ) ; // cij = aki * bkj +// +// } +// +// //TODO: We probably want to pull this into a separate +// // much smaller kernel just for these formats (e.g. spdn w/ B=full, A=sparse) +// /** +// * If A is full, we need to look up offset and nzz of B +// * and treat Ax as fully dense (size=n*k) +// */ +// #elif ( GB_A_IS_FULL ) // A is dense +// { +// int64_t pB = Bp[i]; +// int64_t pB_end = Bp[i+1]; +// int64_t nnzB = pB_end - pB; +// +// int64_t k = Bi [pB] ; // first row index of B(:,j) +// // cij = A(k,i) * B(k,j) +// +//// printf("tid=%d, A is dense, k=%ld, i=%ld\n", threadIdx.x, k, i); +// GB_GETA ( aki=(T_Z)Ax[pA + i] ) ; // aki = A(k,i) +// GB_GETB ( bkj=(T_Z)Bx[pB] ) ; // bkj = B(k,j) +// cij = GB_MULT(aki, bkj ) ; // cij = aki * bkj +// +// for (int64_t p = pB+1 ; p < pB_end ; p++) +// { +// //GB_DOT_TERMINAL (cij) ; // break if cij == terminal +// int64_t k = Bi [p] ; // next row index of B(:,j) +// // cij += A(k,i) * B(k,j) +// GB_GETA ( aki=(T_Z)Ax[A->vlen * i + k] ) ; // aki = A(k,i) +// GB_GETB ( bkj=(T_Z)Bx[p] ) ; // bkj = B(k,j) +// cij = GB_ADD ( cij, GB_MULT(aki, bkj ) ) ; // cij += aki * bkj +// } +// } +// +// /** +// * If A is sparse but current row of A is dense, we need to look up +// * offset of B and offset of A +// */ +// #elif (GB_B_IS_BITMAP) +// { +// +// } +// +// #elif (GB_B_IS_FULL) +// { +// +// } +// +// /** +// * If +// */ +// #else +// { +// +// +// int64_t pA = Ap[i]; +// int64_t pA_end = Ap[i+1]; +// int64_t nnzA = pA_end - pA; +// +// int64_t k = Ai [pA] ; // first row index of A(:,i) +//// printf("tid=%d, B is dense, k=%ld, j=%ld\n", threadIdx.x, k, j); +// // cij = A(k,i) * B(k,j) +// GB_GETA ( aki= (T_Z)Ax[ pA ] ) ; // aki = A(k,i) +// GB_GETB ( bkj=(T_Z)Bx[ B->vlen*k+j ] ) ; // bkj = B(k,j) +// +// cij = GB_MULT(aki, bkj) ; // cij = aki * bkj +//// printf("aki=%d, bkj=%d, cij=%d\n", aki, bkj, cij); +// +// for (int64_t p = pA+1 ; p < pA_end ; p++) +// { +// //GB_DOT_TERMINAL (cij) ; // break if cij == terminal +// int64_t k = Ai [p] ; // next row index of A(:,i) +// // cij += A(k,i) * B(k,j) +// GB_GETA ( aki=(T_Z)Ax[ p ] ) ; // aki = A(k,i) +// GB_GETB ( bkj=(T_Z)Bx[ B->vlen*k+j] ) ; // bkj = B(k,j) +// cij = GB_ADD ( cij, GB_MULT(aki, bkj) ); // cij += aki * bkj +//// printf("aki=%d, bkj=%d, cij=%d\n", aki, bkj, cij); +// } +// } else { +// if(threadIdx.x == 0 && blockIdx.x == 0) { +// printf("ERROR: At least one side must be dense.\n"); +// break; +// } +// } GB_PUTC( Ci[pair_id]=i ) ; GB_PUTC( Cx[pair_id]=cij ) ; - + +// int zc = BlockReduce(temp_storage).Sum(zombie_count); + thread_block_tile tile = tiled_partition( this_thread_block()); + int zc = reduce_sum(tile, zombie_count); + + if(threadIdx.x == 0 && zc > 0) + atomicAdd(&(C->nzombies), zc); } } diff --git a/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_vssp.cu b/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_vssp.cu index 509b478574..106dec76b8 100644 --- a/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_vssp.cu +++ b/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_vssp.cu @@ -34,6 +34,7 @@ #include #include #include +//#include "GB_binary_search.h" #include "matrix.h" // Using tile size fixed at compile time, we don't need shared memory @@ -110,12 +111,12 @@ __global__ void AxB_dot3_phase3_vssp continue; } - int64_t pA = Ap[i]; - int64_t pA_end = Ap[i+1]; + int64_t pA = Ap[j]; + int64_t pA_end = Ap[j+1]; int64_t nnzA = pA_end - pA; - int64_t pB = B->p[j]; - int64_t pB_end = B->p[j+1]; + int64_t pB = B->p[i]; + int64_t pB_end = B->p[i+1]; int64_t nnzB = pB_end - pB; //Search for each nonzero in the smaller vector to find intersection diff --git a/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_vsvs.cu b/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_vsvs.cu index 02808cf658..bf3f431622 100644 --- a/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_vsvs.cu +++ b/GraphBLAS/CUDA/templates/GB_jit_AxB_dot3_phase3_vsvs.cu @@ -25,6 +25,7 @@ #include #include #include "matrix.h" +//#include "GB_binary_search.h" using namespace cooperative_groups; @@ -116,16 +117,14 @@ __global__ void AxB_dot3_phase3_vsvs int pfirst, plast; GB_PARTITION (pfirst, plast, dots, blockIdx.x, gridDim.x ) ; - /* if( threadIdx.x ==0 ) { printf("block%d %d dots/thrd, start,end = %ld,%ld pf,pl=%d,%d blockDim=%d\n", - blockIdx.x, (dots + blockDim.x*gridDim.x -1)/(blockDim.x*gridDim.x), + blockIdx.x, (dots + blockDim.x*gridDim.x -1)/(blockDim.x*gridDim.x), start, end, pfirst, plast, blockDim.x); } __syncthreads(); - */ - + int zc = 0 ; diff --git a/GraphBLAS/CUDA/templates/GB_jit_AxB_phase2end.cu b/GraphBLAS/CUDA/templates/GB_jit_AxB_phase2end.cu index ec71b8a6c0..fd1a449d6a 100644 --- a/GraphBLAS/CUDA/templates/GB_jit_AxB_phase2end.cu +++ b/GraphBLAS/CUDA/templates/GB_jit_AxB_phase2end.cu @@ -67,7 +67,7 @@ void AxB_phase2end int64_t my_bucket_ ## bucket = \ nanobucket [bucket * blockDim.x] \ + blockbucket [bucket * gridDim.x + blockIdx.x]\ - + bucketp [bucket] ; + + bucketp [bucket] ; LOAD_NANOBUCKET (0) ; LOAD_NANOBUCKET (1) ; diff --git a/GraphBLAS/CUDA/test/dataFactory.hpp b/GraphBLAS/CUDA/test/dataFactory.hpp index f74f2b4917..3007dce662 100644 --- a/GraphBLAS/CUDA/test/dataFactory.hpp +++ b/GraphBLAS/CUDA/test/dataFactory.hpp @@ -5,9 +5,12 @@ #include #include #include +#include +#include "GB.h" #include "../type_convert.hpp" #include "../GB_Matrix_allocate.h" +#include "test_utility.hpp" static const char *_cudaGetErrorEnum(cudaError_t error) { return cudaGetErrorName(error); @@ -60,6 +63,11 @@ inline void __printLastCudaError(const char *errorMessage, const char *file, } #define CHECK_CUDA(call) checkCudaErrors( call ) +// CAUTION: This assumes our indices are small enough to fit into a 32-bit int. +inline std::int64_t gen_key(std::int64_t i, std::int64_t j) { + return (std::int64_t) i << 32 | (std::int64_t) j; +} + //Vector generators template void fillvector_linear( int N, T *vec) { @@ -108,13 +116,13 @@ class matrix : public Managed { uint64_t get_zombie_count() { return mat->nzombies;} void clear() { - GrB_Matrix_clear (mat) ; + GRB_TRY (GrB_Matrix_clear (mat)) ; } void alloc() { GrB_Type type = cuda::to_grb_type(); - GrB_Matrix_new (&mat, type, nrows_, ncols_) ; + GRB_TRY (GrB_Matrix_new (&mat, type, nrows_, ncols_)) ; // GxB_Matrix_Option_set (mat, GxB_SPARSITY_CONTROL, // GxB_SPARSE) ; // or: @@ -125,14 +133,22 @@ class matrix : public Managed { // sizeof(T), nrows, ncols, 2, false, false, Nz, -1); } - // FIXME: We probably want this to go away - void fill_random( int64_t nnz, bool debug_print = false) { + void fill_random( int64_t nnz, int gxb_sparsity_control, int gxb_format, std::int64_t seed = 12345ULL, T val_min = 0.0, T val_max = 2.0 , bool debug_print = false) { - std::cout << "inside fill" << std::endl; - alloc(); + std::cout << "inside fill, using seed "<< seed << std::endl; + alloc(); - int64_t inv_sparsity = (nrows_*ncols_)/nnz; //= values not taken per value occupied in index space + double inv_sparsity ; + if (nnz < 0) + { + // build a matrix with all entries present + inv_sparsity = 1 ; + } + else + { + inv_sparsity = ceil(((double)nrows_*ncols_)/nnz); //= values not taken per value occupied in index space + } std::cout<< "fill_random nrows="<< nrows_<<"ncols=" << ncols_ <<" need "<< nnz<<" values, invsparse = "< dis(0.0, 1.0); - for (int64_t k = 0 ; k < nnz ; k++) - { - GrB_Index i = ((GrB_Index) (dis(r) * nrows_)) % ((GrB_Index) nrows_) ; - GrB_Index j = ((GrB_Index) (dis(r) * ncols_)) % ((GrB_Index) ncols_) ; - if (no_self_edges && (i == j)) continue ; - double x = dis(r) ; - // A (i,j) = x - cuda::set_element (mat, x, i, j) ; - if (make_symmetric) - { - // A (j,i) = x - cuda::set_element(mat, x, j, i) ; - } - } - - GrB_Matrix_wait (mat, GrB_MATERIALIZE) ; + + if (nnz < 0) + { + for (int64_t i = 0 ; i < nrows_ ; i++) + { + for (int64_t j = 0 ; j < ncols_ ; j++) + { + T x = (T)(dis(r) * (val_max - val_min)) + (T)val_min ; + if (make_symmetric) + { + // A (i,j) = x + cuda::set_element (mat, x, i, j) ; + // A (j,i) = x + cuda::set_element (mat, x, j, i) ; + } + else + { + // A (i,j) = x + cuda::set_element (mat, x, i, j) ; + } + } + } + } + else + { + unordered_set key_lookup; + + while(key_lookup.size() < nnz) { + GrB_Index i = ((GrB_Index) (dis(r) * nrows_)) % ((GrB_Index) nrows_) ; + GrB_Index j = ((GrB_Index) (dis(r) * ncols_)) % ((GrB_Index) ncols_) ; + + key_lookup.insert(gen_key(i, j)); + } + + for (int64_t k : key_lookup) + { + GrB_Index i = k >> 32; + GrB_Index j = k & 0x0000ffff; + + if (no_self_edges && (i == j)) continue ; + T x = (T)(dis(r) * (val_max - val_min)) + (T)val_min ; + // A (i,j) = x + cuda::set_element (mat, x, i, j) ; + if (make_symmetric) { + // A (j,i) = x + cuda::set_element(mat, x, j, i) ; + } + } + } + + GRB_TRY (GrB_Matrix_wait (mat, GrB_MATERIALIZE)) ; + GB_convert_any_to_non_iso (mat, true, NULL) ; // TODO: Need to specify these - GxB_Matrix_Option_set (mat, GxB_FORMAT, GxB_BY_ROW) ; - GxB_Matrix_Option_set (mat, GxB_SPARSITY_CONTROL, GxB_SPARSE) ; - GrB_Matrix_nvals ((GrB_Index *) &nnz, mat) ; - GxB_Matrix_fprint (mat, "my mat", GxB_SHORT_VERBOSE, stdout) ; - - printf("a_vector = ["); - for (int p = 0; p < nnz; p++) { - printf("%ld, ", mat->i [p]); - if (p > 100) { printf ("...\n") ; break ; } + GRB_TRY (GxB_Matrix_Option_set (mat, GxB_SPARSITY_CONTROL, gxb_sparsity_control)) ; + GRB_TRY (GxB_Matrix_Option_set(mat, GxB_FORMAT, gxb_format)); + GRB_TRY (GrB_Matrix_nvals ((GrB_Index *) &nnz, mat)) ; + GRB_TRY (GxB_Matrix_fprint (mat, "my mat", GxB_SHORT_VERBOSE, stdout)) ; + + bool iso ; + GRB_TRY (GxB_Matrix_iso (&iso, mat)) ; + if (iso) + { + printf ("Die! (cannot do iso)\n") ; + GRB_TRY (GrB_Matrix_free (&mat)) ; } - printf("]\n"); + } - } }; - - template< typename T_C, typename T_M, typename T_A, typename T_B> class SpGEMM_problem_generator { @@ -216,6 +266,21 @@ class SpGEMM_problem_generator { matrix* getAptr(){ return A;} matrix* getBptr(){ return B;} + void init_A(std::int64_t Anz, int gxb_sparsity_control, int gxb_format, std::int64_t seed = 12345ULL, T_A min_val = 0.0, T_A max_val = 2.0) { + Anzpercent = float(Anz)/float(nrows_*ncols_); + A->fill_random(Anz, gxb_sparsity_control, gxb_format, seed, min_val, max_val); + } + + void init_B(std::int64_t Bnz, int gxb_sparsity_control, int gxb_format, std::int64_t seed = 54321ULL, T_B min_val = 0.0, T_B max_val = 2.0) { + Bnzpercent = float(Bnz)/float(nrows_*ncols_); + B->fill_random(Bnz, gxb_sparsity_control, gxb_format, seed, min_val, max_val); + } + + GrB_Matrix getC(){ return C->get_grb_matrix();} + GrB_Matrix getM(){ return M->get_grb_matrix();} + GrB_Matrix getA(){ return A->get_grb_matrix();} + GrB_Matrix getB(){ return B->get_grb_matrix();} + int64_t* getBucket() { return Bucket;} int64_t* getBucketStart(){ return BucketStart;} @@ -227,33 +292,23 @@ class SpGEMM_problem_generator { C->mat->i[r] = c << 4 ; //shift to store bucket info } } - } - void init(int64_t Anz, int64_t Bnz, float Cnzpercent){ + void init_C(float Cnzp, std::int64_t seed_c = 23456ULL, std::int64_t seed_m = 4567ULL){ // Get sizes relative to fully dense matrices - Anzpercent = float(Anz)/float(nrows_*ncols_); - Bnzpercent = float(Bnz)/float(nrows_*ncols_); - Cnzpercent = Cnzpercent; - Cnz = (int64_t)(Cnzpercent * nrows_ * ncols_); - std::cout<<"Anz% ="<fill_random(Cnz); - M->fill_random(Cnz); - A->fill_random(Anz); - B->fill_random(Bnz); - - - std::cout<<"fill complete"<mat->p = M->mat->p; //same column pointers (assuming CSC here) - C->mat->p_shallow = true ; // C->mat does not own M->mat->p - - loadCj(); + C->fill_random(Cnz, GxB_SPARSE, GxB_BY_ROW, seed_m); + M->fill_random(Cnz, GxB_SPARSE, GxB_BY_ROW, seed_m); +// std::cout<<"fill complete"<mat->p = M->mat->p; //same column pointers (assuming CSC here) +// C->mat->p_shallow = true ; // C->mat does not own M->mat->p } void del(){ @@ -282,7 +337,7 @@ class SpGEMM_problem_generator { BucketStart[0] = 0; BucketStart[12] = Cnz; for (int b = 1; b < 12; ++b){ - BucketStart[b] = BucketStart[b-1] + (Cnz / 12); + BucketStart[b] = BucketStart[b-1] + (Cnz / 12); //std::cout<< "bucket "<< b<<" starts at "<\n", + "#include \n", + "\n", + "template\n", + "class TestData {\n", + "\n", + "public:\n", + " TestData( std::vector A_indptr_,\n", + " std::vector A_indices_,\n", + " std::vector A_data_,\n", + "\n", + " std::vector B_indptr_,\n", + " std::vector B_indices_,\n", + " std::vector B_data_,\n", + "\n", + "\n", + " std::vector C_indptr_,\n", + " std::vector C_indices_,\n", + " std::vector C_data_,\n", + "\n", + " std::vector M_indptr_,\n", + " std::vector M_indices_,\n", + " std::vector M_data_):\n", + " A_indptr(A_indptr_), A_indices(A_indices_), A_data(A_data_),\n", + " B_indptr(B_indptr_), B_indices(B_indices_), B_data(B_data_),\n", + " C_indptr(C_indptr_), C_indices(C_indices_), C_data(C_data_),\n", + " M_indptr(M_indptr_), M_indices(M_indices_), M_data(M_data_){}\n", + "\n", + "\n", + " std::vector A_indptr;\n", + " std::vector A_indices;\n", + " std::vector A_data;\n", + " \n", + " std::vector B_indptr;\n", + " std::vector B_indices;\n", + " std::vector B_data;\n", + " \n", + " \n", + " std::vector C_indptr;\n", + " std::vector C_indices;\n", + " std::vector C_data;\n", + "\n", + " std::vector M_indptr;\n", + " std::vector M_indices;\n", + " std::vector M_data;\n", + "\n", + "};\n", + "\n", + "template\n", + "std::unique_ptr> make_karate_tricount() {\n", + "\n", + " std::vector A_indptr = %s;\n", + " std::vector A_indices = %s;\n", + " std::vector A_data = %s;\n", + "\n", + " std::vector B_indptr = %s;\n", + " std::vector B_indices = %s;\n", + " std::vector B_data = %s;\n", + "\n", + " std::vector M_indptr = %s;\n", + " std::vector M_indices = %s;\n", + " std::vector M_data = %s;\n", + "\n", + " std::vector C_indptr = %s;\n", + " std::vector C_indices = %s;\n", + " std::vector C_data = %s;\n", + "\n", + " TestData karate_tricount(A_indptr, A_indices, A_data,\n", + " B_indptr, B_indices, B_data,\n", + " C_indptr, C_indices, C_data,\n", + " M_indptr, M_indices, M_data);\n", + "\n", + " return std::make_unique>(karate_tricount);\n", + "}\n", + "\n", + "\n", + "\n", + "TestData karate_tricount;\n", + "karate.A_indptr = %s;\n", + "karate.A_indices = %s;\n", + "karate.A_data = %s;\n", + "\n", + "karate.B_indptr = %s;\n", + "karate.B_indices = %s;\n", + "karate.B_data = %s;\n", + "\n", + "karate.M_indptr = %s;\n", + "karate.M_indices = %s;\n", + "karate.M_data = %s;\n", + "\n", + "karate.C_indptr = %s;\n", + "karate.C_indices = %s;\n", + "karate.C_data = %s;\n", + "\"\"\" % data" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "b8c2c497-7156-449e-9c44-6fa19bdedea3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'\\ntemplate\\nstruct TestData {\\n\\n std::vector A_indptr;\\n std::vector A_indices;\\n std::vector A_data;\\n \\n std::vector B_indptr;\\n std::vector B_indices;\\n std::vector B_data;\\n \\n \\n std::vector C_indptr;\\n std::vector C_indices;\\n std::vector C_data;\\n\\n std::vector M_indptr;\\n std::vector M_indices;\\n std::vector M_data;\\n\\n}\\n\\n\\nTestData karate_tricount;\\nkarate.A_indptr = { 0,16,24,32,35,37,40,41,41,44,45,45,45,45,46,48,50,50,50,52,53,55,55,57,\\n 62,65,66,68,69,71,73,75,77,78,78};\\nkarate.A_indices = { 1, 2, 3, 4, 5, 6, 7, 8,10,11,12,13,17,19,21,31, 2, 3, 7,13,17,19,21,30,\\n 3, 7, 8, 9,13,27,28,32, 7,12,13, 6,10, 6,10,16,16,30,32,33,33,33,32,33,\\n 32,33,32,33,33,32,33,32,33,25,27,29,32,33,25,27,31,31,29,33,33,31,33,32,\\n 33,32,33,32,33,33};\\nkarate.A_data = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\\n 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\\n 1,1,1,1};\\n\\nkarate.B_indptr = { 0, 0, 1, 3, 6, 7, 8,11,15,17,18,21,22,24,28,28,28,30,32,32,34,34,36,36,\\n 36,36,38,38,41,42,44,46,50,61,78};\\nkarate.B_indices = { 0, 0, 1, 3, 6, 7, 8,11,15,17,18,21,22,24,28,28,28,30,32,32,34,34,36,36,\\n 36,36,38,38,41,42,44,46,50,61,78};\\nkarate.B_data = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\\n 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\\n 1,1,1,1};\\n\\nkarate.M_indptr = { 0, 16, 25, 35, 41, 44, 48, 52, 56, 61, 63, 66, 67, 69, 74, 76, 78, 80,\\n 82, 84, 87, 89, 91, 93, 98,101,104,106,110,113,117,121,127,139,156};\\nkarate.M_indices = { 0, 16, 25, 35, 41, 44, 48, 52, 56, 61, 63, 66, 67, 69, 74, 76, 78, 80,\\n 82, 84, 87, 89, 91, 93, 98,101,104,106,110,113,117,121,127,139,156};\\nkarate.M_data = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\\n 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\\n 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\\n 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,\\n 1,1,1,1,1,1,1,1};\\n\\nkarate.C_indptr = { 0, 0, 7,12,17,19,21,24,27,29,29,31,31,32,35,35,35,36,37,37,38,38,39,39,\\n 39,39,40,40,41,41,43,45,47,51,56};\\nkarate.C_indices = { 0, 0, 7,12,17,19,21,24,27,29,29,31,31,32,35,35,35,36,37,37,38,38,39,39,\\n 39,39,40,40,41,41,43,45,47,51,56};\\nkarate.C_data = { 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 2, 1, 2, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1,\\n 1, 2, 3, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1,\\n 1, 1,10, 1, 2, 1, 1,10};\\n'" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "output_str" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "f0c11d60-a542-41b7-afe6-38d93df094f7", + "metadata": {}, + "outputs": [], + "source": [ + "def store_file(output_string, filename = \"test_data.hpp\"):\n", + " with open(filename, 'w') as f:\n", + " f.write(output_string)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "bc22e70f-5373-4e80-88d5-c18e9c03cf76", + "metadata": {}, + "outputs": [], + "source": [ + "store_file(output_str)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "255965d0-b90b-4ad7-a53a-9f5eb4745906", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python (cuml_2204_0222222_2)", + "language": "python", + "name": "cuml_2204_022222_2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.7" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/GraphBLAS/CUDA/test/jitTestFactory.hpp b/GraphBLAS/CUDA/test/jitTestFactory.hpp index 387b057aa4..1631d5310d 100644 --- a/GraphBLAS/CUDA/test/jitTestFactory.hpp +++ b/GraphBLAS/CUDA/test/jitTestFactory.hpp @@ -6,11 +6,13 @@ #include #include #include +#include //#include "GB_binary_search.h" #include "GpuTimer.h" #include "GB_cuda_buckets.h" #include "../../rmm_wrap/rmm_wrap.h" #include +#include "test_data.hpp" extern "C" { #include "GB.h" @@ -62,16 +64,9 @@ bool test_AxB_dot3_phase2_factory( int , int64_t , int64_t , int64_t, int64_t ) //Fixture to generate valid inputs and hold them for tests class AxB_dot3_Test : public ::testing::Test { - void SetUp() - { + void SetUp() {} - - } - - void TearDown() - { - - } + void TearDown() {} }; template @@ -98,7 +93,14 @@ bool test_AxB_phase1_factory( int TB, int64_t N, int64_t Anz, int64_t Bnz, GrB_M std::cout<< "found device "< p1lF(monoid, binop); + /************************** + * Create reference and input data + */ + + // FIXME: This should be getting set automatically somehow. + bool flipxy = false; + bool mask_struct = false; + bool mask_comp = false; SpGEMM_problem_generator G(N, N); int64_t Annz = N*N; @@ -107,56 +109,70 @@ bool test_AxB_phase1_factory( int TB, int64_t N, int64_t Anz, int64_t Bnz, GrB_M float Cnzpercent = (float) Cnz/(N*N); // TODO: Allocate and fill arrays for buckets and nano buckets - G.init(Annz, Bnnz, Cnzpercent); + G.init_A(Annz, GxB_SPARSE, GxB_BY_ROW); + G.init_B(Bnnz, GxB_SPARSE, GxB_BY_ROW); + G.init_C(Cnzpercent); G.fill_buckets( TB ); // all elements go to testbucket= TB - matrix* C = G.getCptr(); - matrix* M = G.getMptr(); - matrix* A = G.getAptr(); - matrix* B = G.getBptr(); - - int nthrd = 32; - int sz = 4; - //int m = 256/sz; + GrB_Matrix C = G.getC(); + GrB_Matrix M = G.getM(); + GrB_Matrix A = G.getA(); + GrB_Matrix B = G.getB(); + + /************************ + * Create semiring factory + */ + + GB_cuda_semiring_factory mysemiringfactory = GB_cuda_semiring_factory ( ) ; + GrB_Semiring mysemiring; + auto grb_info = GrB_Semiring_new(&mysemiring, monoid, binop); + GRB_TRY (grb_info) ; + + mysemiringfactory.semiring_factory ( mysemiring, flipxy, + C->type, + M->type, + A->type, + B->type, + mask_struct, // matrix types + mask_comp, GB_sparsity(C), + GB_sparsity(M), + GB_sparsity(A), + GB_sparsity(B)); + + /******************** + * Launch kernel + */ + + phase1launchFactory p1lF(mysemiringfactory); GpuTimer kernTimer; kernTimer.Start(); - #define chunksize 128 - - const int64_t mnz = GB_nnz (M->mat) ; - - int number_of_sms = GB_Global_gpu_sm_get (0) ; - - int ntasks = ( mnz + chunksize - 1)/chunksize; - - // Idea is to have each task work on a continguous block of columns of C - // Note: for small tests, mnz is small so ntasks is be governed by - // chunksize, not 128*number_of_sms. For large problems in production, - // chunksize is less important since ntasks will likely be bounded by - // 128*number_of_sms (say 128*80 = 10,240 on a V100). - ntasks = GB_IMIN( ntasks, 128*number_of_sms) ; // ntasks will be grid.x + int nthrd = p1lF.get_threads_per_block(); + int ntasks = p1lF.get_number_of_blocks(M); // TODO: Verify that RMM is checking and throwing exceptions int nanobuckets_size = NBUCKETS * nthrd * ntasks; - - printf("nanobuckets_size: %d\n", nanobuckets_size); - int64_t *Nanobuckets = (int64_t*)rmm_wrap_malloc(nanobuckets_size * sizeof (int64_t)); int blockbuckets_size = NBUCKETS * ntasks; + printf("nanobuckets_size: %d\n", nanobuckets_size); printf("blockbuckets_size: %d\n", blockbuckets_size); - int64_t *Blockbucket = (int64_t*)rmm_wrap_malloc(blockbuckets_size * sizeof (int64_t)); - p1lF.jitGridBlockLaunch( ntasks, nthrd, Nanobuckets, Blockbucket, - C->get_grb_matrix(), M->get_grb_matrix(), - A->get_grb_matrix(), B->get_grb_matrix()); + int64_t *Nanobuckets = (int64_t*)rmm_wrap_malloc(nanobuckets_size * sizeof (int64_t)); + int64_t *Blockbucket = (int64_t*)rmm_wrap_malloc(blockbuckets_size * sizeof (int64_t)); +// +// std::cout << "INvoking grid block launch for phase1" << std::endl; + p1lF.jitGridBlockLaunch(Nanobuckets, Blockbucket, C, M, A, B); kernTimer.Stop(); std::cout<<"returned from phase1 kernel "<(Nanobuckets, nanobuckets_size, "Nanobuckets"); - print_array(Blockbucket, blockbuckets_size, "Blockbucket"); - std::cout<<"==== phase1 done=============================" <(Nanobuckets, nanobuckets_size, "Nanobuckets"); +// print_array(Blockbucket, blockbuckets_size, "Blockbucket"); +// std::cout<<"==== phase1 done=============================" <* C = G.getCptr(); - matrix* M = G.getMptr(); // note: values are not accessed - -// matrix* A = G.getAptr(); -// matrix* B = G.getBptr(); -// -// T_C *Cx = C->mat->x; -// T_C *Ax = A->mat->x; -// T_C *Bx = B->mat->x; - int nthrd = 32; - // int sz = 4; - //int m = 256/sz; + GrB_Matrix C = G.getC(); + GrB_Matrix M = G.getM(); // note: values are not accessed GpuTimer kernTimer; kernTimer.Start(); + const int64_t mnz = GB_nnz (M) ; - #define chunksize 128 - - const int64_t mnz = GB_nnz (M->mat) ; - - std::cout << "mnz: " << mnz << std::endl; - - int number_of_sms = GB_Global_gpu_sm_get (0) ; - - printf("number of sms: %d\n", number_of_sms); - - int ntasks = ( mnz +chunksize -1)/chunksize; - - printf("ntasks before: %d\n", ntasks); - - // Idea is to have each task work on a continguous block of columns of C - ntasks = GB_IMIN( ntasks, 128*number_of_sms) ; // ntasks will be grid.x - - printf("ntasks after: %d (done in phase1)\n", ntasks); - - // ntasks is the # of tasks that were created by phase1. phase2 uses a - // much smaller grid (fewer thread blocks) than phase1 or phase2end, - // with p2ntasks. - int p2ntasks = (ntasks + nthrd - 1) / nthrd ; - printf("p2ntasks %d\n", p2ntasks); + int nthrd = p2lF.get_threads_per_block(); + int ntasks = p2elF.get_number_of_blocks(M); // fabricate data as if it came from phase1: - // TODO: Verify that RMM is checking and throwing exceptions int64_t *nanobuckets = (int64_t*)rmm_wrap_malloc(NBUCKETS * nthrd * ntasks * sizeof (int64_t)); int64_t *blockbucket = (int64_t*)rmm_wrap_malloc(NBUCKETS * ntasks * sizeof (int64_t)); int64_t *bucketp = (int64_t*)rmm_wrap_malloc((NBUCKETS+1) * sizeof (int64_t)); @@ -240,14 +227,14 @@ bool test_AxB_phase2_factory( int TB, int64_t N, int64_t Anz, int64_t Bnz) fillvector_constant(NBUCKETS * ntasks, blockbucket, (int64_t)1); fillvector_constant(NBUCKETS, bucketp, (int64_t)1); - print_array(nanobuckets, NBUCKETS*nthrd*ntasks, "nanobuckets"); - print_array(blockbucket, NBUCKETS*ntasks, "blockbucket"); - - // launch phase2 (just with p2ntasks as the # of tasks) - p2lF.jitGridBlockLaunch( p2ntasks, nthrd, nanobuckets, blockbucket, - bucketp, bucket, offset, /* phase1 size was: */ ntasks); - - // do the reduction between phase2 and phase2end +// print_array(nanobuckets, NBUCKETS*nthrd*ntasks, "nanobuckets"); +// print_array(blockbucket, NBUCKETS*ntasks, "blockbucket"); +// +// // launch phase2 (just with p2ntasks as the # of tasks) + p2lF.jitGridBlockLaunch(nanobuckets, blockbucket, + bucketp, bucket, offset, M); +// +// // do the reduction between phase2 and phase2end int64_t s= 0; for ( int bucket = 0 ; bucket < NBUCKETS+1; ++bucket) { @@ -257,241 +244,328 @@ bool test_AxB_phase2_factory( int TB, int64_t N, int64_t Anz, int64_t Bnz) } // launch phase2end: note same # of tasks as phase1 - const int64_t cnz = mnz ; // the size of M and C (including the zombie count in C) - p2elF.jitGridBlockLaunch( ntasks, nthrd, nanobuckets, blockbucket, - bucketp, bucket, offset, C->get_grb_matrix(), cnz); - kernTimer.Stop(); - std::cout<<"returned from phase2 kernel "<(bucketp, NBUCKETS, "bucketp"); +// print_array(bucket, mnz, "bucket"); +// std::cout<<"phase2 kernel done =================="<(bucketp, NBUCKETS, "bucketp"); - print_array(bucket, mnz, "bucket"); - std::cout<<"phase2 kernel done =================="< +void make_grb_matrix(GrB_Matrix &mat, std::vector &indptr, std::vector &indices, std::vector &data, + int gxb_sparsity_control = GxB_SPARSE, int gxb_format = GxB_BY_ROW) { + + GrB_Type type = cuda::to_grb_type(); + + int64_t n_rows = indptr.size() -1; + int64_t n_cols = n_rows; + GRB_TRY (GrB_Matrix_new (&mat, type, n_rows, n_cols)) ; + + for(int64_t row = 0; row < n_rows; ++row) { + int64_t start = indptr[row]; + int64_t stop = indptr[row+1]; + + for(int64_t offset = start; offset < stop; ++offset) { + GrB_Index i = (GrB_Index) row; + GrB_Index j = (GrB_Index) indices[offset]; + T x = data[offset]; + + cuda::set_element (mat, x, i, j) ; + } + } + + GRB_TRY (GrB_Matrix_wait (mat, GrB_MATERIALIZE)) ; + GRB_TRY (GB_convert_any_to_non_iso (mat, true, NULL)) ; + // TODO: Need to specify these + GRB_TRY (GxB_Matrix_Option_set (mat, GxB_SPARSITY_CONTROL, gxb_sparsity_control)) ; + GRB_TRY (GxB_Matrix_Option_set(mat, GxB_FORMAT, gxb_format)); + GRB_TRY (GxB_Matrix_fprint (mat, "my mat", GxB_SHORT_VERBOSE, stdout)) ; + + bool iso ; + GRB_TRY (GxB_Matrix_iso (&iso, mat)) ; + if (iso) + { + printf ("Die! (cannot do iso)\n") ; + GrB_Matrix_free (&mat) ; + } - return true; } +template +bool test_AxB_dot3_full_factory( int TB, int64_t N, int64_t Anz, int64_t Bnz, + GrB_Monoid monoid, GrB_BinaryOp binop) { + // FIXME: Allow the adaptive tests in this guy + +// N = 20; + + //Generate test data and setup for using a jitify kernel with 'bucket' interface + // The testBucket arg tells the generator which bucket we want to exercise + int64_t Annz = N * 5; + int64_t Bnnz = N*5; + int64_t Cnz = N; + float Cnzpercent = (float) Cnz/(N*N); + + // FIXME: make this an argument + bool Mask_struct = true; + + std::cout << "Getting test data" << std::endl; + // FIXME: These need to be set based on the bucket being tested +// TestData data = *make_karate_tricount(); + + std::cout << "Creating problem gen" << std::endl; +// N = data.A_indptr.size()-1; + SpGEMM_problem_generator G(N, N); + G.init_C(float(Cnz) / (N * N)); + +// GrB_Matrix A; +// GrB_Matrix B; +// GrB_Matrix C; +// GrB_Matrix M; +// +// GrB_Matrix C_actual = G.getC(); + +// make_grb_matrix(A, data.A_indptr, data.A_indices, data.A_data, GxB_SPARSE); +// make_grb_matrix(B, data.B_indptr, data.B_indices, data.B_data, GxB_FULL, GxB_BY_ROW); +// make_grb_matrix(C, data.C_indptr, data.C_indices, data.C_data); +// make_grb_matrix(M, data.M_indptr, data.M_indices, data.M_data); + + +// std::cout << "Filling A" << std::endl; + G.init_A(Annz, GxB_SPARSE, GxB_BY_ROW, 543210, 0, 2); +// std::cout << "Filling B" << std::endl; + + G.init_B(-1, GxB_SPARSE, GxB_BY_ROW, 32, 0, 2); + + /** + * For testing, we need to create our output C and configure + * it w/ the necessary sparsity. + */ + G.fill_buckets( TB); // all elements go to testbucket= TB + + GrB_Matrix C = G.getC(); + GrB_Matrix M = G.getM(); + GrB_Matrix A = G.getA(); + GrB_Matrix B = G.getB(); + + GRB_TRY (GxB_Matrix_fprint (A, "A", GxB_SHORT_VERBOSE, stdout)) ; + GRB_TRY (GxB_Matrix_fprint (B, "B", GxB_SHORT_VERBOSE, stdout)) ; + GRB_TRY (GxB_Matrix_fprint (M, "M", GxB_SHORT_VERBOSE, stdout)) ; +// GRB_TRY (GxB_Matrix_fprint (C, "C", GxB_SHORT_VERBOSE, stdout)) ; +// + T_C *Cx = (T_C*)C->x; + T_A *Ax = (T_A*)A->x; + T_B *Bx = (T_B*)B->x; + + std::cout << "Building semiring factgory" << std::endl; + GB_cuda_semiring_factory mysemiringfactory = GB_cuda_semiring_factory ( ) ; + GrB_Semiring mysemiring; + auto grb_info = GrB_Semiring_new(&mysemiring, monoid, binop); + GRB_TRY (grb_info) ; + + bool flipxy = false; + bool mask_struct = false; + bool mask_comp = false; +// GrB_Matrix C_actual = C; + + mysemiringfactory.semiring_factory ( mysemiring, flipxy, + C->type, M->type, + A->type, B->type, + mask_struct, // matrix types + mask_comp, GB_sparsity(C), + GB_sparsity(M), + GB_sparsity(A), + GB_sparsity(B) ) ; + + int zc_valid = 0; + bool result = false; + + /** + * Run Phase 1: Compute nanobuckets and blockbuckets + */ + const int64_t mnz = GB_nnz (M) ; + + int chunk_size = 128; + + int number_of_sms = GB_Global_gpu_sm_get (0); + int nblks = ( GB_nnz (M) + chunk_size - 1)/chunk_size; + int ntasks = GB_IMIN( nblks, 128 * number_of_sms); + int nthrd = 32; + int64_t *bucketp = (int64_t*)rmm_wrap_malloc((NBUCKETS+1) * sizeof (int64_t)); + + bucketp[1] = 0; + + int64_t *bucket = (int64_t*)rmm_wrap_malloc(Cnz * sizeof (int64_t)); + int64_t *offset = (int64_t*)rmm_wrap_malloc(NBUCKETS * sizeof (int64_t)); + + /** + * Run Phase 3: Execute dot3 on all buckets + */ + for (int b =0; b < 12; ++b) {// loop on buckets + if (b == TB) { + G.fill_buckets(b); + int64_t *Bucket = G.getBucket(); + int64_t *BucketStart = G.getBucketStart(); + + int64_t b_start = BucketStart [b] ; + int64_t b_end = BucketStart [b+1] ; + int64_t nvecs = b_end - b_start ; + + if (nvecs > 0) std::cout<< "bucket "< lF(mysemiringfactory, (GB_bucket_code)b); + lF.jitGridBlockLaunch(b_start, b_end, bucketp, Bucket, C, M, A, B); + + kernTimer.Stop(); + + std::cout<<"returned from kernel "< -//bool test_AxB_dot3_full_factory( int TB, int64_t N, int64_t Anz, int64_t Bnz, std::string& SEMI_RING) { -//// Generates three randomized matrices, builds buckets and calls a kernel. -//// This is the full version as called in SuiteSparse:GraphBLAS -// -//phase1launchFactory p1lF(); -//phase2launchFactory p2lF(); -//launchFactory lF(SEMI_RING, "dndn"); -// -//int testBucket = TB; -// -////unsigned seed = 13372801; -////std::mt19937 r; //random number generator Mersenne Twister -////r.seed(seed); -//int gpuID; -//cudaGetDevice( &gpuID); -// -//std::cout<< "found device "< = myOP_plus; -// MUL_ptr = myOP_times; -//} -//else if(SEMI_RING == "MIN_PLUS") { -// std::cout << "Min Plus Times (min,+) semiring"<::max(); -// ADD_ptr = myOP_min; -// MUL_ptr = myOP_plus; -// -//} -//else if(SEMI_RING == "MAX_PLUS") { -// MONOID_IDENTITY = std::numeric_limits::min(); -// std::cout << "Max Plus Times (max,+) semiring"< = myOP_max; -// MUL_ptr = myOP_plus; -//} -// -////Generate test data and setup for using a jitify kernel with 'bucket' interface -//// The testBucket arg tells the generator which bucket we want to exercise -//SpGEMM_problem_generator G( testBucket); -//int64_t Annz = N*N; -//int64_t Bnnz = N*N; -//int64_t Cnz = N; -//float Cnzpercent = (float) Cnz/(N*N); -// -//G.init(N, Annz, Bnnz, Cnzpercent); -// -//G.fill_buckets( testBucket); // all elements go to testbucket= TB -// -//matrix* C = G.getCptr(); -//matrix* M = G.getMptr(); -//matrix* A = G.getAptr(); -//matrix* B = G.getBptr(); -// -//T_C *Cx = C->x; -//T_A *Ax = A->x; -//T_B *Bx = B->x; -// -//// Set clear zombie count -//C->zombie_count = 0; -// -////std::cout<<"got all matrices"< 0) std::cout<< "bucket "<zombie_count; // C->zombie_count = 0; -// for (int i =0 ; i< Cnz; ++i) { -// //std::cout<<"Cx[i] = "<i[i]; -// } -// G.loadCj(); -// -// for (int64_t pair = b_start ; pair < b_end ; pair++) { -// -// // get the kth entry in bucket b -// //std::cout<< " pair ="<i[pC] ; // row index of C(i,j) -// -// // get C(i,j) -// int64_t k = (C->i [pC] >> 4) ; // col index of C(i,j) -// //ASSERT ((C->i [pC] & 4) == b) ; -// int64_t j = (C->h == nullptr) ? k : C->h [k] ; // Mh has been copied into Ch -// //std::cout<<" found dot "<p [i] ; -// int64_t pA_end = A->p [i+1] ; -// // indices are in Ai [pA_start ... pA_end-1] -// // values are in Ax [pA_start ... pA_end-1] -// -// // yvp, yvi, yvals: B(:,j) -// // yvp is Bp [j] and Bp [j+1] -// int64_t pB_start = B->p [j] ; -// int64_t pB_end = B->p [j+1] ; -// // indices are in Bi [pB_start ... pB_end-1] -// // values are in Bx [pB_start ... pB_end-1] -// k = pA_start; -// int64_t l = pB_start; -// T_Z cij = MONOID_IDENTITY; -// while( k < pA_end && l < pB_end) { -// //std::cout<<" A*B="<< (*MUL_ptr) ( (T_Z)Ax[k] , (T_Z) Bx[l]) <)( cij, (*MUL_ptr)( (T_Z)Ax[k] , (T_Z) Bx[l]) ) ; -// k++; -// l++; -// //std::cout<<"Ak = "<< Ax[k]<< " Bl = "<< Bx[l]<< "sum ="< //bool test_AxB_dot3_dndn_factory( int TB, int64_t N, int64_t Anz, int64_t Bnz, std::string& SEMI_RING) { diff --git a/GraphBLAS/CUDA/test/run_tests.cpp b/GraphBLAS/CUDA/test/run_tests.cpp index 7618c18593..70d84dd4d5 100644 --- a/GraphBLAS/CUDA/test/run_tests.cpp +++ b/GraphBLAS/CUDA/test/run_tests.cpp @@ -4,10 +4,10 @@ extern "C" { #include "GraphBLAS.h" } #include "../../rmm_wrap/rmm_wrap.h" +#include "test_utility.hpp" int main(int argc, char **argv) { - // TODO: Need to invoke GB_Init size_t init_size, max_size; init_size = 256*(1ULL<<10); max_size = 256*(1ULL<<20); @@ -15,7 +15,8 @@ int main(int argc, char **argv) { //printf(" pool init size %ld, max size %ld\n", init_size, max_size); rmm_wrap_initialize( rmm_wrap_managed, init_size, max_size ); - GrB_Info i = GxB_init(GrB_NONBLOCKING, rmm_wrap_malloc, rmm_wrap_calloc, rmm_wrap_realloc, rmm_wrap_free); + GRB_TRY (GxB_init(GrB_NONBLOCKING, rmm_wrap_malloc, rmm_wrap_calloc, rmm_wrap_realloc, rmm_wrap_free)) ; + GRB_TRY (GxB_Global_Option_set (GxB_GLOBAL_GPU_CONTROL, GxB_GPU_ALWAYS)) ; size_t buff_size = (1ULL<<13)+152; void *p = (void *)rmm_wrap_allocate( &buff_size ); @@ -26,5 +27,7 @@ int main(int argc, char **argv) { rmm_wrap_deallocate( p, buff_size); rmm_wrap_finalize(); + GRB_TRY (GrB_finalize()); + return r; -} \ No newline at end of file +} diff --git a/GraphBLAS/CUDA/test/testGen_cmake.py b/GraphBLAS/CUDA/test/testGen_cmake.py index 6d3f475ca4..1a9cece985 100644 --- a/GraphBLAS/CUDA/test/testGen_cmake.py +++ b/GraphBLAS/CUDA/test/testGen_cmake.py @@ -41,8 +41,8 @@ def buildTest(ts="TestsuiteName",kern="vsvs", ds= "tiny-tiny", SUM="PLUS", PRODU phase1_body= f""" test_AxB_phase1_factory< {typeC}, {typeM}, {typeA}, {typeB}>( 5, {N}, {Anz}, {Bnz}, monoid, binop);""" phase2_body= f""" test_AxB_phase2_factory< {typeC} >( 5, {N}, {Anz},{Bnz});""" # phase2_end_body= f""" test_AxB_dot3_phase2end_factory< {typeC} >( 5, {N}, {Anz},{Bnz});""" - # phase3_body = f""" test_AxB_dot3_{kern}_factory< {typeC},{typeM},{typeA},{typeB},{type_x},{type_y},{type_z} > (5, {N}, {Anz}, {Bnz}, SR);""" - phasedict = { 1: phase1_body, 2: phase2_body } + phase3_body = f""" test_AxB_dot3_full_factory< {typeC},{typeM},{typeA},{typeB},{type_x},{type_y},{type_z} > (5, {N}, {Anz}, {Bnz}, monoid, binop);""" + phasedict = { 1: phase1_body, 2: phase2_body, 3: phase3_body } TEST_BODY= phasedict[phase] return TEST_HEAD,TEST_BODY, gb_monoid, gb_binop @@ -83,7 +83,7 @@ def write_test_instances_header(test_suite_name, Monoids, Binops, Semirings, Dat for dtA in DataTypes: for dtB in DataTypes: for ds in DataShapes: - for phase in [1, 2]: + for phase in [1, 2, 3]: TEST_HEAD, TEST_BODY, gb_monoid, gb_binop = buildTest( Test_suite, Kernels, ds, m, b, phase, dtC, dtM, dtA, dtB, dtX, dtY, dtZ) diff --git a/GraphBLAS/CUDA/test/test_data.hpp b/GraphBLAS/CUDA/test/test_data.hpp new file mode 100644 index 0000000000..a3fdaee6fb --- /dev/null +++ b/GraphBLAS/CUDA/test/test_data.hpp @@ -0,0 +1,104 @@ + +#include +#include + +template +class TestData { + +public: + TestData( std::vector A_indptr_, + std::vector A_indices_, + std::vector A_data_, + + std::vector B_indptr_, + std::vector B_indices_, + std::vector B_data_, + + + std::vector C_indptr_, + std::vector C_indices_, + std::vector C_data_, + + std::vector M_indptr_, + std::vector M_indices_, + std::vector M_data_): + A_indptr(A_indptr_), A_indices(A_indices_), A_data(A_data_), + B_indptr(B_indptr_), B_indices(B_indices_), B_data(B_data_), + C_indptr(C_indptr_), C_indices(C_indices_), C_data(C_data_), + M_indptr(M_indptr_), M_indices(M_indices_), M_data(M_data_){} + + + std::vector A_indptr; + std::vector A_indices; + std::vector A_data; + + std::vector B_indptr; + std::vector B_indices; + std::vector B_data; + + + std::vector C_indptr; + std::vector C_indices; + std::vector C_data; + + std::vector M_indptr; + std::vector M_indices; + std::vector M_data; + +}; + +template +std::unique_ptr> make_karate_tricount() { + + std::vector A_indptr = { 0,16,24,32,35,37,40,41,41,44,45,45,45,45,46,48,50,50,50,52,53,55,55,57, + 62,65,66,68,69,71,73,75,77,78,78}; + std::vector A_indices = { 1, 2, 3, 4, 5, 6, 7, 8,10,11,12,13,17,19,21,31, 2, 3, 7,13,17,19,21,30, + 3, 7, 8, 9,13,27,28,32, 7,12,13, 6,10, 6,10,16,16,30,32,33,33,33,32,33, + 32,33,32,33,33,32,33,32,33,25,27,29,32,33,25,27,31,31,29,33,33,31,33,32, + 33,32,33,32,33,33}; + std::vector A_data = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1}; + + std::vector B_indptr = { 0, 0, 1, 3, 6, 7, 8,11,15,17,18,21,22,24,28,28,28,30,32,32,34,34,36,36, + 36,36,38,38,41,42,44,46,50,61,78}; + std::vector B_indices = { 0, 0, 1, 0, 1, 2, 0, 0, 0, 4, 5, 0, 1, 2, 3, 0, 2, 2, 0, 4, 5, 0, 0, 3, + 0, 1, 2, 3, 5, 6, 0, 1, 0, 1, 0, 1,23,24, 2,23,24, 2,23,26, 1, 8, 0,24, + 25,28, 2, 8,14,15,18,20,22,23,29,30,31, 8, 9,13,14,15,18,19,20,22,23,26, + 27,28,29,30,31,32}; + std::vector B_data = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1}; + + std::vector M_indptr = { 0, 16, 25, 35, 41, 44, 48, 52, 56, 61, 63, 66, 67, 69, 74, 76, 78, 80, + 82, 84, 87, 89, 91, 93, 98,101,104,106,110,113,117,121,127,139,156}; + std::vector M_indices = { 1, 2, 3, 4, 5, 6, 7, 8,10,11,12,13,17,19,21,31, 0, 2, 3, 7,13,17,19,21, + 30, 0, 1, 3, 7, 8, 9,13,27,28,32, 0, 1, 2, 7,12,13, 0, 6,10, 0, 6,10,16, + 0, 4, 5,16, 0, 1, 2, 3, 0, 2,30,32,33, 2,33, 0, 4, 5, 0, 0, 3, 0, 1, 2, + 3,33,32,33,32,33, 5, 6, 0, 1,32,33, 0, 1,33,32,33, 0, 1,32,33,25,27,29, + 32,33,25,27,31,23,24,31,29,33, 2,23,24,33, 2,31,33,23,26,32,33, 1, 8,32, + 33, 0,24,25,28,32,33, 2, 8,14,15,18,20,22,23,29,30,31,33, 8, 9,13,14,15, + 18,19,20,22,23,26,27,28,29,30,31,32}; + std::vector M_data = {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,1,1,1}; + + std::vector C_indptr = { 0, 0, 7,12,17,19,21,24,27,29,29,31,31,32,35,35,35,36,37,37,38,38,39,39, + 39,39,40,40,41,41,43,45,47,51,56}; + std::vector C_indices = { 2, 3, 7,13,17,19,21, 1, 3, 7, 8,13, 1, 2, 7,12,13, 6,10, 6,10, 4, 5,16, + 1, 2, 3, 2,32, 4, 5, 3, 1, 2, 3, 6, 1, 1, 1,31,33,32,33,32,33,25,33, 8, + 29,30,33,27,29,30,31,32}; + std::vector C_data = { 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 2, 1, 2, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, + 1, 2, 3, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, + 1, 1,10, 1, 2, 1, 1,10}; + + TestData karate_tricount(A_indptr, A_indices, A_data, + B_indptr, B_indices, B_data, + C_indptr, C_indices, C_data, + M_indptr, M_indices, M_data); + + return std::make_unique>(karate_tricount); +} + diff --git a/GraphBLAS/CUDA/test/test_utility.hpp b/GraphBLAS/CUDA/test/test_utility.hpp new file mode 100644 index 0000000000..d86a558137 --- /dev/null +++ b/GraphBLAS/CUDA/test/test_utility.hpp @@ -0,0 +1,15 @@ + +#pragma once + +// try calling a GrB_method and check the result +#define GRB_TRY(GrB_method) \ +{ \ + GrB_Info GB_info_result = GrB_method ; \ + if (GB_info_result < GrB_SUCCESS) \ + { \ + printf ("test failure: file %s line %d status %d\n", \ + __FILE__, __LINE__, GB_info_result) ; \ + exit (EXIT_FAILURE) ; \ + } \ +} + diff --git a/GraphBLAS/CUDA/type_convert.hpp b/GraphBLAS/CUDA/type_convert.hpp index 406ce44541..880cd1acba 100644 --- a/GraphBLAS/CUDA/type_convert.hpp +++ b/GraphBLAS/CUDA/type_convert.hpp @@ -57,6 +57,21 @@ template<> void set_element(GrB_Matrix A, float x, int64_t i, int64_t j) template<> void set_element(GrB_Matrix A, double x, int64_t i, int64_t j) { GrB_Matrix_setElement_FP64(A, x, i, j); } template<> void set_element(GrB_Matrix A, bool x, int64_t i, int64_t j) { GrB_Matrix_setElement_BOOL(A, x, i, j); } +template +GrB_Info get_element(GrB_Matrix A, T* x, int64_t i, int64_t j); + +template<> GrB_Info get_element(GrB_Matrix A, int8_t *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_INT8(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, int16_t *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_INT16(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, int32_t *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_INT32(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, int64_t *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_INT64(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, uint8_t *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_UINT8(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, uint16_t *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_UINT16(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, uint32_t *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_UINT32(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, uint64_t *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_UINT64(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, float *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_FP32(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, double *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_FP64(x, A, i, j); } +template<> GrB_Info get_element(GrB_Matrix A, bool *x, int64_t i, int64_t j) { return GrB_Matrix_extractElement_BOOL(x, A, i, j); } + } // namespace cuda #endif diff --git a/GraphBLAS/Doc/ChangeLog b/GraphBLAS/Doc/ChangeLog index d62f4122aa..21e3aef22b 100644 --- a/GraphBLAS/Doc/ChangeLog +++ b/GraphBLAS/Doc/ChangeLog @@ -1,3 +1,7 @@ +Version 6.2.5, Mar 14, 2022 + + * For SuiteSparse v5.11.0 + Version 6.2.4, Mar 8, 2022 * (42) bug fix: GrB_mxm with 0-by-0 iso full matrices: Caught by diff --git a/GraphBLAS/Doc/GraphBLAS_UserGuide.pdf b/GraphBLAS/Doc/GraphBLAS_UserGuide.pdf index e562be65a8..3447ec2fdf 100644 Binary files a/GraphBLAS/Doc/GraphBLAS_UserGuide.pdf and b/GraphBLAS/Doc/GraphBLAS_UserGuide.pdf differ diff --git a/GraphBLAS/Doc/GraphBLAS_UserGuide.tex b/GraphBLAS/Doc/GraphBLAS_UserGuide.tex index 9beb8a5afe..09868a0100 100644 --- a/GraphBLAS/Doc/GraphBLAS_UserGuide.tex +++ b/GraphBLAS/Doc/GraphBLAS_UserGuide.tex @@ -148,6 +148,12 @@ \subsection{Release Notes} \begin{itemize} +\item Version 6.2.5 (Mar 14, 2022) + + \begin{packed_itemize} + \item For SuiteSparse v5.11.0. + \end{packed_itemize} + \item Version 6.2.4 (Mar 8, 2022) \begin{packed_itemize} diff --git a/GraphBLAS/Doc/GraphBLAS_version.tex b/GraphBLAS/Doc/GraphBLAS_version.tex index 0016e204f7..653d40675a 100644 --- a/GraphBLAS/Doc/GraphBLAS_version.tex +++ b/GraphBLAS/Doc/GraphBLAS_version.tex @@ -1,5 +1,5 @@ % version of SuiteSparse:GraphBLAS \date{VERSION -6.2.4, -Mar 8, 2022} +6.2.5, +Mar 14, 2022} diff --git a/GraphBLAS/GraphBLAS/CMakeLists.txt b/GraphBLAS/GraphBLAS/CMakeLists.txt index 528ce614ad..16c43d13d7 100644 --- a/GraphBLAS/GraphBLAS/CMakeLists.txt +++ b/GraphBLAS/GraphBLAS/CMakeLists.txt @@ -29,10 +29,10 @@ endif ( ) set ( CMAKE_MACOSX_RPATH TRUE ) # version of SuiteSparse:GraphBLAS (must match ../CMakeLists.txt) -set ( GraphBLAS_DATE "Mar 8, 2022" ) +set ( GraphBLAS_DATE "Mar 14, 2022" ) set ( GraphBLAS_VERSION_MAJOR 6 ) set ( GraphBLAS_VERSION_MINOR 2 ) -set ( GraphBLAS_VERSION_SUB 4 ) +set ( GraphBLAS_VERSION_SUB 5 ) message ( STATUS "Building SuiteSparse:GraphBLAS version: v" ${GraphBLAS_VERSION_MAJOR}.${GraphBLAS_VERSION_MINOR}.${GraphBLAS_VERSION_SUB} " date: " ${GraphBLAS_DATE} ) @@ -108,7 +108,6 @@ endif ( ) include ( GNUInstallDirs ) # Edit these lines for code development only, not for end-users: -# set ( GBCOMPACT true ) # set ( CMAKE_BUILD_TYPE Debug ) if ( NOT CMAKE_BUILD_TYPE ) @@ -128,21 +127,13 @@ endif ( ) message ( STATUS "CMAKE compiler ID: " ${CMAKE_C_COMPILER_ID} ) message ( STATUS "CMAKE have OpenMP: " ${OPENMP_FOUND} ) -if ( GBCOMPACT ) - set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DGBCOMPACT=1 " ) -endif ( ) - #------------------------------------------------------------------------------- # include directories #------------------------------------------------------------------------------- set ( CMAKE_INCLUDE_CURRENT_DIR ON ) -if ( GBCOMPACT ) - include_directories ( ../Source/Template ../Source ../Include rename ../Source/Generated1 ../lz4 ../rmm_wrap ) -else ( ) - include_directories ( ../Source/Template ../Source ../Include rename ../Source/Generated1 ../lz4 ../rmm_wrap ../Source/Generated2 ) -endif ( ) +include_directories ( ../Source/Template ../Source ../Include rename ../Source/Generated1 ../lz4 ../rmm_wrap ../Source/Generated2 ) #------------------------------------------------------------------------------- # compiler options: @@ -206,11 +197,7 @@ endif ( ) # dynamic graphblas_renamed library properties #------------------------------------------------------------------------------- -if ( GBCOMPACT ) - file ( GLOB GRAPHBLAS_SOURCES "../Source/*.c" "../Source/Generated1/*.c" ) -else ( ) - file ( GLOB GRAPHBLAS_SOURCES "../Source/*.c" "../Source/Generated1/*.c" "../Source/Generated2/*.c" ) -endif ( ) +file ( GLOB GRAPHBLAS_SOURCES "../Source/*.c" "../Source/Generated1/*.c" "../Source/Generated2/*.c" ) add_library ( graphblas_renamed SHARED ${GRAPHBLAS_SOURCES} ) SET_TARGET_PROPERTIES ( graphblas_renamed PROPERTIES diff --git a/GraphBLAS/Include/GraphBLAS.h b/GraphBLAS/Include/GraphBLAS.h index 19fc35888a..4ed26f3103 100644 --- a/GraphBLAS/Include/GraphBLAS.h +++ b/GraphBLAS/Include/GraphBLAS.h @@ -221,10 +221,10 @@ // The version of this implementation, and the GraphBLAS API version: #define GxB_IMPLEMENTATION_NAME "SuiteSparse:GraphBLAS" -#define GxB_IMPLEMENTATION_DATE "Mar 8, 2022" +#define GxB_IMPLEMENTATION_DATE "Mar 14, 2022" #define GxB_IMPLEMENTATION_MAJOR 6 #define GxB_IMPLEMENTATION_MINOR 2 -#define GxB_IMPLEMENTATION_SUB 4 +#define GxB_IMPLEMENTATION_SUB 5 #define GxB_SPEC_DATE "Nov 15, 2021" #define GxB_SPEC_MAJOR 2 #define GxB_SPEC_MINOR 0 diff --git a/GraphBLAS/Makefile b/GraphBLAS/Makefile index 4415660200..e1ae3ee4ab 100644 --- a/GraphBLAS/Makefile +++ b/GraphBLAS/Makefile @@ -9,9 +9,9 @@ # simple Makefile for GraphBLAS, relies on cmake to do the actual build. Use # the CMAKE_OPTIONS argument to this Makefile to pass options to cmake. -# For example, to compile in compact mode with 40 threads, use: +# For example, to compile with 40 threads, use: # -# make CMAKE_OPTIONS='-DGBCOMPACT=1' JOBS=40 +# make JOBS=40 # # To compile without using Google's cpu_features package, using 40 threads: # diff --git a/GraphBLAS/README.md b/GraphBLAS/README.md index 8ffffd30ff..88992604dd 100644 --- a/GraphBLAS/README.md +++ b/GraphBLAS/README.md @@ -8,7 +8,7 @@ For the GraphBLAS/GraphBLAS Octave/MATLAB interface *only*: SPDX-License-Identifier: GPL-3.0-or-later (see below for a discussion of the licensing of this package). -VERSION 6.2.4, Mar 8, 2022 +VERSION 6.2.5, Mar 14, 2022 SuiteSparse:GraphBLAS is a complete implementation of the GraphBLAS standard, which defines a set of sparse matrix operations on an extended algebra of diff --git a/GraphBLAS/Source/GB_AxB_colscale.c b/GraphBLAS/Source/GB_AxB_colscale.c index c0ab9cbce3..bb7627b8d6 100644 --- a/GraphBLAS/Source/GB_AxB_colscale.c +++ b/GraphBLAS/Source/GB_AxB_colscale.c @@ -11,7 +11,7 @@ #include "GB_binop.h" #include "GB_apply.h" #include "GB_ek_slice.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -219,7 +219,7 @@ GrB_Info GB_AxB_colscale // C = A*D, column scale with diagonal D bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_AxB_dot2.c b/GraphBLAS/Source/GB_AxB_dot2.c index afd1226cdc..0403d0c360 100644 --- a/GraphBLAS/Source/GB_AxB_dot2.c +++ b/GraphBLAS/Source/GB_AxB_dot2.c @@ -34,7 +34,7 @@ #include "GB_ek_slice.h" #include "GB_bitmap_assign_methods.h" #include "GB_AxB__include1.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_AxB__include2.h" #endif @@ -390,10 +390,9 @@ GrB_Info GB_AxB_dot2 // C=A'*B or C=A'*B, dot product method // C is non-iso //---------------------------------------------------------------------- -// double ttt = omp_get_wtime ( ) ; bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory @@ -427,9 +426,6 @@ GrB_Info GB_AxB_dot2 // C=A'*B or C=A'*B, dot product method ASSERT (info == GrB_SUCCESS || info == GrB_NO_VALUE) ; #endif -// ttt = omp_get_wtime ( ) - ttt ; -// printf ("dot2 time: %g sec\n", ttt) ; - //---------------------------------------------------------------------- // C = A'*B or A*B, using the dot product method, with typecasting diff --git a/GraphBLAS/Source/GB_AxB_dot3.c b/GraphBLAS/Source/GB_AxB_dot3.c index acfad8685e..b16e263eba 100644 --- a/GraphBLAS/Source/GB_AxB_dot3.c +++ b/GraphBLAS/Source/GB_AxB_dot3.c @@ -15,7 +15,7 @@ #include "GB_mxm.h" #include "GB_binop.h" #include "GB_AxB__include1.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_AxB__include2.h" #endif @@ -264,7 +264,7 @@ GrB_Info GB_AxB_dot3 // C = A'*B using dot product method bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_AxB_dot4.c b/GraphBLAS/Source/GB_AxB_dot4.c index 227127390b..e5bfa933d8 100644 --- a/GraphBLAS/Source/GB_AxB_dot4.c +++ b/GraphBLAS/Source/GB_AxB_dot4.c @@ -22,7 +22,7 @@ #include "GB_mxm.h" #include "GB_binop.h" #include "GB_unused.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_AxB__include2.h" #endif @@ -58,7 +58,7 @@ GrB_Info GB_AxB_dot4 // C+=A'*B, dot product method // dot4 is disabled if GraphBLAS is compiled as compact //-------------------------------------------------------------------------- - #ifdef GBCOMPACT + #ifdef GBCUDA_DEV GBURBLE ("(always punt) ") ; return (GrB_NO_VALUE) ; #else diff --git a/GraphBLAS/Source/GB_AxB_rowscale.c b/GraphBLAS/Source/GB_AxB_rowscale.c index 182dba11b9..4aa2bcbc44 100644 --- a/GraphBLAS/Source/GB_AxB_rowscale.c +++ b/GraphBLAS/Source/GB_AxB_rowscale.c @@ -10,7 +10,7 @@ #include "GB_mxm.h" #include "GB_binop.h" #include "GB_apply.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -203,7 +203,7 @@ GrB_Info GB_AxB_rowscale // C = D*B, row scale with diagonal D bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_AxB_saxpy3.c b/GraphBLAS/Source/GB_AxB_saxpy3.c index f1b2b7e5b2..ce6cd8fee5 100644 --- a/GraphBLAS/Source/GB_AxB_saxpy3.c +++ b/GraphBLAS/Source/GB_AxB_saxpy3.c @@ -91,7 +91,7 @@ #include "GB_AxB_saxpy_generic.h" #include "GB_control.h" #include "GB_AxB__include1.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_AxB__include2.h" #endif @@ -628,7 +628,7 @@ GrB_Info GB_AxB_saxpy3 // C = A*B using Gustavson+Hash GBURBLE ("(sparse saxpy) ") ; bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_AxB_saxpy4.c b/GraphBLAS/Source/GB_AxB_saxpy4.c index 500b3e28a1..6238b6206c 100644 --- a/GraphBLAS/Source/GB_AxB_saxpy4.c +++ b/GraphBLAS/Source/GB_AxB_saxpy4.c @@ -20,7 +20,7 @@ #include "GB_mxm.h" #include "GB_control.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_AxB__include2.h" #endif @@ -55,7 +55,7 @@ GrB_Info GB_AxB_saxpy4 // C += A*B // saxpy4 is disabled if GraphBLAS is compiled as compact //-------------------------------------------------------------------------- - #ifdef GBCOMPACT + #ifdef GBCUDA_DEV return (GrB_NO_VALUE) ; #else diff --git a/GraphBLAS/Source/GB_AxB_saxpy5.c b/GraphBLAS/Source/GB_AxB_saxpy5.c index 18b67360ef..94320cde7e 100644 --- a/GraphBLAS/Source/GB_AxB_saxpy5.c +++ b/GraphBLAS/Source/GB_AxB_saxpy5.c @@ -28,7 +28,7 @@ #include "GB_mxm.h" #include "GB_control.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_AxB__include2.h" #endif @@ -63,7 +63,7 @@ GrB_Info GB_AxB_saxpy5 // C += A*B // saxpy5 is disabled if GraphBLAS is compiled as compact //-------------------------------------------------------------------------- - #ifdef GBCOMPACT + #ifdef GBCUDA_DEV return (GrB_NO_VALUE) ; #else diff --git a/GraphBLAS/Source/GB_add_phase2.c b/GraphBLAS/Source/GB_add_phase2.c index 33d758fc20..57f6191be3 100644 --- a/GraphBLAS/Source/GB_add_phase2.c +++ b/GraphBLAS/Source/GB_add_phase2.c @@ -31,7 +31,7 @@ #include "GB_binop.h" #include "GB_unused.h" #include "GB_ek_slice.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -318,7 +318,7 @@ GrB_Info GB_add_phase2 // C=A+B, C=A+B, or C=A+B // C is non-iso //---------------------------------------------------------------------- - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_apply_op.c b/GraphBLAS/Source/GB_apply_op.c index 5107212fe3..6cd1cedd26 100644 --- a/GraphBLAS/Source/GB_apply_op.c +++ b/GraphBLAS/Source/GB_apply_op.c @@ -22,7 +22,7 @@ #include "GB_binop.h" #include "GB_ek_slice.h" #include "GB_unused.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_unop__include.h" #include "GB_binop__include.h" #endif @@ -340,7 +340,7 @@ GrB_Info GB_apply_op // apply a unary op, idxunop, or binop, Cx = op (A) // determine number of threads to use int nthreads = GB_nthreads (anz, chunk, nthreads_max) ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV if (Atype == op->xtype || opcode == GB_IDENTITY_unop_code) { @@ -450,7 +450,7 @@ GrB_Info GB_apply_op // apply a unary op, idxunop, or binop, Cx = op (A) // determine number of threads to use int nthreads = GB_nthreads (anz, chunk, nthreads_max) ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV if (binop_bind1st) { diff --git a/GraphBLAS/Source/GB_bitmap_AxB_saxpy.c b/GraphBLAS/Source/GB_bitmap_AxB_saxpy.c index ddae1be156..e428695120 100644 --- a/GraphBLAS/Source/GB_bitmap_AxB_saxpy.c +++ b/GraphBLAS/Source/GB_bitmap_AxB_saxpy.c @@ -10,7 +10,7 @@ #include "GB_bitmap_AxB_saxpy.h" #include "GB_AxB_saxpy_generic.h" #include "GB_AxB__include1.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_AxB__include2.h" #endif @@ -122,7 +122,7 @@ GrB_Info GB_bitmap_AxB_saxpy // C = A*B where C is bitmap GBURBLE ("(bitmap saxpy) ") ; bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_bitmap_emult.c b/GraphBLAS/Source/GB_bitmap_emult.c index 2fb9ba2faf..1f536bfcf8 100644 --- a/GraphBLAS/Source/GB_bitmap_emult.c +++ b/GraphBLAS/Source/GB_bitmap_emult.c @@ -61,7 +61,7 @@ #include "GB_binop.h" #include "GB_unused.h" #include "GB_ek_slice.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -216,7 +216,7 @@ GrB_Info GB_bitmap_emult // C=A.*B, C=A.*B, or C=A.*B else { - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_builder.c b/GraphBLAS/Source/GB_builder.c index 9c8d87bc98..333684df25 100644 --- a/GraphBLAS/Source/GB_builder.c +++ b/GraphBLAS/Source/GB_builder.c @@ -106,7 +106,7 @@ #include "GB_build.h" #include "GB_sort.h" #include "GB_binop.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_red__include.h" #endif @@ -1025,7 +1025,7 @@ GrB_Info GB_builder // build a matrix from tuples GrB_Type xtype, ytype, ztype ; GxB_binary_function fdup ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV GB_Opcode opcode ; #endif @@ -1045,7 +1045,7 @@ GrB_Info GB_builder // build a matrix from tuples // z = SECOND (x,y) where all three types are the same as ttype // T(i,j) = (ttype) Sx(k) will be done for all tuples. - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV opcode = GB_SECOND_binop_code ; #endif xtype = ttype ; @@ -1074,7 +1074,7 @@ GrB_Info GB_builder // build a matrix from tuples ASSERT_BINARYOP_OK (dup, "dup for build_factory", GB0) ; ASSERT (!S_iso) ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV opcode = dup->opcode ; #endif xtype = dup->xtype ; @@ -1237,7 +1237,7 @@ GrB_Info GB_builder // build a matrix from tuples // T and Sx are not iso; call in the workers //-------------------------------------------------------------- - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //---------------------------------------------------------- // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_cast_array.c b/GraphBLAS/Source/GB_cast_array.c index 90a308d61d..f6b40e3fe3 100644 --- a/GraphBLAS/Source/GB_cast_array.c +++ b/GraphBLAS/Source/GB_cast_array.c @@ -13,7 +13,7 @@ // iso expansion is done. #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_unop__include.h" #endif @@ -52,7 +52,7 @@ void GB_cast_array // typecast an array // typecast the array //-------------------------------------------------------------------------- - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //---------------------------------------------------------------------- // define the worker for the switch factory @@ -79,7 +79,7 @@ void GB_cast_array // typecast an array #endif //-------------------------------------------------------------------------- - // generic worker: only used for GBCOMPACT case + // generic worker: only used for GBCUDA_DEV case //-------------------------------------------------------------------------- int64_t csize = GB_code_size (code1, 0) ; diff --git a/GraphBLAS/Source/GB_concat_bitmap.c b/GraphBLAS/Source/GB_concat_bitmap.c index 780661cfeb..b36c65c01a 100644 --- a/GraphBLAS/Source/GB_concat_bitmap.c +++ b/GraphBLAS/Source/GB_concat_bitmap.c @@ -154,7 +154,7 @@ GrB_Info GB_concat_bitmap // concatenate into a bitmap matrix // C is not iso, but A might be //-------------------------------------------------------------- - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV if (ccode == acode) { // no typecasting needed diff --git a/GraphBLAS/Source/GB_concat_full.c b/GraphBLAS/Source/GB_concat_full.c index 24348aea5d..e738a7d0ed 100644 --- a/GraphBLAS/Source/GB_concat_full.c +++ b/GraphBLAS/Source/GB_concat_full.c @@ -138,7 +138,7 @@ GrB_Info GB_concat_full // concatenate into a full matrix bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV if (ccode == acode) { // no typecasting needed diff --git a/GraphBLAS/Source/GB_concat_sparse.c b/GraphBLAS/Source/GB_concat_sparse.c index eb52ef7e03..eb7ed40d48 100644 --- a/GraphBLAS/Source/GB_concat_sparse.c +++ b/GraphBLAS/Source/GB_concat_sparse.c @@ -331,7 +331,7 @@ GrB_Info GB_concat_sparse // concatenate into a sparse matrix else { - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV if (ccode == acode) { // no typecasting needed diff --git a/GraphBLAS/Source/GB_control.h b/GraphBLAS/Source/GB_control.h index e0a3d070be..3c5d3c6f7b 100644 --- a/GraphBLAS/Source/GB_control.h +++ b/GraphBLAS/Source/GB_control.h @@ -22,11 +22,6 @@ // few operations will be 10x slower, such as GrB_reduce to scalar using the // GrB_MAX_FP64 operator. -// Enabling the "#define GBCOMPACT" option is the same as uncommenting this -// entire file. This file provides a more concise control over which -// types, operators, and semirings are given fast hard-coded versions in -// Source/Generated2, and which use the slower generic methods. - // However, the code size can be reduced significantly. Uncommenting all of // the options below cuts the code from 55MB to under 2.7MB, on a MacBook Pro // using gcc 8.2.0 (as of the draft V3.0.0 version, June 18, 2019). Disabling diff --git a/GraphBLAS/Source/GB_convert_sparse_to_bitmap.c b/GraphBLAS/Source/GB_convert_sparse_to_bitmap.c index bbdc43e7c2..6f1a13ea90 100644 --- a/GraphBLAS/Source/GB_convert_sparse_to_bitmap.c +++ b/GraphBLAS/Source/GB_convert_sparse_to_bitmap.c @@ -8,7 +8,7 @@ //------------------------------------------------------------------------------ #include "GB_ek_slice.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_type__include.h" #endif @@ -162,7 +162,7 @@ GrB_Info GB_convert_sparse_to_bitmap // convert sparse/hypersparse to bitmap else { - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV { switch (asize) { diff --git a/GraphBLAS/Source/GB_cuda_gateway.h b/GraphBLAS/Source/GB_cuda_gateway.h index 33b204d25f..8ad7f104a5 100644 --- a/GraphBLAS/Source/GB_cuda_gateway.h +++ b/GraphBLAS/Source/GB_cuda_gateway.h @@ -48,9 +48,6 @@ static inline int GB_ngpus_to_use // get the current GxB_GPU_CONTROL setting GrB_Desc_Value gpu_control = GB_Global_gpu_control_get ( ) ; - // HACK: - gpu_control = GxB_GPU_ALWAYS ; - int gpu_count = GB_Global_gpu_count_get ( ) ; if (gpu_control == GxB_GPU_NEVER || gpu_count == 0) { @@ -60,7 +57,8 @@ static inline int GB_ngpus_to_use else if (gpu_control == GxB_GPU_ALWAYS) { // always use all available GPU(s) - printf ("(using the GPU) ") ; + // FIXME: allow 1 to gpu_count to be requested + printf ("(using the GPU: %d) ", gpu_count) ; return (gpu_count) ; } else diff --git a/GraphBLAS/Source/GB_dense_ewise3_accum.c b/GraphBLAS/Source/GB_dense_ewise3_accum.c index fc492ddff0..b105d48858 100644 --- a/GraphBLAS/Source/GB_dense_ewise3_accum.c +++ b/GraphBLAS/Source/GB_dense_ewise3_accum.c @@ -11,7 +11,7 @@ #include "GB_dense.h" #include "GB_binop.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -24,7 +24,7 @@ void GB_dense_ewise3_accum // C += A+B, all matrices dense GB_Context Context ) { -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV //-------------------------------------------------------------------------- // check inputs diff --git a/GraphBLAS/Source/GB_dense_ewise3_noaccum.c b/GraphBLAS/Source/GB_dense_ewise3_noaccum.c index bf743a64b4..f7b87628d8 100644 --- a/GraphBLAS/Source/GB_dense_ewise3_noaccum.c +++ b/GraphBLAS/Source/GB_dense_ewise3_noaccum.c @@ -12,7 +12,7 @@ #include "GB_dense.h" #include "GB_binop.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -28,7 +28,7 @@ GrB_Info GB_dense_ewise3_noaccum // C = A+B GB_Context Context ) { -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV //-------------------------------------------------------------------------- // check inputs diff --git a/GraphBLAS/Source/GB_dense_subassign_05d.c b/GraphBLAS/Source/GB_dense_subassign_05d.c index 5b4a76b439..7ede4f20b2 100644 --- a/GraphBLAS/Source/GB_dense_subassign_05d.c +++ b/GraphBLAS/Source/GB_dense_subassign_05d.c @@ -22,7 +22,7 @@ #include "GB_subassign_methods.h" #include "GB_dense.h" #include "GB_unused.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_type__include.h" #endif @@ -108,7 +108,7 @@ GrB_Info GB_dense_subassign_05d bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //---------------------------------------------------------------------- // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_dense_subassign_06d.c b/GraphBLAS/Source/GB_dense_subassign_06d.c index 0089383c23..45721954ce 100644 --- a/GraphBLAS/Source/GB_dense_subassign_06d.c +++ b/GraphBLAS/Source/GB_dense_subassign_06d.c @@ -28,7 +28,7 @@ #include "GB_subassign_methods.h" #include "GB_dense.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_type__include.h" #endif @@ -131,7 +131,7 @@ GrB_Info GB_dense_subassign_06d bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_dense_subassign_22.c b/GraphBLAS/Source/GB_dense_subassign_22.c index 29660a77ee..b5957c7988 100644 --- a/GraphBLAS/Source/GB_dense_subassign_22.c +++ b/GraphBLAS/Source/GB_dense_subassign_22.c @@ -14,7 +14,7 @@ #include "GB_dense.h" #include "GB_binop.h" #include "GB_unused.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -89,7 +89,7 @@ GrB_Info GB_dense_subassign_22 // C += b where C is dense and b is a scalar bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //---------------------------------------------------------------------- // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_dense_subassign_23.c b/GraphBLAS/Source/GB_dense_subassign_23.c index 778af4bd45..864617ff8e 100644 --- a/GraphBLAS/Source/GB_dense_subassign_23.c +++ b/GraphBLAS/Source/GB_dense_subassign_23.c @@ -22,7 +22,7 @@ #include "GB_dense.h" #include "GB_binop.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -120,7 +120,7 @@ GrB_Info GB_dense_subassign_23 // C += B; C is dense, B is sparse or dense bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //---------------------------------------------------------------------- // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_dense_subassign_25.c b/GraphBLAS/Source/GB_dense_subassign_25.c index dadb900f96..447b6803ab 100644 --- a/GraphBLAS/Source/GB_dense_subassign_25.c +++ b/GraphBLAS/Source/GB_dense_subassign_25.c @@ -27,7 +27,7 @@ #include "GB_subassign_methods.h" #include "GB_dense.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_type__include.h" #endif @@ -139,7 +139,7 @@ GrB_Info GB_dense_subassign_25 bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_dev.h b/GraphBLAS/Source/GB_dev.h index 1d3c0e7b7d..347f6c5491 100644 --- a/GraphBLAS/Source/GB_dev.h +++ b/GraphBLAS/Source/GB_dev.h @@ -21,11 +21,6 @@ // (GraphBLAS will be exceedingly slow; this is for development only) // #define GB_DEBUG -// to reduce code size and for faster time to compile, uncomment this line; -// GraphBLAS will be slower. Alternatively, use cmake with -DGBCOMPACT=1. -// (GraphBLAS will be exceedingly slow; this is for development only) -// #define GBCOMPACT 1 - // to turn on a very verbose memory trace // (GraphBLAS will be exceedingly slow; this is for development only) // #define GB_MEMDUMP diff --git a/GraphBLAS/Source/GB_emult_02.c b/GraphBLAS/Source/GB_emult_02.c index ce02440d5b..f7fb8d0485 100644 --- a/GraphBLAS/Source/GB_emult_02.c +++ b/GraphBLAS/Source/GB_emult_02.c @@ -71,7 +71,7 @@ #include "GB_emult.h" #include "GB_binop.h" #include "GB_unused.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -462,7 +462,7 @@ GrB_Info GB_emult_02 // C=A.*B when A is sparse/hyper, B bitmap/full else { - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_emult_04.c b/GraphBLAS/Source/GB_emult_04.c index 24d8e425a5..35f03c312c 100644 --- a/GraphBLAS/Source/GB_emult_04.c +++ b/GraphBLAS/Source/GB_emult_04.c @@ -26,7 +26,7 @@ #include "GB_emult.h" #include "GB_binop.h" #include "GB_unused.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -292,7 +292,7 @@ GrB_Info GB_emult_04 // C=A.*B, M sparse/hyper, A and B bitmap/full bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_emult_08_phase2.c b/GraphBLAS/Source/GB_emult_08_phase2.c index 6d111c09f0..3866ad3f4c 100644 --- a/GraphBLAS/Source/GB_emult_08_phase2.c +++ b/GraphBLAS/Source/GB_emult_08_phase2.c @@ -27,7 +27,7 @@ #include "GB_emult.h" #include "GB_binop.h" #include "GB_unused.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_binop__include.h" #endif @@ -209,7 +209,7 @@ GrB_Info GB_emult_08_phase2 // C=A.*B or C=A.*B else { - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_ewise.c b/GraphBLAS/Source/GB_ewise.c index 36ec91ca61..ac358e8201 100644 --- a/GraphBLAS/Source/GB_ewise.c +++ b/GraphBLAS/Source/GB_ewise.c @@ -277,7 +277,7 @@ GrB_Info GB_ewise // C = accum (C, A+B) or A.*B // In all cases above, C remains dense and can be updated in-place // C_replace must be false. M can be valued or structural. - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV bool C_as_if_full = GB_as_if_full (C) ; bool A_as_if_full = GB_as_if_full (A1) ; diff --git a/GraphBLAS/Source/GB_init.c b/GraphBLAS/Source/GB_init.c index 58c675af7c..e91fb29cc1 100644 --- a/GraphBLAS/Source/GB_init.c +++ b/GraphBLAS/Source/GB_init.c @@ -53,6 +53,10 @@ GrB_Info GB_init // start up GraphBLAS // check inputs //-------------------------------------------------------------------------- + #ifdef GBCUDA_DEV + printf ("GBCUDA_DEV enabled: for development only!\n") ; + #endif + if (GB_Global_GrB_init_called_get ( )) { // GrB_init can only be called once @@ -148,8 +152,10 @@ GrB_Info GB_init // start up GraphBLAS #if defined ( GBCUDA ) { - // TODO: must NOT be here - + // TODO: move this code into a function inside CUDA folder +#if 0 + GB_cuda_init ( ) ; or something +#else // If CUDA exists (#define GBCUDA) and if the caller is GxB_cuda_init, // then query the system for the # of GPUs available, their memory // sizes, SM counts, and other capabilities. Unified Memory support is @@ -176,6 +182,7 @@ GrB_Info GB_init // start up GraphBLAS GB_cuda_set_device( 0 ); // also check for jit cache, pre-load library of common kernels ... +#endif } #else { diff --git a/GraphBLAS/Source/GB_iso_check.c b/GraphBLAS/Source/GB_iso_check.c index 3879e8aa23..e8fbb6acef 100644 --- a/GraphBLAS/Source/GB_iso_check.c +++ b/GraphBLAS/Source/GB_iso_check.c @@ -75,7 +75,7 @@ bool GB_iso_check // return true if A is iso, false otherwise bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV { #define GB_GET_FIRST_VALUE(atype_t, a, Ax) \ diff --git a/GraphBLAS/Source/GB_reduce_to_scalar.c b/GraphBLAS/Source/GB_reduce_to_scalar.c index c86ed22ddf..157bb31919 100644 --- a/GraphBLAS/Source/GB_reduce_to_scalar.c +++ b/GraphBLAS/Source/GB_reduce_to_scalar.c @@ -25,7 +25,7 @@ #include "GB_reduce.h" #include "GB_binop.h" #include "GB_atomics.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_red__include.h" #endif @@ -176,7 +176,7 @@ GrB_Info GB_reduce_to_scalar // s = reduce_to_scalar (A) bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //-------------------------------------------------------------- // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_split_bitmap.c b/GraphBLAS/Source/GB_split_bitmap.c index 8e145c3969..9ed1485b1a 100644 --- a/GraphBLAS/Source/GB_split_bitmap.c +++ b/GraphBLAS/Source/GB_split_bitmap.c @@ -115,7 +115,7 @@ GrB_Info GB_split_bitmap // split a bitmap matrix // split a non-iso matrix A into an non-iso tile C //-------------------------------------------------------------- - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV // no typecasting needed switch (asize) { diff --git a/GraphBLAS/Source/GB_split_full.c b/GraphBLAS/Source/GB_split_full.c index e5ddc7faff..23d58c6ea8 100644 --- a/GraphBLAS/Source/GB_split_full.c +++ b/GraphBLAS/Source/GB_split_full.c @@ -107,7 +107,7 @@ GrB_Info GB_split_full // split a full matrix //-------------------------------------------------------------- bool done = false ; - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV { // no typecasting needed switch (asize) diff --git a/GraphBLAS/Source/GB_split_sparse.c b/GraphBLAS/Source/GB_split_sparse.c index 21cf53b910..9d35db3fcf 100644 --- a/GraphBLAS/Source/GB_split_sparse.c +++ b/GraphBLAS/Source/GB_split_sparse.c @@ -243,7 +243,7 @@ GrB_Info GB_split_sparse // split a sparse matrix // split a non-iso matrix A into an non-iso tile C //-------------------------------------------------------------- - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV // no typecasting needed switch (asize) { diff --git a/GraphBLAS/Source/GB_transpose_ix.c b/GraphBLAS/Source/GB_transpose_ix.c index 7ed658030d..f8e8bd966f 100644 --- a/GraphBLAS/Source/GB_transpose_ix.c +++ b/GraphBLAS/Source/GB_transpose_ix.c @@ -26,7 +26,7 @@ // This method is parallel and fully scalable. #include "GB_transpose.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_unop__include.h" #endif @@ -83,7 +83,7 @@ void GB_transpose_ix // transpose the pattern and values of a matrix // transpose the values and pattern //---------------------------------------------------------------------- - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV //------------------------------------------------------------------ // define the worker for the switch factory diff --git a/GraphBLAS/Source/GB_transpose_op.c b/GraphBLAS/Source/GB_transpose_op.c index e32b3a5f46..487ec9962c 100644 --- a/GraphBLAS/Source/GB_transpose_op.c +++ b/GraphBLAS/Source/GB_transpose_op.c @@ -35,7 +35,7 @@ #include "GB_transpose.h" #include "GB_binop.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_unop__include.h" #include "GB_binop__include.h" #endif @@ -110,7 +110,7 @@ void GB_transpose_op // transpose, typecast, and apply operator to a matrix // transpose the matrix; apply the unary op to all values if non-iso //---------------------------------------------------------------------- - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV if (Atype == op->xtype || opcode == GB_IDENTITY_unop_code) { @@ -233,7 +233,7 @@ void GB_transpose_op // transpose, typecast, and apply operator to a matrix // transpose the matrix; apply the binary op to all values if non-iso //---------------------------------------------------------------------- - #ifndef GBCOMPACT + #ifndef GBCUDA_DEV if (binop_bind1st) { diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_fc32.c index d54067b020..f3ab0a65b8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_fc64.c index c5fa816dff..85a631a474 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_fp32.c index 2bd02f7a3d..328f234d81 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_fp64.c index b7067ea4b8..59f48f7644 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_int16.c index 0c000fe30e..590ee2307a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_int32.c index 4c128d55de..4d7c81f48a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_int64.c index bbab4778c0..41efb82683 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_int8.c index b6a480f3f8..b4086b1f6d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint16.c index 2225f252d5..596e5d4b59 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint32.c index c4cfb29289..1d7dea2456 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint64.c index ab53aab05f..91420dce66 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint8.c index 9de20f47a2..7400254d6f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_div_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_bool.c index c870d637db..d529145bc3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_fp32.c index abecfc77ef..aec110801b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_fp64.c index 8accb11c44..f118931566 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int16.c index 169b27afe2..9076a46ed0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int32.c index 16dd4d1e96..9ff97b23e5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int64.c index d7048a94de..babed9078e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int8.c index 9e81af04fd..53996f5f31 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint16.c index f01506e0c8..4c05b0e0fc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint32.c index 0d84632657..466c5b7704 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint64.c index e983c9eb39..9b5c568453 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint8.c index 636809b67b..e6f03cac55 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_eq_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_bool.c index 7ed3fb5798..2381129c4f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_fc32.c index cc401b2c10..241172ddc0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_fc64.c index 91e1b9f66f..3842d74593 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_fp32.c index 7eedb41da0..41fff9d437 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_fp64.c index 08758878e5..6ab59b52eb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_int16.c index cdafc922c1..824e30ac36 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_int32.c index 9713cd80b3..aa7c61f1fa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_int64.c index fa661f46ef..0ef0bfec93 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_int8.c index 918f2f8a0c..37735ca68b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint16.c index 3fa5f6cdc5..e23884d8a7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint32.c index f10b76de7e..ecf5029458 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint64.c index 0d14d2d6fa..e7a6c9da24 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint8.c index 08692692e9..2ac9f1d6f8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_first_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_firsti1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_firsti1_int32.c index 803d7847e8..0c733599bd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_firsti1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_firsti1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_firsti1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_firsti1_int64.c index 3e8e114d3b..3a66636371 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_firsti1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_firsti1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_firsti_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_firsti_int32.c index e9d463e10b..0159cb0b6d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_firsti_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_firsti_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_firsti_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_firsti_int64.c index 08f09114ab..8070cc71ac 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_firsti_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_firsti_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_firstj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_firstj1_int32.c index aa69e3e07c..9d484c10a6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_firstj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_firstj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_firstj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_firstj1_int64.c index e262790201..c9bf5e0762 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_firstj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_firstj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_firstj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_firstj_int32.c index 6e916b227b..0a7335d8bf 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_firstj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_firstj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_firstj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_firstj_int64.c index 8fad33535b..7c1778aecb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_firstj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_firstj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_bool.c index 47ad3bf834..005fbe29b2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_fp32.c index 9e6872808f..aea77e355b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_fp64.c index 4fe35bcb25..14f0b38a7b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int16.c index b0748ebb2f..729ee2600d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int32.c index 56af8e4272..9639cd09b0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int64.c index c7960536a5..17b51ed39d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int8.c index 47273426e0..4ad74bbc98 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint16.c index a3df5c90e4..b825123280 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint32.c index b5091270af..3a3443f078 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint64.c index fc388858da..7d9a473a3c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint8.c index e0d2bd2a68..57b5932524 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ge_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_bool.c index cc4f073ca7..b5aa6d9e56 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_fp32.c index 7bdc6a0ef1..1bc8fe3576 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_fp64.c index 4b4ef5fa2e..a7ce5b883a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int16.c index 17736bf414..14e1974332 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int32.c index bf2ab417e7..88319c3f06 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int64.c index a440259b42..13dddc3c46 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int8.c index e8cf0a89b0..47c7d20894 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint16.c index 7076df44a9..8320bd9722 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint32.c index 803e6f2efb..a697543c6e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint64.c index b6777179cf..ea2d19da93 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint8.c index ff543b6505..ccfe8b1c3a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_gt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_land_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_land_bool.c index 557ebe4807..b0b01c9a00 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_land_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_land_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_bool.c index af687ee170..432c42dc5c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_fp32.c index 6071bffea2..874e63041b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_fp64.c index 9d8cb500d0..4bcc63c5df 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_int16.c index d89ab3c599..1763ad3e56 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_int32.c index a7430ed4b3..601b6a14ea 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_int64.c index 5e781f8ddd..ad27256e60 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_int8.c index 0f87315741..2104c84ab1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint16.c index b201382738..edfb7419cf 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint32.c index 3aaa99812c..5bbcfa70c0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint64.c index 8c7d86935f..627f1eb325 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint8.c index 203918ec2a..3237e11705 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_le_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lor_bool.c index 72600df89a..f05fcc06b4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_bool.c index 484bb88a15..c37afa39c6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_fp32.c index 1720f19cd2..11573eb1c1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_fp64.c index 91bf8b67d8..243bf8c72e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int16.c index a80bf6b767..c9fe621816 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int32.c index e5d63592f0..1b3a25d565 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int64.c index 1891af144d..a36031b1cd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int8.c index 7481e3fa5a..98b08bdbee 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint16.c index f2bf4bc1d2..f00afac1de 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint32.c index 56079c2ee8..c48492f780 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint64.c index ba21a9f2f4..8e4f22225b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint8.c index c7af018464..cc1b2fea3f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_lxor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_lxor_bool.c index 5af53899d9..6211d04492 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_lxor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_lxor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_fp32.c index a907c67a31..061da7b510 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_fp64.c index 64613c8da3..db2db647c2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_int16.c index 70199fd59e..77ea64c3cb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_int32.c index e63fd6ff7f..8713ab6be1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_int64.c index 307078ac45..7dc22443e9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_int8.c index eebb230a59..c642469b59 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint16.c index e2d486999b..0c99ac7ed3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint32.c index 9bd0a9f400..4cf1290dab 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint64.c index 55287c3d76..c2799bb18b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint8.c index 3ce505b0ff..5d3762ad59 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_max_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_fp32.c index 744dd19c5f..96d1bb4dfa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_fp64.c index c7360bc86f..2540c77e1e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_int16.c index 1493349a42..f742c03b2c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_int32.c index 65ff47bff6..3fd6b615fe 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_int64.c index 28c07c25f8..746012c0c1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_int8.c index d13ffbb020..3872118b22 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint16.c index 16bcb68037..44ca3777e9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint32.c index 4f2b3d4d7f..0abafa2d3e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint64.c index d139c821f8..2afc518906 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint8.c index 880b848612..69c8034cdc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_min_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fc32.c index e3f299fe82..886c43253c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fc64.c index 7cdc68750b..f38b4dbd03 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fp32.c index ce67b91ded..5ce02fb2a9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fp64.c index c9e3c4767e..fc90068993 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int16.c index 4cab03b477..6347f92a56 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int32.c index 1988ea718b..c7ee3153a1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int64.c index 52acb80724..337771cbeb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int8.c index cbb68fb264..4c4c6da67e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint16.c index c9d2d3d4e0..5c76f8a572 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint32.c index ad9bcc138a..a5eb142a4d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint64.c index 18755c89b3..d4c705c9a1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint8.c index 40640c56a3..1eeaf64a5a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_minus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_fp32.c index abb400e0dd..117d6673a3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_fp64.c index d5f6d5fe38..5bd93ad315 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int16.c index dfbe730134..f6341a3657 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int32.c index 0af0a2b344..46ae8d8078 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int64.c index 00c19db0d2..71c8c8e79e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int8.c index 02433620d5..5f8ba7bb0c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint16.c index 73eb57f879..80bec96551 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint32.c index 58e1ec61a1..10d1fd646e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint64.c index 827212d610..5a3554deb8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint8.c index 4aca343836..7ce8f172a2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_ne_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fc32.c index 6437e38f95..bc672d3a4f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fc64.c index 0e460fd838..e71d9a3b5b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fp32.c index e0b21a56c2..01a9f3a549 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fp64.c index 5962004ed4..573a143858 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int16.c index 8db8fa1441..6d4b19d3a5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int32.c index e212b21463..b1659c5dbd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int64.c index 2c07b881a3..c6bba18b84 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int8.c index 9da9542670..8b16fb75ea 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint16.c index 0f9aa6c9ac..e1c808a8e6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint32.c index bbed0005af..dddc8fabb9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint64.c index 37a56e7a93..0dcfb3c5e5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint8.c index c9e2547335..fc212a9f77 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_plus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fc32.c index 716ec7ee9e..d78c7852b5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fc64.c index 8c4b2952d2..9cafa136d4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fp32.c index 91527f62d3..fe98f6b1ce 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fp64.c index f78d475814..6906e698a1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int16.c index ab3c331b03..c743153f79 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int32.c index 51bda0a7e7..1eaeaee58b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int64.c index 57fb0b7448..2b9318bbfd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int8.c index f46c662dd8..c22bd80b95 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint16.c index 24be8f3cc4..9941d6a2e7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint32.c index 3a238decbe..b80d7ff414 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint64.c index a4fbdc0103..e3806b30bc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint8.c index fda87fc862..1051c3d090 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rdiv_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fc32.c index eac4594ef3..d8401e68ad 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fc64.c index ebea7590a9..4a66230dbb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fp32.c index d931341f91..afeda76614 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fp64.c index 75b080c43f..5d05266b8d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int16.c index 8c9454bf72..469011343a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int32.c index fdc9100453..dd5dd019ba 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int64.c index 8277ff3ee3..232965cd99 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int8.c index 379033b66d..ae65721b11 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint16.c index 23c6839c13..39d45ca788 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint32.c index 7c7fb0db9d..d08463b04e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint64.c index 0a0b30357d..3136199982 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint8.c index 9e3c22a0dd..31330d87ca 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_rminus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_bool.c index 95391dcf7b..110c130c5d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_fc32.c index d204746938..0a96c79eab 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_fc64.c index 0b1f0744ab..b6dc6c24cc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_fp32.c index e997528aa4..1ca27dcdd0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_fp64.c index 3094b37cc0..a3398b4d1f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_int16.c index 50ea051ae8..e591bdb1d6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_int32.c index 6031600d19..765ad754eb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_int64.c index 9e3212fcfe..454e90e57f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_int8.c index 3e210a3bcd..28cc81236a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint16.c index f6236c1efa..a8a9978e6a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint32.c index fca88e7ee7..720d1a7f0f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint64.c index 9aa99dd54c..6bd2c8c868 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint8.c index 06b3312342..850573f113 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_second_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_secondj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_secondj1_int32.c index 676d5326a5..3eaae1369c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_secondj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_secondj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_secondj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_secondj1_int64.c index 196581dd84..a11a9102b6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_secondj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_secondj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_secondj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_secondj_int32.c index 0df232ffd2..fb9381ceda 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_secondj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_secondj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_secondj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_secondj_int64.c index e7c5bf6080..1fb13a249d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_secondj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_secondj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_fc32.c index affb8f2e98..e41929b4c7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_fc64.c index 1d9d471ad4..0482ffd196 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_fp32.c index 152b6164b8..8f9357cfbd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_fp64.c index 96cbd06476..13378c67c0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_int16.c index bdb3171959..1e21cb174e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_int32.c index 0ed1ba0915..31d07d7bf4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_int64.c index ac786cea4d..aecc59a2cd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_int8.c index a891ab1b4b..eb187d5431 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint16.c index 0cfab22ea8..5013975e4f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint32.c index ac69809287..fa340ae73c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint64.c index 6433a30b8f..e7e9e17b10 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint8.c index bac9317b9f..7c549073fe 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__any_times_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint16.c index a6e3e387c0..157821c5c7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint32.c index 024ae9c284..4bd23ced73 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint64.c index fe47c11756..e9c65cd0a7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint8.c index 8a4235ace7..06bf354b72 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_band_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint16.c index cb0c43ac13..3ecf0aceb9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint32.c index 6ddc0e028b..fc185e3f5a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint64.c index e68e6676bb..61bc6577e4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint8.c index e5a2d8ba67..53e74cd6d0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint16.c index 48c63a8ee0..ff81a26c26 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint32.c index 2f832a31bf..216bfd575d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint64.c index 14cfb65bb2..79546b65e4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint8.c index fd795693a3..c0fd2d2c93 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bxnor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint16.c index 8234e29945..be2c43a594 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint32.c index b971ba4bec..2151a0b296 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint64.c index 987aefe34c..23820f1fa8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint8.c index 515f5b3b8d..170b91869e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__band_bxor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint16.c index c074816310..b5b9ca7925 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint32.c index d6fe864546..e1c5d24a10 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint64.c index 0bf7b2888f..1f69ab439a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint8.c index 5ea87d3241..9c9c625d71 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_band_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint16.c index 102f524c79..37aca83daa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint32.c index 356106f55e..53743ef567 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint64.c index aa0e06a0e8..cc31b4db71 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint8.c index 89adda6a1f..1ec9508ee0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint16.c index 28ba8e8b4e..111ee78aeb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint32.c index 9bd8df714b..0232eda7ea 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint64.c index f5d006febc..c8b643d003 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint8.c index 325d8e226e..15fa996e4c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxnor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint16.c index 1d954ad118..abd3e94417 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint32.c index 296896f1e9..4b2e00c339 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint64.c index 9bdd805186..0aab457883 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint8.c index bd177b0f66..49f617bd4e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bor_bxor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint16.c index fe7b62ca28..6b2451fcb9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint32.c index b64222215b..914d078547 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint64.c index 7a7f07c73a..5dccaf679c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint8.c index c0415af4cd..b6cff5c55d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_band_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint16.c index 382da3b86a..5e90d2e819 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint32.c index 9d2b3e3561..bdc88454e8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint64.c index ea4b993044..fd6e890a5b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint8.c index 0104435bc5..e8b46d13ae 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint16.c index 223d923ed8..9228a8fa25 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint32.c index d309c467d7..e773cabccd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint64.c index 605766aced..c472f91fc7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint8.c index 484c9c2f1b..7eda576fe6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxnor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint16.c index cc3af82219..9543ca643e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint32.c index f75ef1dc00..d456532713 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint64.c index 827bb748fa..1394271608 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint8.c index 9e7793a5d7..37161a49fa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxnor_bxor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint16.c index 1b538edb5d..9ac0d635da 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint32.c index 1e72c709a1..8424c95ebc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint64.c index c3818a8a94..314614c313 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint8.c index 46ca22c19b..02d1c0da19 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_band_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint16.c index b07609847e..0bc6d1e0e1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint32.c index ced056bfaa..c74f5e989f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint64.c index 2fb0c5d461..c1970065c4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint8.c index 427d9879cf..9222522f36 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint16.c index 7184222386..44ab24af02 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint32.c index b5ed585835..74826a064c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint64.c index 727ee99642..4e897ad29e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint8.c index cf71d91d8b..5544b543c4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxnor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint16.c index 97470321bc..462549eae2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint32.c index 5ad741d8a5..743b6ea12d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint64.c index fbc5be7ad0..24de73108b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint8.c index 0f0abc39f5..e7de578fe6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__bxor_bxor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_bool.c index 1c6229db57..ede2cce838 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_fp32.c index d7dc3a1c79..d30f12821c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_fp64.c index bcdc00b1f7..64d6c9ab05 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int16.c index fcfab6b0c6..a5a957ab15 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int32.c index f8cc8ef932..fd26733fa3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int64.c index fb17cbd14b..34aa11c03f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int8.c index 617c97b290..dfdbce1e90 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint16.c index 9a0053ef6a..3cec39314f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint32.c index d687934d4f..ff849b3ae2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint64.c index 7088d3d340..14c0b78c20 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint8.c index c4e343c5ed..558993879e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_eq_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_first_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_first_bool.c index e6a51715d1..a6ac72a7b0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_first_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_first_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_bool.c index 0933299737..37bc1c2d73 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_fp32.c index 6913552abe..8cf4004661 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_fp64.c index dd10a40653..7180ae1534 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int16.c index 7da1ba5607..532636331f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int32.c index b810f8f457..cec6ef56d1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int64.c index facab5e7db..340de0de01 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int8.c index f2474d9d91..8efc30ce70 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint16.c index 1386704e8c..2d6641b158 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint32.c index ac751d8084..abc6d211e4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint64.c index ddec825dac..caef433987 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint8.c index f80333d0c5..6c4e45d4ee 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ge_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_bool.c index 2bbcba537c..37a27576ac 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_fp32.c index 833770609e..0ebff4bfba 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_fp64.c index 89e600302f..9f81dbfff3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int16.c index 0f1af2b396..f7eb59624d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int32.c index 132e8f136b..d0d5e2e34f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int64.c index 59817ea37a..86d68a09da 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int8.c index c76b672d66..7e9b465e1d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint16.c index dfe2a1e484..b9cef649df 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint32.c index cd1a735839..75ee70450d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint64.c index 69577a4836..e92f3babc7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint8.c index 914a57e0ee..b011364fdc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_gt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_land_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_land_bool.c index c61a91a18a..62659ceda8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_land_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_land_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_bool.c index 0700607752..032c272a7a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_fp32.c index ffe5e9db15..d28c8119ff 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_fp64.c index 71ef6b7052..9b96601971 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int16.c index abbfe4abfe..ed0db7a726 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int32.c index d2a35e5642..66a8fae4c5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int64.c index 1ec142e304..7063fe80c1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int8.c index adced5cd7e..1796e2c291 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint16.c index 12bdb1e173..9cdaad7515 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint32.c index 622eb0f6a0..cd2ffe8fda 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint64.c index 73698dc38f..bd066f6d1a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint8.c index 412714a7a1..bdb9eed1dd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_le_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lor_bool.c index 62c9269a34..aec33b44ab 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_bool.c index 898dd50e5d..4b374de9dd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_fp32.c index 75fe669ce8..85be7d4bee 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_fp64.c index f78f740640..0fcfd179b6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int16.c index d1e47d4a40..78869763c4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int32.c index 496104a75c..992dd0a479 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int64.c index 8a24c677e6..733d1b3968 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int8.c index f3f4fb1e53..9b742fbc95 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint16.c index c63b154fac..8f14ab7a45 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint32.c index a28f3f0ada..f40103b142 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint64.c index 0d6d4df588..1cd646e0d9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint8.c index 5c1d78b7f9..de2bb7167c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_lxor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_lxor_bool.c index 75999be6c5..0e41d84e84 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_lxor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_lxor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_fp32.c index 3693018538..5a2dfadb49 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_fp64.c index 74244ff887..72123aaa7d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int16.c index 35b8a22072..3d894c4ee0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int32.c index ada42db210..7f4d9d573f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int64.c index 11da7ec12f..ebf9a0c967 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int8.c index 53d2c01ff2..8d0951611a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint16.c index e628444995..e406910de3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint32.c index e2f5538b64..2bfb90f03d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint64.c index 5ca749b7cb..edca39b6cc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint8.c index c2b4b7d55f..0acb1a4665 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_ne_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__eq_second_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__eq_second_bool.c index 553f3ece61..3d175744af 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__eq_second_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__eq_second_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_bool.c index 5857971aa0..ffce1b50cb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_fp32.c index ab3198e927..08734b6e1b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_fp64.c index 7d040b2eba..b744f17193 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int16.c index 58251f6cf9..ca786a7990 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int32.c index 0e7e334df1..b622533eb0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int64.c index f4c7649067..9c16fe0311 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int8.c index a867fc9bdb..367f0cc30b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint16.c index a7b45329ce..31b56d44a9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint32.c index db67f46798..73fe15f16a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint64.c index 0065084b4c..8611f19e33 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint8.c index a11b3df783..fb7a6647e9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_eq_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_first_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_first_bool.c index 6e31362807..640b37ab04 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_first_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_first_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_bool.c index 3e87aed441..90ce1362b4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_fp32.c index a02da0e6e4..9126479cf9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_fp64.c index 27fa112c79..7ae260710e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int16.c index a7d52220ec..b3d98af724 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int32.c index 2591d12dc9..fc8cd2b836 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int64.c index 3586cbf7b7..07fdb2ff22 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int8.c index e2402516b7..d4190f3ced 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint16.c index a3491b03ef..6ab5e40ddc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint32.c index daca4b2683..e9f3afbd40 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint64.c index 61a87494ba..7725d22cf0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint8.c index c0f157b7b3..70d509ccd2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ge_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_bool.c index ef0cc42c00..dba9377f86 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_fp32.c index 14de5d141b..2ac8aae56c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_fp64.c index 867d84f3ae..3c42d97038 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int16.c index eab24a67c3..495c9c9d15 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int32.c index cc2b37dc3d..b2b4cf5b61 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int64.c index 9de744141a..0b2d58c3dc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int8.c index dbe0c52835..72974948e0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint16.c index e896a27925..f720f549a3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint32.c index e0d2f3169d..8835adbcc2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint64.c index 88e645c21c..d91c57344b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint8.c index 834910e875..1da57fcdcb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_gt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_land_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_land_bool.c index 4caac01a3b..7110ff2728 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_land_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_land_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_bool.c index 5bf0c95160..502bf4b533 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_fp32.c index b1502d1e03..57a9427f46 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_fp64.c index 8f83b58a6e..ae8ca27a60 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_int16.c index 9c57fec615..35155bcb55 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_int32.c index bef55338e9..6cf29dba53 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_int64.c index 190903d8b7..ac7f322432 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_int8.c index 22bc351b05..712a2446f7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint16.c index 9a5210aa05..415e8042c4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint32.c index 8b296d4162..377cc16925 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint64.c index 9b7265d4b7..b937aaa372 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint8.c index 0329a8c0cf..eea3113fd3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_le_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lor_bool.c index 6f3ceff42f..a4550204b9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_bool.c index 4038df53ba..f2977117e6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_fp32.c index f5d0d1fe86..f9e816971e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_fp64.c index a9af776e9b..8e259da12b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int16.c index bcf1e7a606..4fc2db0063 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int32.c index efc7fe47a1..1fcabe15c0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int64.c index 889cc2a84f..b810174981 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int8.c index 338a73f4f5..82d85a8eb6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint16.c index 5dc50c0758..8fb185091d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint32.c index da5e5c49f7..79c06682e5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint64.c index 64b415510c..0e17dd82e9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint8.c index d06261c6c9..114b85dbfb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_lxor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_lxor_bool.c index 080bce2c67..8f07fb0f30 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_lxor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_lxor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_fp32.c index 73862e7963..63981cfc76 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_fp64.c index 3ef6bc730e..1f2defcc4e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int16.c index 80b12e26b7..badaac3aa6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int32.c index 703156ebd2..0a45eacd2f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int64.c index f55ed56175..895b388cf7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int8.c index a1afc9cda2..339a31954c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint16.c index 3910f11905..9dfb695ebf 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint32.c index c9e2ea99e0..9a06001d64 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint64.c index 327a598178..bd1ca82daa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint8.c index 65ceb4f92c..2d78f23ba1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_ne_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__land_second_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__land_second_bool.c index b09bd96619..b6040aef60 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__land_second_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__land_second_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_bool.c index 875b773e89..b240644529 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_fp32.c index 360d3654a9..2965601975 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_fp64.c index 90cd0bf65c..026308083a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int16.c index 9e24a8b46d..89f246328f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int32.c index 1226c0b7b0..bb1e682076 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int64.c index c277897c4e..7478e1e6d6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int8.c index ce36007067..c9ef4d2323 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint16.c index ab83d77075..d6671b43e1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint32.c index 9044d2df9b..29ec6be576 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint64.c index 831ba18de1..2c8b56360f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint8.c index bf2e5c0e6b..09f37d2fdc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_eq_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_first_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_first_bool.c index 8247f49cfc..5c85d087f0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_first_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_first_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_bool.c index ed0a2717fe..e7df0ea237 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_fp32.c index e9050ee281..7581ec0eaa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_fp64.c index c91259d6ab..d1d5a3938e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int16.c index a76be5c7be..e08182ebcf 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int32.c index 5f56ee89df..1e3566793f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int64.c index ff997d79f6..ba5e76c45d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int8.c index efeb6d8721..18fae8191a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint16.c index 7a3d661eb7..3f0a6c8513 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint32.c index 6b64f981f6..a033a65cb6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint64.c index ab7192484f..e29ec4579e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint8.c index e11cd097e7..d0b7854f3f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ge_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_bool.c index 802050fbd6..2728c2f5de 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_fp32.c index b9a64a5518..25e20ecc92 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_fp64.c index 9fc033a614..dec86b2536 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int16.c index b2c64cd054..f39e3382aa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int32.c index 17ceb434a8..e6ffe10775 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int64.c index ffd2d37b25..2524cc0f2d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int8.c index b2b48226e4..d59caa05ee 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint16.c index 6f4a563113..f75c57f417 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint32.c index 9f7908a108..bdee1e8873 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint64.c index 226de1f601..285f8a3912 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint8.c index 5b64885407..a2b7953ba0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_gt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_land_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_land_bool.c index 71cd721194..f96e13afc6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_land_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_land_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_bool.c index 9c781efb82..548d6b2f07 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_fp32.c index bdca703e00..1743aaddfc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_fp64.c index e92b51bf40..7390a15173 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int16.c index f0378f9fc6..5e6b9c91ab 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int32.c index f081c521af..dc2b58887c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int64.c index a170af6dc6..f46c62c272 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int8.c index f0ad30d376..286b28c5ee 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint16.c index 2a5541195c..f63b8db505 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint32.c index d13a2b45da..f6da5b7317 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint64.c index cc33d71f11..b9ab25ca80 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint8.c index bc86c876c8..ee8298cac4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_le_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lor_bool.c index 64fb555564..e6b65047ec 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_bool.c index f1a57b6957..2b6dd27478 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_fp32.c index db525984dd..978bed39ed 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_fp64.c index 58c5ef47ac..b717c14282 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int16.c index 64992a8e49..d56f94cfab 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int32.c index 1acd8dfd96..b52650fd8c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int64.c index 6561310ec6..91a64ad8bc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int8.c index 0cc1a715b0..befef1b702 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint16.c index 882b98c989..949fa445bf 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint32.c index 38bf9cec64..3354e6cf4a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint64.c index 28813bebcd..fa3aceeffb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint8.c index 4665d9e092..1e148991b3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_lxor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_lxor_bool.c index edc848f053..a7c7ae9005 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_lxor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_lxor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_fp32.c index ee40c6eb70..64eb6d4a24 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_fp64.c index a9911babc8..9a7202c84d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int16.c index bab9193f97..337c6d477b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int32.c index e092817394..875781f4f2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int64.c index 3ad38e8f9b..700cc1449d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int8.c index 47bbc527b7..4a5da7b11e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint16.c index 4000ddbc44..0d2b4ade62 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint32.c index ced0528214..956b2fce17 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint64.c index f1cdbd97f7..86195d9c47 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint8.c index fa82ca1c8d..57ac9e4c92 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_ne_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lor_second_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lor_second_bool.c index 0b381633fd..27e531590a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lor_second_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lor_second_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_bool.c index 745cd11222..49017c1af0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_fp32.c index 95f1edcfaf..bbc81b89cd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_fp64.c index 1e1af90e13..3ac41395d4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int16.c index d77b6e3ded..869865f874 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int32.c index 539d1fd383..71326b6bc1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int64.c index 0a486b7e2e..f9492b7f3d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int8.c index 503aa23a50..9203eaf5d4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint16.c index a0101e00e4..5a78c663cd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint32.c index 80b859c536..17c3c912e1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint64.c index 15cbd6bef0..dadacbf878 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint8.c index eca41354d0..3b1176c83e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_eq_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_first_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_first_bool.c index 80fb470696..b999d19fa6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_first_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_first_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_bool.c index b8e9b34e72..a5d4521290 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_fp32.c index 42e890901b..74fb45187d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_fp64.c index 88c9f655cb..4ee4dc014a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int16.c index 231bbba973..813eb3a099 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int32.c index 519eef1fe2..df90f01cdb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int64.c index 0b5167c651..736be65508 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int8.c index 372d02106d..f7ceaefd77 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint16.c index 4fa2c9cf25..bea7ec5e41 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint32.c index f611298a18..97a317a1fd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint64.c index 7878c89084..5ae9fa85b8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint8.c index d5a507a7fa..cbbeea1a8c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ge_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_bool.c index 54b64c0849..5759188c24 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_fp32.c index c5373263b8..5a1007c6e3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_fp64.c index 935c4df706..0afe525e06 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int16.c index bc639aba06..94797c1752 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int32.c index 5f5be4e80e..a20d850302 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int64.c index 0ebc33df70..d9caaf099e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int8.c index dc2c268cd0..c726d5390f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint16.c index 0945d70b81..6aa64d64fa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint32.c index 6691873fe9..7cf2bb829d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint64.c index bd25b7fc5e..31fb649b03 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint8.c index 2a474f2880..cc4246999d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_gt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_land_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_land_bool.c index ccc74112f4..1511951b0d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_land_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_land_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_bool.c index e1b3e6ac49..6d2c186156 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_fp32.c index 099dfe3dc3..1306afb01c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_fp64.c index fbe3c69d53..1f7bc3d46a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int16.c index 6caa518c60..04138c1da3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int32.c index 15ba2b4fb5..21a0fbebe6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int64.c index b60e6a0e29..4be44e1ddb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int8.c index 5060de3f54..bea82ed064 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint16.c index 439027384e..270bd5f472 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint32.c index c3d1a73887..98b668be7f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint64.c index df04e021ce..e5461b1a0f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint8.c index f1a3f3460b..bb73fa5891 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_le_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lor_bool.c index 1d1be2026b..3498fdbf40 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_bool.c index 63ca813330..854501cde8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_fp32.c index 465bdf2495..fd9fd96d15 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_fp64.c index cc101980fc..ee18b47fb9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int16.c index c5649be262..12ed57f57f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int32.c index 95ac676c8f..874dbb1995 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int64.c index 0a92c4b501..4e04bb94fa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int8.c index e8a7f11282..78035e37a8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint16.c index de2b914ad5..ab5b967a1d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint32.c index 0532f717dc..5b4ba817aa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint64.c index a8fa3df75d..69d37d2f4a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint8.c index a0dc9050bf..5fe83e93f1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lt_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lxor_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lxor_bool.c index cf79d2a444..3ce11c85df 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_lxor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_lxor_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_fp32.c index ae21822e2e..46d6d36689 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_fp64.c index ba71225c78..b2b4e713af 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int16.c index de059da860..867cc37a1e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int32.c index f7218a53d6..080c1bb0a2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int64.c index 40d41bab55..2471b382cd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int8.c index 5c3ea3b21a..9ab4b7cef6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint16.c index e68703430c..85f84b7fdc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint32.c index dfde5e862e..6c7538e0b7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint64.c index 2fe732357d..e6e335b6ff 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint8.c index d5cd5b0a68..b7b5eaba59 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_ne_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_pair_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_pair_bool.c index 7417935a6a..aaf48dfc0c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_pair_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_pair_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__lxor_second_bool.c b/GraphBLAS/Source/Generated2/GB_AxB__lxor_second_bool.c index 5444315612..a5e3eeb1e3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__lxor_second_bool.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__lxor_second_bool.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_fp32.c index 70ec8b1796..46375a4ae7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_fp64.c index 4cb7e9799f..f9ae97aa8f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_int16.c index 8b28ed3618..166380631a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_int32.c index 182adcff1d..b2f5b5fe24 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_int64.c index 44a997ebe8..df89aed3bb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_int8.c index 8a71c2ac3e..2e306fbb0f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint16.c index 3ffce2a71a..00c8312a6a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint32.c index 3dfe07391a..3ee6c8b754 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint64.c index ef441e4bcd..821de47eec 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint8.c index 130e45c0f7..1c7559d243 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_div_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_fp32.c index 1ed120a8be..8b99130bea 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_fp64.c index 888400427d..283e0a71b4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_int16.c index b63de0f59f..0d8cf5220b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_int32.c index ff5cba32b0..800635c592 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_int64.c index 7a4ea5ec1b..f11ab0862d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_int8.c index 9e5ae460e7..6a63c0c868 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint16.c index 30aaf629e9..82a3f6b30e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint32.c index e344e6b975..4f95025321 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint64.c index d005815ca1..555ab01e75 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint8.c index 8e62142014..cec98cbaf4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_first_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_firsti1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_firsti1_int32.c index a0d0c24439..a10b1ab9e9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_firsti1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_firsti1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_firsti1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_firsti1_int64.c index b9ae3fe8a1..71496b8310 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_firsti1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_firsti1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_firsti_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_firsti_int32.c index 06b6e0c5e6..030ec10885 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_firsti_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_firsti_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_firsti_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_firsti_int64.c index f7904f61d5..7ee98e34be 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_firsti_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_firsti_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_firstj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_firstj1_int32.c index de50ef7e96..56843dcd69 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_firstj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_firstj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_firstj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_firstj1_int64.c index c7b2fefbbc..dd7bc095df 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_firstj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_firstj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_firstj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_firstj_int32.c index ed53198009..99b4031d5c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_firstj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_firstj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_firstj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_firstj_int64.c index 116a404695..2d704d2e4a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_firstj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_firstj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_fp32.c index 28797cfa99..36fcb991de 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_fp64.c index 3cfb6a95c7..09651b0e3d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_int16.c index 74ef77b7e9..7df4172f61 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_int32.c index f66e6cb5c1..909012eb42 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_int64.c index a662c67d78..6b0a89b456 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_int8.c index 0fa78f0513..16a22bfca9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint16.c index dd98b8c640..6bc19843d3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint32.c index 32db7abb2b..8f33d9f889 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint64.c index fea34698d8..ecd603d504 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint8.c index e45e6e1f1f..9a03b4e3bb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_max_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_fp32.c index 477749500b..256b75b801 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_fp64.c index d3280da529..bc440ab434 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_int16.c index 4cd6f2b50d..e66549006b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_int32.c index 35400678f6..6e0e1fc189 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_int64.c index 349006550e..9c3c876397 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_int8.c index 1a527ecdb1..ce3c9d39d5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint16.c index 26f6040919..19a2896bbc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint32.c index b86c4816c7..a7292cb2ea 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint64.c index 721d7fb113..af39bf7927 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint8.c index 917d23c74f..69014892dd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_min_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_fp32.c index d02e89d286..74b90daae4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_fp64.c index 0ef61830ce..8f9d4ab7e5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int16.c index 9486da71c6..e619f463bd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int32.c index 4634820bb2..0964add842 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int64.c index 507184f512..100067f54c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int8.c index 9499165c51..9b94832e14 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint16.c index 635d9a64de..3792308cf2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint32.c index 1dc798022d..835e1d6c2e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint64.c index 45266cdf57..b212b499b2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint8.c index 7b19d902e9..3e8f106e83 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_minus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_fp32.c index 6da2ba821d..4fc891e048 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_fp64.c index d40178860e..a0b034d178 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int16.c index 2bc8ec55e9..3f914cc360 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int32.c index 089bf14201..0d774ac372 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int64.c index f3f169ec95..9bb9812601 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int8.c index c1802272e0..8d39071dc2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint16.c index 89588c5ca3..0635a3c765 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint32.c index 56fa62b2d8..07061f60e6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint64.c index 1e8f27637e..0071e321db 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint8.c index f5aede902b..a57d38b446 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_plus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_fp32.c index a2513ec62c..8b3f717bb3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_fp64.c index fedac5904d..4de4dec492 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int16.c index 8d0a5d29d4..58b2c6165c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int32.c index 4bc3460130..46050adfa1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int64.c index d0ceb03b76..77ce8de303 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int8.c index 2a8b78ed6e..a1bd7a098b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint16.c index 6829021b40..3ed88451d0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint32.c index 3746a4a4a7..dc025d288d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint64.c index 502c497500..455ee9fd2f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint8.c index c990cd6b83..9a5035ef3b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rdiv_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_fp32.c index b605c108ce..901b89f11e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_fp64.c index bfaca7ae77..f183e14ae0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int16.c index e60548de2b..cbe2bc8777 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int32.c index 1cb64d2f9e..cecc4e742c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int64.c index bba6abaaee..6b31d7fa05 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int8.c index bba7e9b61e..cc598f1a39 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint16.c index 97b022f71a..07f4c358bc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint32.c index a21dffadcf..cf2a80fb07 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint64.c index 32a5ac099e..269a46234e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint8.c index 7f506061a9..56e91450e0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_rminus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_fp32.c index f7dcafc3a7..2c895531b5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_fp64.c index e6373db8b1..4ff0fe8139 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_int16.c index 28679aae5a..5fa9574413 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_int32.c index 9446afd5e7..0c7394e81a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_int64.c index 29ccbdd499..f1b7a91407 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_int8.c index 4676ecd2e2..6fcf130653 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint16.c index baf22c27b0..4731ac1384 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint32.c index 5b1ac9cf10..28d6d15474 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint64.c index bdd5546828..f58357c350 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint8.c index 41db5946b3..978e4c3fda 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_second_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_secondj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_secondj1_int32.c index bec3de1575..2d1d4a894c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_secondj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_secondj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_secondj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_secondj1_int64.c index 08a190fa14..b06aa75e23 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_secondj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_secondj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_secondj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_secondj_int32.c index b5391aa0ca..139686fc63 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_secondj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_secondj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_secondj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_secondj_int64.c index 7125ef78d4..d943b4514a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_secondj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_secondj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_fp32.c index 3d321356af..5ce070c9dc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_fp64.c index 1c60017c04..30f6c95854 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_int16.c index c4a7ca017c..cc283ad7c2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_int32.c index 33398ee1e0..8cb01efad1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_int64.c index 34317ce980..52965ede4d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_int8.c index 83e4a32edb..2a7ddd9d72 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint16.c index 2f6c93a143..f417fa19f5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint32.c index add8ddd515..e3262d366b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint64.c index 6b5bbdb375..a156cf313c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint8.c index 7174ae546d..0578caf2e2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__max_times_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_fp32.c index 5ffc4ab689..143cbf8368 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_fp64.c index 13c5287150..59426ed44c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_int16.c index cfbbe3659a..c098e60011 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_int32.c index 6ec81099d1..eaf47623db 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_int64.c index ae7002a009..180964e5b9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_int8.c index afec6950c6..c99ecd9684 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint16.c index 07e76473e2..ee8331040d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint32.c index 18710b887f..6e67e556b5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint64.c index 235f8a8596..5fb1995c1a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint8.c index d56c62a756..3544642b53 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_div_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_fp32.c index 3da5664067..c2a786648c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_fp64.c index 14efe1572c..3b3b32ec33 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_int16.c index 0c31027462..1ec7171855 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_int32.c index 8137761ead..6249253813 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_int64.c index d3b19e1fd1..5bf5fc715e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_int8.c index c49c1b64fd..f814472e0c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint16.c index 6461faf405..5769329db2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint32.c index 87259cfad9..098753e555 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint64.c index 407dead0c7..bf1fa7b4a8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint8.c index 992d69bfc2..880da37af2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_first_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_firsti1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_firsti1_int32.c index 6e190dc719..73a549bd75 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_firsti1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_firsti1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_firsti1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_firsti1_int64.c index e0a6981c83..1ce17e868e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_firsti1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_firsti1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_firsti_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_firsti_int32.c index 336ffe3761..5983857020 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_firsti_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_firsti_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_firsti_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_firsti_int64.c index ce1448d63b..aec44312ac 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_firsti_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_firsti_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_firstj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_firstj1_int32.c index 7696f6fd9b..522ce1d9cd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_firstj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_firstj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_firstj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_firstj1_int64.c index d9520ac93e..4cf73639ed 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_firstj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_firstj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_firstj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_firstj_int32.c index 98a6901492..caa78a9f53 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_firstj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_firstj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_firstj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_firstj_int64.c index b3e4fc9843..7c492c1c2e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_firstj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_firstj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_fp32.c index 7109b12f4f..ca80734e6a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_fp64.c index afa87b836f..dd08c0e51c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_int16.c index 4f28d0d661..da144299da 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_int32.c index c525362c17..e41eba2f11 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_int64.c index 8699d098d6..966bcb231b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_int8.c index f3f35e3541..e2f9a9e607 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint16.c index aa92313427..f97b1cc698 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint32.c index 118f026a3c..4d808cf468 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint64.c index 8415b5d14c..8862f383e6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint8.c index 594fc72103..f8ca1708f5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_max_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_fp32.c index 1bde0e84b6..5f542b77aa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_fp64.c index 4914790e2b..1d042cfad6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_int16.c index e775db9f5b..b1fa60339f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_int32.c index 23ef41170b..82728cf195 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_int64.c index 88a614164a..6208e7e9d9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_int8.c index 0ff079b62b..b6d566a4d9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint16.c index 7ae8ca9068..9cfe643e1b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint32.c index dcc742a5d1..e692c80a20 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint64.c index 7a8b9101db..2e522b0a20 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint8.c index 7eb915255c..45d2816e98 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_min_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_fp32.c index 8e789bb034..dcf6a2add4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_fp64.c index 409190f61a..db97d45dfd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int16.c index bfadac1996..0c2b3068b9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int32.c index be9db060e4..02aaba51b1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int64.c index af05b9c83f..7200f6bc31 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int8.c index 71754594da..bba8a36d91 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint16.c index a5134c16a6..65b1d6fd1f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint32.c index 1d7d5ee2dd..3d08952e27 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint64.c index 237f1f57b1..a65eab4ff1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint8.c index 0ceabc6e06..de10b54380 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_minus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_fp32.c index 3152f69a70..c13906234c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_fp64.c index 1aaac594b2..873731ea49 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int16.c index 7a750295fd..2a36b4212b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int32.c index f0258a975e..2ab8291713 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int64.c index fc16ae9919..f793f9da47 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int8.c index 5308a41395..c133c8a4bc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint16.c index f7ff2dcd1f..9b11371229 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint32.c index 4ab4388bc2..15def77da6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint64.c index ba19a2b0ce..e80f2b391e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint8.c index 2d17475856..533a5d1add 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_plus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_fp32.c index cbf6857c9e..c2355872eb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_fp64.c index aae0e9294b..649c4721aa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int16.c index c4a076c5d9..25634b4c58 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int32.c index fdefa2799c..535af2c1c9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int64.c index ce0d26b49c..c99a9aa917 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int8.c index ec1dcc4271..27ce1b9275 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint16.c index 37ce7bf139..9fe1c1921b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint32.c index 35f0498eb8..c495ba4dfb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint64.c index 0df2469fae..1d8b087c4c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint8.c index 26dada8499..554800f5f6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rdiv_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_fp32.c index c1e0878597..852fcbe972 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_fp64.c index ad1f6d045d..fffd7bbda0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int16.c index 1ede9847d9..8840cf2bd3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int32.c index d7bad035d1..21a47130ff 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int64.c index 2ffa5c6f69..ef10370481 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int8.c index 033666d887..42551134ae 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint16.c index fd1f2d3600..48c9090e5b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint32.c index 120146906c..4063a27602 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint64.c index 41a86ef866..32b2a1b1d7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint8.c index 6229214020..62bb469552 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_rminus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_fp32.c index 354a0856ab..fe7104016f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_fp64.c index df40691ac6..1717a962db 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_int16.c index 42c9bd6d86..58c00baabf 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_int32.c index 5601b2ebfb..22d49955e7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_int64.c index 2a9fcc75f2..046e06af03 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_int8.c index ea63f199f3..336b64c50f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint16.c index 4dbcf0dcb0..5a79cae576 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint32.c index 3f99bda5f8..ddd9d7fb45 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint64.c index 25a54f4b48..b1bcf493a7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint8.c index 8f15faf733..d7ca9f0cd8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_second_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_secondj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_secondj1_int32.c index 9cf00bc04c..b16e3bc593 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_secondj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_secondj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_secondj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_secondj1_int64.c index 7ad199aecf..2e90299c2d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_secondj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_secondj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_secondj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_secondj_int32.c index 1db27deeab..6b0af09f9a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_secondj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_secondj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_secondj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_secondj_int64.c index d9afc793fe..d067d15b82 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_secondj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_secondj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_fp32.c index aa309e689a..425904e141 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_fp64.c index 901ad1785c..d87597c478 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_int16.c index d2007394b6..ce536c9233 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_int32.c index 5a4845efa4..aa69ae9ad0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_int64.c index 07ce5ad3e3..9a5efcb062 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_int8.c index 20dc9bb723..88117d5ca5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint16.c index 7edd684fdd..77c1f14c44 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint32.c index afbbd61a4a..af7c032c7f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint64.c index 1668516357..ee240d0ef5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint8.c index e6e0bff110..04432781c4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__min_times_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fc32.c index 834d2f44c2..6177a238d0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fc64.c index a3c2461254..ec5a6aa627 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fp32.c index 75b5a01ef1..be3a7d005b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fp64.c index 45452fac0b..87c97b3f93 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int16.c index dadc9bfcf6..e20689d73d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int32.c index 1f406aec3f..edec7e950b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int64.c index 883cc7489b..2808ce7f77 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int8.c index 267cb623e0..6c3861498a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint16.c index c542baf85a..9590b568ed 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint32.c index fd57106389..91143b8daa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint64.c index 54a6785cb8..3e7def95bd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint8.c index 1366edf242..6ba3e7350c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_div_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fc32.c index 9ef1f9304b..a74ba7f149 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fc64.c index 1ad856a918..34ffb41472 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fp32.c index 009c7a3759..39738c82e1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fp64.c index 4ea380c487..f65e1c0631 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int16.c index 47fa2f49e1..f8f6faec0f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int32.c index f62dcde411..16c730e584 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int64.c index 2af4299a6a..59452ede8d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int8.c index bc97a28448..df537ecf10 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint16.c index 0d75ef8187..1543fdb066 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint32.c index 53dbc9809e..a6678f8986 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint64.c index adf6dcd1d0..b21516a165 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint8.c index 8c4e0a914b..5f19a650fd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_first_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti1_int32.c index 8f80ad9896..b20ca7e155 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti1_int64.c index 1dc96790ec..083f002235 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti_int32.c index b3489b7836..5c6d539bc3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti_int64.c index ecfbfc66d0..dc15652dbe 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_firsti_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj1_int32.c index 0930f35288..d191b76dfa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj1_int64.c index 15315a4880..b4e71e37aa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj_int32.c index ff6310fb3b..27d70c6c11 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj_int64.c index 1968e84583..308d807178 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_firstj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_fp32.c index 7acae810da..b92f535e52 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_fp64.c index f6b95175be..7d7e409b4f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int16.c index 25da18ac90..ee26c71064 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int32.c index 200fd2984d..78d7b1870b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int64.c index 18a03b8e0c..4c372614d6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int8.c index 463f316608..7c34538bd5 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint16.c index cdc60bdf30..beb2b5364b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint32.c index d778163a3b..56721830ce 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint64.c index e590177eee..ea12ecbc22 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint8.c index be6302df40..0c38e81ee8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_land_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_fp32.c index 5f1bf92454..af39588efb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_fp64.c index 2594e278e8..72f2e8d16d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int16.c index 7ca5c9a4a2..39bfcfee0e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int32.c index eaa16c3968..9568d10982 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int64.c index ce2bb0814f..f798e46ab1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int8.c index 484da3a127..d82461f462 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint16.c index 16b3e161c5..7878dad95f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint32.c index cf3ad8cd2d..f047e40e84 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint64.c index 631f0a00b0..8fc72faae9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint8.c index 4d27cc0e1b..992182817e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_fp32.c index c324872702..cbe00e6eb8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_fp64.c index 6987c23147..8f43375c5e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int16.c index 64fcd6f429..7ec3780eb4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int32.c index 09355920c8..fceeaa9163 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int64.c index cf6978d56b..bd8ec138ab 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int8.c index 9827478a7b..04cc96e8b4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint16.c index b5a90a1feb..4df33a129d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint32.c index 16e43abea3..f0c57e60c2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint64.c index 8198786f9b..293f8f400e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint8.c index 3d4e657a91..2935d62cd8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_lxor_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_fp32.c index 16bf1a2e23..205f50710e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_fp64.c index 07bd56172c..715e04729d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int16.c index cae3999acd..b20504950a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int32.c index a4972861ab..439db11273 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int64.c index 6829e3219c..bfd1cf1e1c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int8.c index 93a889b0be..eca38579fc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint16.c index be4ce4d823..46c964a6ad 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint32.c index d6c34472a2..df7d4cb30d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint64.c index 26393e794e..3ed9b69f2f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint8.c index 16900e7d11..539375381f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_max_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_fp32.c index 75624c4240..0b176e23e7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_fp64.c index 0687ac2668..09691a7871 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int16.c index a6a1024d55..aca0a7363c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int32.c index 82f11ad929..7a035730bc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int64.c index e51f0ba2d0..722ed10046 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int8.c index c2149e98f5..dedd0311a9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint16.c index 82eeee0448..c4964810d4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint32.c index 5cd69e6cc3..5badac2e2c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint64.c index b53bd81bb0..a06684fd54 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint8.c index 21624b86a7..2a1b9e5d60 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_min_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fc32.c index 405310e25b..e5f19057ba 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fc64.c index 13dc42fc32..ffe2831655 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fp32.c index e5136db266..27b6258333 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fp64.c index 16ed72554a..881345fe71 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int16.c index e25114f359..2666e893f4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int32.c index 4f804ac50f..fa737ccef3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int64.c index adde7173a2..169107585f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int8.c index 3d6ea5ebe6..1d2b37ef27 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint16.c index 906a7266db..ccc156a3bc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint32.c index dd408ef4f3..394d8679a4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint64.c index 8db456cc28..f9a34ef9e3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint8.c index 5e1f3cbc4a..568299c4a3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_minus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fc32.c index 1b9d2e2e33..91cbef3a5c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fc64.c index 5393178230..ec9af17c9c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fp32.c index 10d52bdc7f..b9c99d313b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fp64.c index ef7cefc105..20777ac429 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int16.c index 072dc33087..d40e7f5800 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int32.c index eb35dbcac8..8167223401 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int64.c index 9c7738bff2..6281671832 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int8.c index 517596d304..3304d9307b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint16.c index ed1684cb87..2f8797cd37 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint32.c index 0a33e8e8c2..f451582783 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint64.c index 7d4f77e4a5..460045e231 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint8.c index d8c03efefd..a704a6452c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_pair_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fc32.c index 2160e45b5d..0b1d0e2ffb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fc64.c index 67936cddf8..bb0e47a3a2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fp32.c index 551c2425fe..8804a8b371 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fp64.c index de9a4d8ffc..7b3a743db1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int16.c index 3d36dca609..defc2d2a25 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int32.c index 83771fbbf0..cfbec01451 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int64.c index f7d7e685a7..38fd1c6360 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int8.c index 57165aa945..6003f5ab3a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint16.c index 9bacccfc01..9b4610c50f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint32.c index 049d460795..ea5f98c455 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint64.c index 442208cc5b..96f6b029a8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint8.c index 169d362e44..d11b42f2c8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_plus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fc32.c index f633005f9e..7b76b529e1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fc64.c index ce6f56bf18..4adb709e44 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fp32.c index 35ccd1ce40..447a065e0f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fp64.c index c2c54b6a9e..3d78216b9a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int16.c index 5c45c6b655..fb89b4b668 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int32.c index 6991b631b5..265c1d36c0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int64.c index c1c8182aa4..4cb7c07fed 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int8.c index 63facb7903..dd4c7af17a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint16.c index c177dac51c..437811e759 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint32.c index 0eca910bea..c5db9bc7f9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint64.c index cc4f8494b7..0ccac3edd3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint8.c index 4f506fd188..348c2ebbb0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rdiv_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fc32.c index 16458f4756..7ec17ac595 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fc64.c index 1500f3eb28..26d4a32cd3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fp32.c index 0b8f4b73cf..d3fc4a5039 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fp64.c index ed4dd93179..0cc792e789 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int16.c index ce63367d93..07d81c6603 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int32.c index b5fedf59dd..8e1ce0e184 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int64.c index 6c9410fdfc..a815e3e1fb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int8.c index a168140cd2..2c0c86ab72 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint16.c index a930778727..4120ed49d4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint32.c index 51d1236295..4bcd3ff13e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint64.c index 30ce33692c..a38963eb43 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint8.c index 09d88e90ff..8fd4582cd1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_rminus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fc32.c index 5e2a1c9c4c..7a38e9373f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fc64.c index cb0bc5f405..7ae0866baa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fp32.c index 62774d841f..343ed56b29 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fp64.c index b71032ee96..7693b58e39 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int16.c index 391d5c6088..4b9d063182 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int32.c index b163b64885..be70ac08a0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int64.c index 906a7533cc..2871c7cba8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int8.c index 17652371b2..d8796a32c7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint16.c index 5510e37e12..f0d554cda6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint32.c index c55daddfcc..f8bf9f8619 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint64.c index 99cd3ea9fd..3ccf2e5b08 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint8.c index 1d5ff89c60..2a282f702c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_second_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj1_int32.c index 02d272963d..ad917a5922 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj1_int64.c index 816a96c7c0..b142f4583d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj_int32.c index cc9a0c0c28..12f8eb5992 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj_int64.c index 75192dddda..302d336809 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_secondj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fc32.c index 6f3be68bb9..2b1dd1d548 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fc64.c index 1bf8bb860f..7af146cdaa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fp32.c index 48bba9822f..ab6063f134 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fp64.c index e2a125e5d4..4ee15a6d1e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int16.c index 080ee75195..23d483f141 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int32.c index 7c3995560e..ad0ce6e02b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int64.c index 9d649fcd9b..12c7f83248 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int8.c index 70d50f5a6b..1542eb9446 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint16.c index 86d184c3f0..ca35ac08a3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint32.c index 7a9d9bdf67..8f85a62531 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint64.c index 6c883532f1..7af907499e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint8.c index 78f7939b81..59503f8c0e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__plus_times_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_fc32.c index 369a5f098b..d104a1a87e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_fc64.c index 7a801338a4..da96a7e154 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_fp32.c index b0c6609fe2..87b5ab31aa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_fp64.c index b6b0546e3c..e701192638 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_int16.c index 538aa1f0c9..f3f692b547 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_int32.c index e4d6be4610..86be1aaf44 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_int64.c index de588cf8ef..1bafb35046 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_int8.c index 2678c40052..e352682c3a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint16.c index 3e986c55ab..7b0c815df8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint32.c index b0d73573ac..5f1bb184d4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint64.c index 78045b219b..87ebd1096e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint8.c index a9a736b41c..bd9a2b7bc9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_div_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_fc32.c index 34ed0cabc7..95cdff24a3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_fc64.c index ef3bb1a738..31196d7f5c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_fp32.c index 073c44abf7..ebb0967583 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_fp64.c index 57c9b9f438..b7bfe5fcca 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_int16.c index 76049e00eb..05f2d59d7b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_int32.c index 92abf148ff..48b2742e7f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_int64.c index d75d63fb74..64d0b48c6b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_int8.c index 13fa44dd2a..8a0973f342 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint16.c index da9226acba..f5504f06f2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint32.c index afa4269fd2..fa1ef4c528 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint64.c index bead215529..7a5df08c02 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint8.c index d5eee8c351..86cf5065c4 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_first_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_firsti1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_firsti1_int32.c index 4f27b84b6e..6101e3dab3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_firsti1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_firsti1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_firsti1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_firsti1_int64.c index 3eae978be3..00188a857e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_firsti1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_firsti1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_firsti_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_firsti_int32.c index 3c64c17ec7..7acb1d70c9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_firsti_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_firsti_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_firsti_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_firsti_int64.c index ed6e7a040c..d30bac3e7a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_firsti_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_firsti_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_firstj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_firstj1_int32.c index 9d53188cc5..d2d1e1960e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_firstj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_firstj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_firstj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_firstj1_int64.c index 752e50eb4e..f3b8490399 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_firstj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_firstj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_firstj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_firstj_int32.c index a6723ef2e9..9a359c68a8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_firstj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_firstj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_firstj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_firstj_int64.c index 96b39676e0..d4b69deb88 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_firstj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_firstj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_fp32.c index 146f66e25f..beb0baf123 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_fp64.c index b55dc82028..78bdd2e896 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_int16.c index afd537ab41..9ee8973db1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_int32.c index c894bfe02e..4935b2d3f9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_int64.c index 7d82c47abc..e0eae536df 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_int8.c index 9041a829b7..5447bf492c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint16.c index ae2862fa3b..56659249ef 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint32.c index bd6609ce28..0e88d8f93e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint64.c index fae5c9a051..d480bb9e32 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint8.c index 72a0644d7b..4f2135e46f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_max_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_fp32.c index 3470342b18..be2b496c7a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_fp64.c index 8c0faaeeb6..af2691d7dc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_int16.c index 3a687f2c0c..94106c95fa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_int32.c index d1b1d2df89..113bc2c4dc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_int64.c index 72afe42693..ed15b4fe39 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_int8.c index c069d44244..06fe56bbce 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint16.c index b6b5f06829..3ab9f3ec97 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint32.c index 5b31abfdb8..7ba838148e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint64.c index 557c7918bc..4019af8adb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint8.c index a11d66ff10..43ed956965 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_min_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fc32.c index aae8bd080b..4d989a10aa 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fc64.c index 53b54a45f7..ef06affcc9 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fp32.c index 69fcbb3148..d591e2d429 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fp64.c index c3f5512fe3..322a03b672 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int16.c index e1fb59d77e..bdb585aacd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int32.c index ae61c39a6e..48c9c089d0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int64.c index 17cdb53b0b..d239d78e17 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int8.c index 39088aec34..43ad2f72ae 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint16.c index c6c3e5ad96..6428206acd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint32.c index b0c4fa63ff..dc0b57d874 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint64.c index a4f3100b57..ff3f34cc1f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint8.c index 2ea3f2cbcc..d17eb294e7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_minus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fc32.c index 8cff74c605..1bd559bc23 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fc64.c index 5c4da7ed3c..baed509d4e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fp32.c index 788d84a7ba..51f0234e09 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fp64.c index 70c66c9f1e..2a3abe4725 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int16.c index 21a1f22440..a260c3ea66 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int32.c index 5d60703b3e..4fc73df59b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int64.c index 225a4ffdca..31a4a220ca 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int8.c index 4987fc9e62..08b3354673 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint16.c index 1f94c9002a..3bdd069765 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint32.c index 5f47253bb2..19548238ad 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint64.c index 6a23d53f85..371f06c4fb 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint8.c index cc99294d1f..45b09fe205 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_plus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fc32.c index 245508f155..76a8457ad1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fc64.c index c47ec19fad..f592b2c440 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fp32.c index 62a1449467..c90729e0cd 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fp64.c index 9168708efe..d57a0406bc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int16.c index e20e042f46..66437aae9a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int32.c index f1ec5df128..f28d4f53e1 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int64.c index 4decf4756d..8f1c6c285d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int8.c index 9b000c0cff..fbc679dbf2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint16.c index 13228a16e4..5182835967 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint32.c index d766597d23..888e0b3c2f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint64.c index ca36ba7a04..b819fb13a2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint8.c index 0d7e0aecdc..2e683dec0d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rdiv_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fc32.c index dc91e3403f..649efbf744 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fc64.c index d235ed5ea3..065cab474f 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fp32.c index f468c4db81..42f8ee925b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fp64.c index dec0a49ec3..cf35dbc83a 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int16.c index 102e7c8553..0d0cbf5e44 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int32.c index 755ffd2e4c..32c802b395 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int64.c index f269bdd368..33c1a4864e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int8.c index 80ebaeea74..c8717c4c44 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint16.c index 169f30081d..56b6c4e515 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint32.c index 15a885e191..1c0572fd2b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint64.c index 13d231d1c8..428be071e8 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint8.c index efde7560ca..1bc825f7c3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_rminus_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_fc32.c index 27ea06fc5b..c8c2fc211b 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_fc64.c index 136fe068f0..df228cfa0d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_fp32.c index f52fdaee8c..d2476ce718 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_fp64.c index 56486b24b2..12158b47c2 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_int16.c index 5365128e1d..dc0d614b14 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_int32.c index e7a82ddd49..42a5a04653 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_int64.c index a3ceb81fbc..d14b3bc924 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_int8.c index 5f153a4298..be81d7db54 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint16.c index 3f59808961..8d02cd1181 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint32.c index f6d5aee756..3c6b5d3697 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint64.c index e51e6ec9ed..521db4d084 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint8.c index b29b71e0a0..04cbcf83c6 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_second_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_secondj1_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_secondj1_int32.c index 0e4500a89d..06613d0160 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_secondj1_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_secondj1_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_secondj1_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_secondj1_int64.c index 5c94a05a4c..c8b05ac86c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_secondj1_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_secondj1_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_secondj_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_secondj_int32.c index 7f636c58fb..bc775de85e 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_secondj_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_secondj_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_secondj_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_secondj_int64.c index 4fe50e792d..34b8ac4a81 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_secondj_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_secondj_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_fc32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_fc32.c index 745ab87614..e77ab82ef3 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_fc32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_fc64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_fc64.c index 202f43d67a..fd41c52420 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_fc64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_fp32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_fp32.c index 2a8709c23f..30606d0b89 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_fp32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_fp64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_fp64.c index 2001746908..7fcf2f39b0 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_fp64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_int16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_int16.c index a9f75d3ad7..dadbcc1b4c 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_int16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_int16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_int32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_int32.c index 2b348f6996..8ede43e019 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_int32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_int32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_int64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_int64.c index 8b10ad980a..0b2df04664 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_int64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_int64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_int8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_int8.c index 9b418de8e6..362d6ef488 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_int8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_int8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint16.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint16.c index 71380865a6..7357f97b99 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint16.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint32.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint32.c index 045b4e19f2..16460369f7 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint32.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint64.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint64.c index 837ded80b7..45287d454d 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint64.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint8.c b/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint8.c index a4eea7ea8f..6c052765bc 100644 --- a/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_AxB__times_times_uint8.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__atan2_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__atan2_fp32.c index 1b3216f09f..a03af2a381 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__atan2_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__atan2_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__atan2_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__atan2_fp64.c index 100cb5140b..8ee78e68ca 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__atan2_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__atan2_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__band_int16.c b/GraphBLAS/Source/Generated2/GB_binop__band_int16.c index dabbb65f16..cf0366d76d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__band_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__band_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__band_int32.c b/GraphBLAS/Source/Generated2/GB_binop__band_int32.c index 10bb01a904..f64e139da1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__band_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__band_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__band_int64.c b/GraphBLAS/Source/Generated2/GB_binop__band_int64.c index 0d721d283c..9e86982081 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__band_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__band_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__band_int8.c b/GraphBLAS/Source/Generated2/GB_binop__band_int8.c index 9bfdd9e6af..1164ed9fdf 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__band_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__band_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__band_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__band_uint16.c index ee46460541..fb535ec041 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__band_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__band_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__band_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__band_uint32.c index b63e0751d2..f665cd897e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__band_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__band_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__band_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__band_uint64.c index 2dae08e7e7..3403118812 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__band_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__band_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__band_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__band_uint8.c index 4ad2d6db16..d32259b38c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__band_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__band_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bclr_int16.c b/GraphBLAS/Source/Generated2/GB_binop__bclr_int16.c index 11c603f53c..60cd04dca0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bclr_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bclr_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bclr_int32.c b/GraphBLAS/Source/Generated2/GB_binop__bclr_int32.c index 3872edd6c6..333155f1a1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bclr_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bclr_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bclr_int64.c b/GraphBLAS/Source/Generated2/GB_binop__bclr_int64.c index 27a63f791b..1ec79fa7d2 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bclr_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bclr_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bclr_int8.c b/GraphBLAS/Source/Generated2/GB_binop__bclr_int8.c index a53544f24d..6a4fcb5b90 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bclr_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bclr_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bclr_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__bclr_uint16.c index 52d50e2c60..abbc162f39 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bclr_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bclr_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bclr_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__bclr_uint32.c index 81320100b7..60d8283093 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bclr_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bclr_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bclr_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__bclr_uint64.c index 9e7a578bfa..840eb5b6eb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bclr_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bclr_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bclr_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__bclr_uint8.c index 11d71bc317..e93aaffa6b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bclr_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bclr_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bget_int16.c b/GraphBLAS/Source/Generated2/GB_binop__bget_int16.c index 80e80c6bdb..9c71936819 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bget_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bget_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bget_int32.c b/GraphBLAS/Source/Generated2/GB_binop__bget_int32.c index 4de3a5110f..91e9fb2acb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bget_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bget_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bget_int64.c b/GraphBLAS/Source/Generated2/GB_binop__bget_int64.c index 554d5ae3ad..70e3d8ccdf 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bget_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bget_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bget_int8.c b/GraphBLAS/Source/Generated2/GB_binop__bget_int8.c index 08e237340c..eb09fcea37 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bget_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bget_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bget_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__bget_uint16.c index 0e9d3b2738..16e9832059 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bget_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bget_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bget_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__bget_uint32.c index 4808b28fa0..97b0508186 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bget_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bget_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bget_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__bget_uint64.c index d5cd979d2c..a950537966 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bget_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bget_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bget_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__bget_uint8.c index 38f439553f..4744d687a4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bget_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bget_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bor_int16.c b/GraphBLAS/Source/Generated2/GB_binop__bor_int16.c index 30beadf532..ec35801af7 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bor_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bor_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bor_int32.c b/GraphBLAS/Source/Generated2/GB_binop__bor_int32.c index dba33cc9ef..65590efee8 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bor_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bor_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bor_int64.c b/GraphBLAS/Source/Generated2/GB_binop__bor_int64.c index 7f529e5a0e..0221c287b0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bor_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bor_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bor_int8.c b/GraphBLAS/Source/Generated2/GB_binop__bor_int8.c index d75186b016..a0ec642ddb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bor_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bor_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bor_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__bor_uint16.c index d22cf90321..e074cfea4e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bor_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bor_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__bor_uint32.c index 4715baa118..f7608b3dd8 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bor_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bor_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__bor_uint64.c index e1e497673a..ef357e4e86 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bor_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bor_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__bor_uint8.c index 388f696c5e..c101948187 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bor_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bset_int16.c b/GraphBLAS/Source/Generated2/GB_binop__bset_int16.c index e6a05f8e41..9b7c12891a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bset_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bset_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bset_int32.c b/GraphBLAS/Source/Generated2/GB_binop__bset_int32.c index 6643550bf5..205621c8e3 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bset_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bset_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bset_int64.c b/GraphBLAS/Source/Generated2/GB_binop__bset_int64.c index 5a4f32dcbd..d940fa3c94 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bset_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bset_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bset_int8.c b/GraphBLAS/Source/Generated2/GB_binop__bset_int8.c index 849d01b636..6636b7e1bb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bset_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bset_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bset_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__bset_uint16.c index 9ab4a05175..14653ad641 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bset_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bset_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bset_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__bset_uint32.c index d2d2117209..f088d758fe 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bset_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bset_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bset_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__bset_uint64.c index ecd768a108..eeef53685f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bset_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bset_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bset_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__bset_uint8.c index ad0d1da496..568b62eaab 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bset_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bset_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bshift_int16.c b/GraphBLAS/Source/Generated2/GB_binop__bshift_int16.c index 20660e86a4..b55e85e2c1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bshift_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bshift_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bshift_int32.c b/GraphBLAS/Source/Generated2/GB_binop__bshift_int32.c index c450200ba2..e21e95f9d6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bshift_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bshift_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bshift_int64.c b/GraphBLAS/Source/Generated2/GB_binop__bshift_int64.c index 1e1564b34e..8902676f95 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bshift_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bshift_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bshift_int8.c b/GraphBLAS/Source/Generated2/GB_binop__bshift_int8.c index 4e5396cd4d..63b839cfec 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bshift_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bshift_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bshift_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__bshift_uint16.c index 9d0c623532..73bcf04f02 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bshift_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bshift_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bshift_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__bshift_uint32.c index 3ff99a5b1f..325c91df0e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bshift_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bshift_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bshift_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__bshift_uint64.c index 91729cbb9e..de164da942 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bshift_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bshift_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bshift_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__bshift_uint8.c index 938c727f49..1d4bf6eabb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bshift_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bshift_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxnor_int16.c b/GraphBLAS/Source/Generated2/GB_binop__bxnor_int16.c index 5c4d4d4a1f..6969b9aaf9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxnor_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxnor_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxnor_int32.c b/GraphBLAS/Source/Generated2/GB_binop__bxnor_int32.c index 4e185fb96e..084df4c59d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxnor_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxnor_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxnor_int64.c b/GraphBLAS/Source/Generated2/GB_binop__bxnor_int64.c index bf24011ff9..1142d7f2bf 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxnor_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxnor_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxnor_int8.c b/GraphBLAS/Source/Generated2/GB_binop__bxnor_int8.c index 40f3bc1b4c..acc4502392 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxnor_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxnor_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint16.c index 87b466a57a..0bf602c90c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint32.c index cb553ee338..569531ea7e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint64.c index 8a499dce50..90fa8ed501 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint8.c index e56aadb244..a7f0aa4008 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxnor_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxor_int16.c b/GraphBLAS/Source/Generated2/GB_binop__bxor_int16.c index 3cca69ec31..ab0aec0c56 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxor_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxor_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxor_int32.c b/GraphBLAS/Source/Generated2/GB_binop__bxor_int32.c index 1234897afd..772a4b94aa 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxor_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxor_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxor_int64.c b/GraphBLAS/Source/Generated2/GB_binop__bxor_int64.c index ef6eaa3167..5d5ee4d186 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxor_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxor_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxor_int8.c b/GraphBLAS/Source/Generated2/GB_binop__bxor_int8.c index 919e3ce02b..69274a1ae1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxor_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxor_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxor_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__bxor_uint16.c index cecd1c1eed..33a2050393 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxor_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxor_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__bxor_uint32.c index 166cb577e7..9b6adc3bf2 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxor_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxor_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__bxor_uint64.c index 9b884aef8a..a51f83d729 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxor_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__bxor_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__bxor_uint8.c index 6e52a02ad1..b18066542a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__bxor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__bxor_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__cmplx_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__cmplx_fp32.c index 3bb8e5986d..d52ba537eb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__cmplx_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__cmplx_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__cmplx_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__cmplx_fp64.c index 05055a053c..ee55f89ea8 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__cmplx_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__cmplx_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__copysign_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__copysign_fp32.c index c0e2e79472..ac017e5a4e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__copysign_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__copysign_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__copysign_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__copysign_fp64.c index a2c3a01971..b8cbf6f910 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__copysign_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__copysign_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__div_fc32.c index b691701afc..8bc00e9215 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__div_fc64.c index 28d0d1c815..5228d5912b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__div_fp32.c index dc414ba736..3d9fcccd99 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__div_fp64.c index 0575af3ed2..0769e12a8a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_int16.c b/GraphBLAS/Source/Generated2/GB_binop__div_int16.c index 4fcccf0efc..dbc2b8f880 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_int32.c b/GraphBLAS/Source/Generated2/GB_binop__div_int32.c index fe4b137114..37994d02b3 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_int64.c b/GraphBLAS/Source/Generated2/GB_binop__div_int64.c index 09ce069133..03a978c92d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_int8.c b/GraphBLAS/Source/Generated2/GB_binop__div_int8.c index 77ea05597f..f3e4557b4b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__div_uint16.c index aab4de5305..740e51ad12 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__div_uint32.c index d269c6a7c9..d7a4d58d68 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__div_uint64.c index 95182da081..c4a0ade401 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__div_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__div_uint8.c index 23ac071a74..338741ee9f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__div_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__div_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_bool.c b/GraphBLAS/Source/Generated2/GB_binop__eq_bool.c index 8a333634a6..598c419aa5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__eq_fc32.c index 9485a8396f..d67823ebf9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__eq_fc64.c index 248465aaf5..bd052cd16b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__eq_fp32.c index 46e8b83119..c33f87c188 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__eq_fp64.c index d98e1ddd0c..9bc7bbd768 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_int16.c b/GraphBLAS/Source/Generated2/GB_binop__eq_int16.c index 1b35166e03..a1d7ee1fe6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_int32.c b/GraphBLAS/Source/Generated2/GB_binop__eq_int32.c index 31e81e0779..ec0c80e2b4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_int64.c b/GraphBLAS/Source/Generated2/GB_binop__eq_int64.c index d2296dda29..dea042a81c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_int8.c b/GraphBLAS/Source/Generated2/GB_binop__eq_int8.c index 655c5e5d34..37314e49f2 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__eq_uint16.c index d69120b1e1..5d7ada53ca 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__eq_uint32.c index f81d53c9d7..cdaef22589 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__eq_uint64.c index 893dd87ed4..dfeb7caac6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__eq_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__eq_uint8.c index 56e1841136..6980c5cc09 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__eq_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__eq_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_bool.c b/GraphBLAS/Source/Generated2/GB_binop__first_bool.c index 574f5d726a..1e3fce7765 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__first_fc32.c index caaf630f88..909b3e5571 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__first_fc64.c index 929d1cef1b..137b06ce42 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__first_fp32.c index e7fe7cfffc..4702516671 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__first_fp64.c index 7af0791d53..82a18107bf 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_int16.c b/GraphBLAS/Source/Generated2/GB_binop__first_int16.c index 88f98882e4..464f25ebb1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_int32.c b/GraphBLAS/Source/Generated2/GB_binop__first_int32.c index 7c8a78ac1c..f8734bc72e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_int64.c b/GraphBLAS/Source/Generated2/GB_binop__first_int64.c index 0fb162136d..e90c7137ba 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_int8.c b/GraphBLAS/Source/Generated2/GB_binop__first_int8.c index 47d6ac17ec..0759c47689 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__first_uint16.c index 2794725cb3..f265dfeee7 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__first_uint32.c index 0d0cada374..f1711efd5a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__first_uint64.c index 9186accbc6..ff01a9e826 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__first_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__first_uint8.c index 5c562ad0dd..07513a9eeb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__first_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__first_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__fmod_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__fmod_fp32.c index efae47af27..b33e48225b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__fmod_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__fmod_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__fmod_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__fmod_fp64.c index 0ce42feb13..fcb7f70cfc 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__fmod_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__fmod_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_bool.c b/GraphBLAS/Source/Generated2/GB_binop__ge_bool.c index d1950bb074..43dfd7e612 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__ge_fp32.c index 1fac4bc98c..4514ec9829 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__ge_fp64.c index 319e22c391..46d755f0b3 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_int16.c b/GraphBLAS/Source/Generated2/GB_binop__ge_int16.c index db2daca34f..7177281672 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_int32.c b/GraphBLAS/Source/Generated2/GB_binop__ge_int32.c index 81f31e6d44..07781ed88a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_int64.c b/GraphBLAS/Source/Generated2/GB_binop__ge_int64.c index d303069a28..faee93c424 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_int8.c b/GraphBLAS/Source/Generated2/GB_binop__ge_int8.c index 03661cca74..56a72d313b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__ge_uint16.c index 51fbe149fb..f49808d45d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__ge_uint32.c index 3d5ddab37e..7713a46f74 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__ge_uint64.c index fc3daeb819..62cf3911e0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ge_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__ge_uint8.c index 1c1691c04c..764beecf37 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ge_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ge_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_bool.c b/GraphBLAS/Source/Generated2/GB_binop__gt_bool.c index bfba64432e..94f7be93e5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__gt_fp32.c index 406898a903..4ec62d2380 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__gt_fp64.c index 79c016cffb..7684d88ee4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_int16.c b/GraphBLAS/Source/Generated2/GB_binop__gt_int16.c index ef00b51ee9..d34780b57f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_int32.c b/GraphBLAS/Source/Generated2/GB_binop__gt_int32.c index 8bca1ede0e..2bd44273cd 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_int64.c b/GraphBLAS/Source/Generated2/GB_binop__gt_int64.c index d50965be4f..a33fa46314 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_int8.c b/GraphBLAS/Source/Generated2/GB_binop__gt_int8.c index a8f69fa696..fb9eba537f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__gt_uint16.c index 79ef2503dd..a0e604814d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__gt_uint32.c index c90ddf9ad7..143607e561 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__gt_uint64.c index 161474871e..a735730c2c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__gt_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__gt_uint8.c index 815a4d1bba..2369ba16ec 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__gt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__gt_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__hypot_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__hypot_fp32.c index fcc4ff9a12..3a9b5a2639 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__hypot_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__hypot_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__hypot_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__hypot_fp64.c index def9c1f191..953e4983ae 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__hypot_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__hypot_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_fc32.c index 40c32cefad..7a6af1cb74 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_fc64.c index a3d1573cb0..31bf16156f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_fp32.c index e2d987f974..7b38ff21a5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_fp64.c index 271b7cf188..f0ea11af3c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_int16.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_int16.c index 9f4f6bdcc7..a97ffd5d1c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_int32.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_int32.c index ab7a5d702f..8e927fd08c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_int64.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_int64.c index 52a713fb0e..cdc848ed5f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_int8.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_int8.c index 1812272180..7b3b6db97e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_uint16.c index 3665de6851..5bf00e9b4d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_uint32.c index f26ce48622..cee4ee7d51 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_uint64.c index f946800889..7381e7038f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__iseq_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__iseq_uint8.c index 472c604f48..7b9a9e93d4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__iseq_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__iseq_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__isge_fp32.c index 178f25eb6e..5a88144ea5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__isge_fp64.c index dfd225bdc4..d594a7e033 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_int16.c b/GraphBLAS/Source/Generated2/GB_binop__isge_int16.c index ef1b928c5a..1c9f840eb2 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_int32.c b/GraphBLAS/Source/Generated2/GB_binop__isge_int32.c index 9545d76fa2..79b89ff9b0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_int64.c b/GraphBLAS/Source/Generated2/GB_binop__isge_int64.c index 7d1745516b..bffb149e45 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_int8.c b/GraphBLAS/Source/Generated2/GB_binop__isge_int8.c index 37e7d5985e..ba359537b2 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__isge_uint16.c index 62bc81744f..adde5653b5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__isge_uint32.c index 6ffc7ae233..9d286b5d75 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__isge_uint64.c index 4ce899aee9..52ac7d68a4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isge_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__isge_uint8.c index 5fbe3ce8cd..7470e61be4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isge_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isge_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_fp32.c index 95efead91b..595a9c4685 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_fp64.c index ef1bba5cb5..c023e0cfba 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_int16.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_int16.c index 41d252d280..31567b0d30 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_int32.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_int32.c index 7d4493a001..d0b19b97a0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_int64.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_int64.c index 11c77af7cc..2c58c103ac 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_int8.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_int8.c index 6fb739ba10..613f895768 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_uint16.c index 99625cd42a..a33190dfb1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_uint32.c index a688602db7..81ee815ee1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_uint64.c index c8158978ac..2005f15581 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isgt_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__isgt_uint8.c index 2db1f27057..dc2cb041da 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isgt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isgt_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__isle_fp32.c index 95a4eae836..1fbcf72e1a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__isle_fp64.c index 0e0976fbfe..60db45757d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_int16.c b/GraphBLAS/Source/Generated2/GB_binop__isle_int16.c index 65f5565d33..8cf7a8bdbf 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_int32.c b/GraphBLAS/Source/Generated2/GB_binop__isle_int32.c index d5baaa63dd..e4d4ca64a8 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_int64.c b/GraphBLAS/Source/Generated2/GB_binop__isle_int64.c index ea988c7ddb..40bcc30f77 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_int8.c b/GraphBLAS/Source/Generated2/GB_binop__isle_int8.c index 803f7deebd..1a440d7ad3 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__isle_uint16.c index 42c55bde71..4b15f0fca6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__isle_uint32.c index b80638bde9..88549f0ac1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__isle_uint64.c index 0907b3d032..87090d0d64 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isle_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__isle_uint8.c index 7a9670f9a0..081e172033 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isle_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isle_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__islt_fp32.c index d0c902cf26..27cfe94d70 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__islt_fp64.c index e334f85c81..57537b5732 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_int16.c b/GraphBLAS/Source/Generated2/GB_binop__islt_int16.c index 938a5a81e4..d227c22143 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_int32.c b/GraphBLAS/Source/Generated2/GB_binop__islt_int32.c index 752eabbe19..b0e4c32749 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_int64.c b/GraphBLAS/Source/Generated2/GB_binop__islt_int64.c index 30308f9265..ac34406a1a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_int8.c b/GraphBLAS/Source/Generated2/GB_binop__islt_int8.c index b7f6adef9f..a6b19711d6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__islt_uint16.c index b37e038307..ed3af58625 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__islt_uint32.c index 9fcbb3e218..1b02155523 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__islt_uint64.c index 65a53ad196..f3a6437265 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__islt_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__islt_uint8.c index 396c312450..790dc45ee9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__islt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__islt_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__isne_fc32.c index 63b0dc3b3e..f285ba956b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__isne_fc64.c index 900e7dcd00..8a112d3f41 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__isne_fp32.c index 59f43f9af9..95829cc802 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__isne_fp64.c index 25ecdefb82..4801206884 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_int16.c b/GraphBLAS/Source/Generated2/GB_binop__isne_int16.c index 4dde738b70..6641cac4a5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_int32.c b/GraphBLAS/Source/Generated2/GB_binop__isne_int32.c index d6090fd24f..d594b79c0b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_int64.c b/GraphBLAS/Source/Generated2/GB_binop__isne_int64.c index 1a428ee4ef..8978b839f9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_int8.c b/GraphBLAS/Source/Generated2/GB_binop__isne_int8.c index d48a4e870b..90ca8ff7b0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__isne_uint16.c index 5a61d4b860..683f3a5f11 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__isne_uint32.c index 8b0aca38a4..56f0360286 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__isne_uint64.c index 059c2b9244..2c4c61c9d0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__isne_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__isne_uint8.c index 8d303440d2..d102202efe 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__isne_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__isne_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_bool.c b/GraphBLAS/Source/Generated2/GB_binop__land_bool.c index 95a107fb9c..0aec0935b0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__land_fp32.c index 27d8360ced..75ca3971e5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__land_fp64.c index 9378cec886..af86899671 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_int16.c b/GraphBLAS/Source/Generated2/GB_binop__land_int16.c index 2d413b139a..544e1f1edd 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_int32.c b/GraphBLAS/Source/Generated2/GB_binop__land_int32.c index b1af047b6d..0872a7a6f9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_int64.c b/GraphBLAS/Source/Generated2/GB_binop__land_int64.c index f3d15fbd3c..81ecd4a2f9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_int8.c b/GraphBLAS/Source/Generated2/GB_binop__land_int8.c index 5aa622d0b2..11cb7e201f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__land_uint16.c index e06590a6f1..08883d8f6c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__land_uint32.c index a77ccfbaba..e532b27763 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__land_uint64.c index 73a73b5acc..2bfe7dcc77 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__land_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__land_uint8.c index a8f9679bb2..0493f04e00 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__land_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__land_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ldexp_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__ldexp_fp32.c index 5047e1c24d..ff428a8f30 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ldexp_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ldexp_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ldexp_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__ldexp_fp64.c index bedcf4d283..b3750f9649 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ldexp_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ldexp_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_bool.c b/GraphBLAS/Source/Generated2/GB_binop__le_bool.c index 41e948a1ad..a51c2d3793 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__le_fp32.c index a77dd84d3a..127278f199 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__le_fp64.c index 5168f48682..305d885f84 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_int16.c b/GraphBLAS/Source/Generated2/GB_binop__le_int16.c index 524e9bc8aa..ef26b9f1e3 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_int32.c b/GraphBLAS/Source/Generated2/GB_binop__le_int32.c index 0101cf23e5..85f4652fe4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_int64.c b/GraphBLAS/Source/Generated2/GB_binop__le_int64.c index 8eb415f801..d9682ae0c2 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_int8.c b/GraphBLAS/Source/Generated2/GB_binop__le_int8.c index fc3c4add7e..a7d6f030f8 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__le_uint16.c index 63dce52abb..c349af68ee 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__le_uint32.c index fcc3f5d07e..3d32ec17ec 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__le_uint64.c index 4750f58cc1..8a66808aa5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__le_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__le_uint8.c index e64ed01826..b4d92ac15e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__le_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__le_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_bool.c b/GraphBLAS/Source/Generated2/GB_binop__lor_bool.c index 5bbc5416d8..7c1b1c6e91 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__lor_fp32.c index 6910cac626..caf05e5f0b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__lor_fp64.c index 33b4463773..e7cb715867 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_int16.c b/GraphBLAS/Source/Generated2/GB_binop__lor_int16.c index bf796bf847..b56df27a8a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_int32.c b/GraphBLAS/Source/Generated2/GB_binop__lor_int32.c index 06d8ec489e..59a6aa28e2 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_int64.c b/GraphBLAS/Source/Generated2/GB_binop__lor_int64.c index 97a8dbc8cb..8a945c755a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_int8.c b/GraphBLAS/Source/Generated2/GB_binop__lor_int8.c index f017e7b64f..1765b9cbea 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__lor_uint16.c index 4be528f61e..17107d4085 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__lor_uint32.c index 69f8888c73..467e3e645e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__lor_uint64.c index eec824d03f..c8d18d9a18 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lor_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__lor_uint8.c index b564062847..7b96b8e0b6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lor_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_bool.c b/GraphBLAS/Source/Generated2/GB_binop__lt_bool.c index 1be1db8b16..24fc3a0412 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__lt_fp32.c index c2f567834a..ec9e66bf11 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__lt_fp64.c index fa792a0fe9..c33c9e8f27 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_int16.c b/GraphBLAS/Source/Generated2/GB_binop__lt_int16.c index 2f57f2bd96..a671586dbb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_int32.c b/GraphBLAS/Source/Generated2/GB_binop__lt_int32.c index c94f040ae3..65294afef5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_int64.c b/GraphBLAS/Source/Generated2/GB_binop__lt_int64.c index 8f2f896566..8ba4c89708 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_int8.c b/GraphBLAS/Source/Generated2/GB_binop__lt_int8.c index fe6e43242f..0a0a421c54 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__lt_uint16.c index 2e44c94fef..6b5b4e3df2 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__lt_uint32.c index d9c1188872..819fda84b0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__lt_uint64.c index 22b5e9f95b..e6d0eb471a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lt_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__lt_uint8.c index 6a56376c28..2cceeafe1b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lt_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lt_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_bool.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_bool.c index 5b5cd4ee80..178f0703f8 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_fp32.c index 2d33653aca..672ffaedcb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_fp64.c index 32fe531605..3101a1085c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_int16.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_int16.c index 5a1136386e..a030feb67c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_int32.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_int32.c index 49ae75352c..d7ea5758cc 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_int64.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_int64.c index c53e7aeaa3..ebd0eb0e46 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_int8.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_int8.c index 4d97f4e41d..4ca864261c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_uint16.c index 7ea099eaa3..08cb10ba47 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_uint32.c index b225343c3a..3ddce23db9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_uint64.c index a65269912a..d9e0e6ccf5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__lxor_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__lxor_uint8.c index f59f9d705a..b1d2e7706b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__lxor_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__lxor_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__max_fp32.c index 7da8e2a41c..e223654395 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__max_fp64.c index 6d95db6099..9116fd7309 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_int16.c b/GraphBLAS/Source/Generated2/GB_binop__max_int16.c index 32edc1fbcc..fe01111ab6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_int32.c b/GraphBLAS/Source/Generated2/GB_binop__max_int32.c index 2a60d77984..a5e4f13d42 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_int64.c b/GraphBLAS/Source/Generated2/GB_binop__max_int64.c index c7c9caa84d..f668c46c14 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_int8.c b/GraphBLAS/Source/Generated2/GB_binop__max_int8.c index 1432f38e0c..b59364856f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__max_uint16.c index e605147f51..27b6a71b80 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__max_uint32.c index 267266bef0..604fac6039 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__max_uint64.c index 7243130e3e..1ca6af24f0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__max_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__max_uint8.c index 2d2359f4d5..10ee98057a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__max_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__max_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__min_fp32.c index 68efd52467..cd678c22b4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__min_fp64.c index 00896f5bff..409a24eeb6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_int16.c b/GraphBLAS/Source/Generated2/GB_binop__min_int16.c index 7021469e0c..a852d41b1f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_int32.c b/GraphBLAS/Source/Generated2/GB_binop__min_int32.c index 70f3ccdea5..ea7613c4bb 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_int64.c b/GraphBLAS/Source/Generated2/GB_binop__min_int64.c index cb99db53b8..d72c02a873 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_int8.c b/GraphBLAS/Source/Generated2/GB_binop__min_int8.c index 95efddbf25..1fc9ad5832 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__min_uint16.c index 2baab4fb6e..646b140b9d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__min_uint32.c index 0565661f20..87657a97f9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__min_uint64.c index b929162235..f483f707a4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__min_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__min_uint8.c index 910ba146f3..7e3aed891c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__min_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__min_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__minus_fc32.c index f593202436..f714a099b9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__minus_fc64.c index 1561132b75..766db1d857 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__minus_fp32.c index b54923abcb..b62f691776 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__minus_fp64.c index b26e07c2a3..a0ce825732 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_int16.c b/GraphBLAS/Source/Generated2/GB_binop__minus_int16.c index 4dc63384c7..d91193b44b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_int32.c b/GraphBLAS/Source/Generated2/GB_binop__minus_int32.c index 5ca803e567..70e5f08842 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_int64.c b/GraphBLAS/Source/Generated2/GB_binop__minus_int64.c index 66f01430d6..38771f2d5f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_int8.c b/GraphBLAS/Source/Generated2/GB_binop__minus_int8.c index a5de82d653..a0ac1fe702 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__minus_uint16.c index 88632caeec..0138d0f342 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__minus_uint32.c index 55d13e36b6..bcb831d597 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__minus_uint64.c index 096a9d7a94..24426e126c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__minus_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__minus_uint8.c index 03e64622ae..522c22e22b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__minus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__minus_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__ne_fc32.c index cc5375f9f4..491913b7be 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__ne_fc64.c index 2af1b5a300..0426dfdfcd 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__ne_fp32.c index f31ac2d3e2..5a866de960 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__ne_fp64.c index f354e1dc0f..fbdf369fc6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_int16.c b/GraphBLAS/Source/Generated2/GB_binop__ne_int16.c index 2e7d8ed7dd..aa84429e82 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_int32.c b/GraphBLAS/Source/Generated2/GB_binop__ne_int32.c index 5831ec2f67..aed3999d40 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_int64.c b/GraphBLAS/Source/Generated2/GB_binop__ne_int64.c index 61982f9247..b44b794dab 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_int8.c b/GraphBLAS/Source/Generated2/GB_binop__ne_int8.c index 8eacd5680c..347d5dad0c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__ne_uint16.c index 4dbad96dc7..3bc22d99d7 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__ne_uint32.c index 81c6c6322b..cd10c8424c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__ne_uint64.c index 81610090ff..a11e96ea8c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__ne_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__ne_uint8.c index 00e73e0978..40545f59d4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__ne_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__ne_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_bool.c b/GraphBLAS/Source/Generated2/GB_binop__pair_bool.c index c395b0b6ee..c2ce5096d6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__pair_fc32.c index 2eef998c9a..06b9735a53 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__pair_fc64.c index 640e6702a4..37a78ec15b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__pair_fp32.c index 2eddbeffc8..222cf3fa0d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__pair_fp64.c index 93f0fc93f9..4655322a02 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_int16.c b/GraphBLAS/Source/Generated2/GB_binop__pair_int16.c index 43e96d5fc8..9c9996bf31 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_int32.c b/GraphBLAS/Source/Generated2/GB_binop__pair_int32.c index 6f97d5611a..b7bae7c25a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_int64.c b/GraphBLAS/Source/Generated2/GB_binop__pair_int64.c index a53a3abdf0..d2cb6add29 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_int8.c b/GraphBLAS/Source/Generated2/GB_binop__pair_int8.c index 7293f7b733..7f3612247e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__pair_uint16.c index e25dc69b13..ef1fc213db 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__pair_uint32.c index 3123cb0fcf..c74b9631d4 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__pair_uint64.c index ae56292a96..f5aef76dcc 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pair_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__pair_uint8.c index 0399793ae8..eaeb24ac88 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pair_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pair_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__plus_fc32.c index e5be64b1a0..837108c348 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__plus_fc64.c index b79a425ad1..ebec3c0df6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__plus_fp32.c index 0558b61548..d356411bf8 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__plus_fp64.c index b47dc69fbd..e1ab1d58be 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_int16.c b/GraphBLAS/Source/Generated2/GB_binop__plus_int16.c index 8bec595cbc..2e9d5532cd 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_int32.c b/GraphBLAS/Source/Generated2/GB_binop__plus_int32.c index 5fbeece4b8..2263c133ee 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_int64.c b/GraphBLAS/Source/Generated2/GB_binop__plus_int64.c index 7d1b5a27fb..6202f6567a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_int8.c b/GraphBLAS/Source/Generated2/GB_binop__plus_int8.c index e62c714efe..5a3eeca43a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__plus_uint16.c index a16ee950bf..f1472195dd 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__plus_uint32.c index 30cd2d2d50..d436fe6c73 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__plus_uint64.c index c00ea3a966..76395f85a5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__plus_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__plus_uint8.c index 143a743183..0dd4b5a4e7 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__plus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__plus_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__pow_fc32.c index cad3668905..e37a1d00e3 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__pow_fc64.c index 2c290d65a8..569aca7477 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__pow_fp32.c index 89aceafb04..1e6cd31668 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__pow_fp64.c index 94f131551c..e1708deed6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_int16.c b/GraphBLAS/Source/Generated2/GB_binop__pow_int16.c index 136c3b03e3..e7ac8c7074 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_int32.c b/GraphBLAS/Source/Generated2/GB_binop__pow_int32.c index 107125be08..63e5b9a089 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_int64.c b/GraphBLAS/Source/Generated2/GB_binop__pow_int64.c index eb43ef3fc2..d15eaf3d90 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_int8.c b/GraphBLAS/Source/Generated2/GB_binop__pow_int8.c index e2f5986e15..63f9951fe2 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__pow_uint16.c index 9fdc72c230..f5bc73925e 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__pow_uint32.c index 2cbfcbc768..f164a65e86 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__pow_uint64.c index ebc654b318..e504a2b506 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__pow_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__pow_uint8.c index 9225bc1927..1f550a68de 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__pow_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__pow_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_fc32.c index c914fc0839..e4e0cc1c7b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_fc64.c index 7a7e5e1da5..eaa0c2b170 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_fp32.c index 4be4c4d1ff..8744087045 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_fp64.c index b5589289de..d76ccb276d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_int16.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_int16.c index 6c2fd01f5e..961ad9318f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_int32.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_int32.c index a514357f14..97e04778a5 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_int64.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_int64.c index a1bb7ce08a..8df4f749bd 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_int8.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_int8.c index f98ccd5169..49f68c9f0f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint16.c index 0dc0197587..dc93d1d3f0 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint32.c index 6a60e1d0b1..0328d48c20 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint64.c index d66978c6ef..b573613d08 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint8.c index 95131ca5e9..7800672097 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rdiv_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__remainder_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__remainder_fp32.c index 8cf9d4fd00..f35533a943 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__remainder_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__remainder_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__remainder_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__remainder_fp64.c index 62040c2769..4d49a27f7b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__remainder_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__remainder_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_fc32.c index f8690a2251..14ebc6687b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_fc64.c index 912d673bd9..236a7abfcc 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_fp32.c index e21bcc3364..e1780dc45b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_fp64.c index 77b37ee6ff..3a678fdf86 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_int16.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_int16.c index aa3741b5c2..b3f399d2c7 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_int32.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_int32.c index 142b16451a..f6530c9263 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_int64.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_int64.c index bbb730835d..faf23cc542 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_int8.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_int8.c index cdf2427fa4..7534358833 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_uint16.c index 68cdb0b86a..312d7fe0c1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_uint32.c index 636a1efe53..a3694303f1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_uint64.c index 1a5392f4eb..268ec9a9d9 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__rminus_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__rminus_uint8.c index 0588478efa..484fe0619f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__rminus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__rminus_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_bool.c b/GraphBLAS/Source/Generated2/GB_binop__second_bool.c index 3e5f97a71b..0986f221e3 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_bool.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_bool.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__second_fc32.c index 3998e043b9..3da53b133a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__second_fc64.c index 7d0aa147e1..812dc181c6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__second_fp32.c index e9a488503b..f28542f3f1 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__second_fp64.c index 5f4ded122d..6905f45c60 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_int16.c b/GraphBLAS/Source/Generated2/GB_binop__second_int16.c index 3bcd0cce97..1aa833476f 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_int32.c b/GraphBLAS/Source/Generated2/GB_binop__second_int32.c index 6ffca93877..2af27d6bd8 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_int64.c b/GraphBLAS/Source/Generated2/GB_binop__second_int64.c index f482e8a46c..e555fcdac7 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_int8.c b/GraphBLAS/Source/Generated2/GB_binop__second_int8.c index 3e21ae9e78..91e42f979b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__second_uint16.c index 0228423ac8..7d2fbcc31c 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__second_uint32.c index 4fc7f2ce5e..924ca5c105 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__second_uint64.c index 7b78055264..1d6a3e5b01 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__second_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__second_uint8.c index dfc776d934..5c077aacac 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__second_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__second_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_fc32.c b/GraphBLAS/Source/Generated2/GB_binop__times_fc32.c index 3efd84e043..ae6e3143ae 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_fc32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_fc64.c b/GraphBLAS/Source/Generated2/GB_binop__times_fc64.c index c44c90f861..6475baf79b 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_fc64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_fp32.c b/GraphBLAS/Source/Generated2/GB_binop__times_fp32.c index 764e6f010b..166ff62bd6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_fp32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_fp64.c b/GraphBLAS/Source/Generated2/GB_binop__times_fp64.c index 1d6734d35d..865391f2c3 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_fp64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_int16.c b/GraphBLAS/Source/Generated2/GB_binop__times_int16.c index f842628d1b..288cc3e592 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_int16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_int16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_int32.c b/GraphBLAS/Source/Generated2/GB_binop__times_int32.c index 84146110a9..2e4567cb36 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_int32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_int32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_int64.c b/GraphBLAS/Source/Generated2/GB_binop__times_int64.c index 6922e1bd91..381aca4818 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_int64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_int64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_int8.c b/GraphBLAS/Source/Generated2/GB_binop__times_int8.c index eef23d2299..870baeb1e3 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_int8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_int8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_uint16.c b/GraphBLAS/Source/Generated2/GB_binop__times_uint16.c index 69b3b3487a..4c4deaeaa6 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_uint16.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_uint32.c b/GraphBLAS/Source/Generated2/GB_binop__times_uint32.c index 5aad14f2d0..51b1c5cf1a 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_uint32.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_uint64.c b/GraphBLAS/Source/Generated2/GB_binop__times_uint64.c index 5ad3e9e7fb..ccf5ba119d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_uint64.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_binop__times_uint8.c b/GraphBLAS/Source/Generated2/GB_binop__times_uint8.c index 16466005b1..6c011b8a8d 100644 --- a/GraphBLAS/Source/Generated2/GB_binop__times_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_binop__times_uint8.c @@ -12,7 +12,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_bool.c b/GraphBLAS/Source/Generated2/GB_red__any_bool.c index 2d2d9d37fb..9bc3e9ccfe 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_bool.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_fc32.c b/GraphBLAS/Source/Generated2/GB_red__any_fc32.c index 14b14039d7..b98054c5ae 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_fc64.c b/GraphBLAS/Source/Generated2/GB_red__any_fc64.c index e12b05b128..d74f77fff5 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_fp32.c b/GraphBLAS/Source/Generated2/GB_red__any_fp32.c index 852c58cb8d..7d5f17c2e8 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_fp64.c b/GraphBLAS/Source/Generated2/GB_red__any_fp64.c index 0c3bd7d6f4..a312e39700 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_int16.c b/GraphBLAS/Source/Generated2/GB_red__any_int16.c index b9e712f538..687dc431f8 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_int16.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_int32.c b/GraphBLAS/Source/Generated2/GB_red__any_int32.c index 41ee870869..1bd69fc148 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_int32.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_int64.c b/GraphBLAS/Source/Generated2/GB_red__any_int64.c index 681faff96f..85c41dff85 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_int64.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_int8.c b/GraphBLAS/Source/Generated2/GB_red__any_int8.c index 12b1fa5bc9..39461af812 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_int8.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_uint16.c b/GraphBLAS/Source/Generated2/GB_red__any_uint16.c index 4cfb642d9e..7497c1de9c 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_uint32.c b/GraphBLAS/Source/Generated2/GB_red__any_uint32.c index 999d9c58a9..4261c09b27 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_uint64.c b/GraphBLAS/Source/Generated2/GB_red__any_uint64.c index b5aa915393..98c4486c23 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__any_uint8.c b/GraphBLAS/Source/Generated2/GB_red__any_uint8.c index 0ff5bb1c41..16e5418084 100644 --- a/GraphBLAS/Source/Generated2/GB_red__any_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_red__any_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__eq_bool.c b/GraphBLAS/Source/Generated2/GB_red__eq_bool.c index 43b8245c52..c778b0156c 100644 --- a/GraphBLAS/Source/Generated2/GB_red__eq_bool.c +++ b/GraphBLAS/Source/Generated2/GB_red__eq_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_bool.c b/GraphBLAS/Source/Generated2/GB_red__first_bool.c index 4f4fa9dd7c..38b66083ad 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_bool.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_fc32.c b/GraphBLAS/Source/Generated2/GB_red__first_fc32.c index 52433e3c20..16918312fd 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_fc64.c b/GraphBLAS/Source/Generated2/GB_red__first_fc64.c index f56d12b58d..b3c342d0eb 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_fp32.c b/GraphBLAS/Source/Generated2/GB_red__first_fp32.c index 110c238624..ad08a494cf 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_fp64.c b/GraphBLAS/Source/Generated2/GB_red__first_fp64.c index 06c345c07f..f91a4407f2 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_int16.c b/GraphBLAS/Source/Generated2/GB_red__first_int16.c index 7ad390daa5..fec92c8bf5 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_int16.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_int32.c b/GraphBLAS/Source/Generated2/GB_red__first_int32.c index 58aa2de9b3..d92e5546bb 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_int32.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_int64.c b/GraphBLAS/Source/Generated2/GB_red__first_int64.c index 0590a56177..4a1b4f802f 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_int64.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_int8.c b/GraphBLAS/Source/Generated2/GB_red__first_int8.c index 32ddc19286..67555ac917 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_int8.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_uint16.c b/GraphBLAS/Source/Generated2/GB_red__first_uint16.c index 8f8df50b25..1ef9c5c2e7 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_uint32.c b/GraphBLAS/Source/Generated2/GB_red__first_uint32.c index 963d1c2f4c..d0cfb14174 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_uint64.c b/GraphBLAS/Source/Generated2/GB_red__first_uint64.c index f7e92328fe..10551b5aeb 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__first_uint8.c b/GraphBLAS/Source/Generated2/GB_red__first_uint8.c index ceea1f226d..c1ba62c0a7 100644 --- a/GraphBLAS/Source/Generated2/GB_red__first_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_red__first_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__land_bool.c b/GraphBLAS/Source/Generated2/GB_red__land_bool.c index fdd8904f9e..198da5768f 100644 --- a/GraphBLAS/Source/Generated2/GB_red__land_bool.c +++ b/GraphBLAS/Source/Generated2/GB_red__land_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__lor_bool.c b/GraphBLAS/Source/Generated2/GB_red__lor_bool.c index 3aa541b1ea..4a1d37cbcf 100644 --- a/GraphBLAS/Source/Generated2/GB_red__lor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_red__lor_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__lxor_bool.c b/GraphBLAS/Source/Generated2/GB_red__lxor_bool.c index c6ecfe13be..7cc8ee6da0 100644 --- a/GraphBLAS/Source/Generated2/GB_red__lxor_bool.c +++ b/GraphBLAS/Source/Generated2/GB_red__lxor_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_fp32.c b/GraphBLAS/Source/Generated2/GB_red__max_fp32.c index c073316263..01b4ec4be8 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_fp64.c b/GraphBLAS/Source/Generated2/GB_red__max_fp64.c index 36917f1110..9c69f04836 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_int16.c b/GraphBLAS/Source/Generated2/GB_red__max_int16.c index cce38f80eb..96728104c4 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_int16.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_int32.c b/GraphBLAS/Source/Generated2/GB_red__max_int32.c index d6cbb1db91..d9affa6206 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_int32.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_int64.c b/GraphBLAS/Source/Generated2/GB_red__max_int64.c index 2205b2e9fe..5a56a79b50 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_int64.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_int8.c b/GraphBLAS/Source/Generated2/GB_red__max_int8.c index 3ecf9a7075..9ecc25c98b 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_int8.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_uint16.c b/GraphBLAS/Source/Generated2/GB_red__max_uint16.c index d4eafad49f..f20bb30557 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_uint32.c b/GraphBLAS/Source/Generated2/GB_red__max_uint32.c index edea8d8a75..dc28eebdac 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_uint64.c b/GraphBLAS/Source/Generated2/GB_red__max_uint64.c index 912d7c676d..d082a5f2dd 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__max_uint8.c b/GraphBLAS/Source/Generated2/GB_red__max_uint8.c index 57c9a21f5f..24968eed8c 100644 --- a/GraphBLAS/Source/Generated2/GB_red__max_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_red__max_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_fp32.c b/GraphBLAS/Source/Generated2/GB_red__min_fp32.c index 8ee5d4d705..e84c5c9952 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_fp64.c b/GraphBLAS/Source/Generated2/GB_red__min_fp64.c index 0f836d9f3f..6b18ddc854 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_int16.c b/GraphBLAS/Source/Generated2/GB_red__min_int16.c index 1b315c2115..cd9c8fa4d5 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_int16.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_int32.c b/GraphBLAS/Source/Generated2/GB_red__min_int32.c index db3fb1e843..e45157990a 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_int32.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_int64.c b/GraphBLAS/Source/Generated2/GB_red__min_int64.c index 5a63b2c798..de64b29294 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_int64.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_int8.c b/GraphBLAS/Source/Generated2/GB_red__min_int8.c index 31dc73907e..3e496c72c8 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_int8.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_uint16.c b/GraphBLAS/Source/Generated2/GB_red__min_uint16.c index 0e04e89f30..ff79ee9227 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_uint32.c b/GraphBLAS/Source/Generated2/GB_red__min_uint32.c index c896ec7309..6f7e1319c9 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_uint64.c b/GraphBLAS/Source/Generated2/GB_red__min_uint64.c index ed443961f0..4ec4e44e92 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__min_uint8.c b/GraphBLAS/Source/Generated2/GB_red__min_uint8.c index 565ddd48de..e4281d0554 100644 --- a/GraphBLAS/Source/Generated2/GB_red__min_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_red__min_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_fc32.c b/GraphBLAS/Source/Generated2/GB_red__plus_fc32.c index 9f2e6da431..a62e4f1f7a 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_fc64.c b/GraphBLAS/Source/Generated2/GB_red__plus_fc64.c index 21e6e0aa6d..962ebc01be 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_fp32.c b/GraphBLAS/Source/Generated2/GB_red__plus_fp32.c index bbe27c594b..7a249dbd16 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_fp64.c b/GraphBLAS/Source/Generated2/GB_red__plus_fp64.c index 1243162d97..9a81cd5c91 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_int16.c b/GraphBLAS/Source/Generated2/GB_red__plus_int16.c index c057d0823f..4237661206 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_int16.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_int32.c b/GraphBLAS/Source/Generated2/GB_red__plus_int32.c index 03f51ec5b9..aa035ff5f1 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_int32.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_int64.c b/GraphBLAS/Source/Generated2/GB_red__plus_int64.c index 97028c3a6d..9fb2a57cec 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_int64.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_int8.c b/GraphBLAS/Source/Generated2/GB_red__plus_int8.c index 63d1067a37..448b534e79 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_int8.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_uint16.c b/GraphBLAS/Source/Generated2/GB_red__plus_uint16.c index 63bced7c21..b5ea9f5f42 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_uint32.c b/GraphBLAS/Source/Generated2/GB_red__plus_uint32.c index 9ab975e7ef..58c13cc029 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_uint64.c b/GraphBLAS/Source/Generated2/GB_red__plus_uint64.c index 5f35da8352..afe28cdbcf 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__plus_uint8.c b/GraphBLAS/Source/Generated2/GB_red__plus_uint8.c index 4b94df7238..be00d44229 100644 --- a/GraphBLAS/Source/Generated2/GB_red__plus_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_red__plus_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_bool.c b/GraphBLAS/Source/Generated2/GB_red__second_bool.c index 8a34d4a966..9ac28d6770 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_bool.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_fc32.c b/GraphBLAS/Source/Generated2/GB_red__second_fc32.c index 0f24f83091..f5da72ef31 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_fc64.c b/GraphBLAS/Source/Generated2/GB_red__second_fc64.c index ce949c170b..f2c26c19d0 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_fp32.c b/GraphBLAS/Source/Generated2/GB_red__second_fp32.c index 2bf3580ad0..7f9cd60c96 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_fp64.c b/GraphBLAS/Source/Generated2/GB_red__second_fp64.c index 06be7c51bf..cf16d2c9cb 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_int16.c b/GraphBLAS/Source/Generated2/GB_red__second_int16.c index 772c56b3b6..7f8f81be19 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_int16.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_int32.c b/GraphBLAS/Source/Generated2/GB_red__second_int32.c index 99fdd27848..5b5101483c 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_int32.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_int64.c b/GraphBLAS/Source/Generated2/GB_red__second_int64.c index 0e33fd6c53..94ae809c9f 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_int64.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_int8.c b/GraphBLAS/Source/Generated2/GB_red__second_int8.c index 87a19e175f..afc00c1a52 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_int8.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_uint16.c b/GraphBLAS/Source/Generated2/GB_red__second_uint16.c index 7cb3ab6e59..494aa8c258 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_uint32.c b/GraphBLAS/Source/Generated2/GB_red__second_uint32.c index 33e44b92ac..ae011babab 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_uint64.c b/GraphBLAS/Source/Generated2/GB_red__second_uint64.c index 577704f914..74ed51625c 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__second_uint8.c b/GraphBLAS/Source/Generated2/GB_red__second_uint8.c index 052b1753a9..6120434ab3 100644 --- a/GraphBLAS/Source/Generated2/GB_red__second_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_red__second_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_fc32.c b/GraphBLAS/Source/Generated2/GB_red__times_fc32.c index 3c256d69db..bfe495025a 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_fc64.c b/GraphBLAS/Source/Generated2/GB_red__times_fc64.c index 7f205168f6..4547f80312 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_fp32.c b/GraphBLAS/Source/Generated2/GB_red__times_fp32.c index 44b06ed33b..25d349f0f6 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_fp64.c b/GraphBLAS/Source/Generated2/GB_red__times_fp64.c index 6d8bb7843e..9fbaea85fc 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_int16.c b/GraphBLAS/Source/Generated2/GB_red__times_int16.c index 042ba2e205..468366d757 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_int16.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_int32.c b/GraphBLAS/Source/Generated2/GB_red__times_int32.c index 03decaff9c..e98db2702e 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_int32.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_int64.c b/GraphBLAS/Source/Generated2/GB_red__times_int64.c index 0ae6456759..76d8d003d8 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_int64.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_int8.c b/GraphBLAS/Source/Generated2/GB_red__times_int8.c index 495e130228..b2cbcc352e 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_int8.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_uint16.c b/GraphBLAS/Source/Generated2/GB_red__times_uint16.c index 7023c2c820..edddcfab0a 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_uint32.c b/GraphBLAS/Source/Generated2/GB_red__times_uint32.c index 4351769226..6feae3a07d 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_uint64.c b/GraphBLAS/Source/Generated2/GB_red__times_uint64.c index bbf43cbd64..d337739137 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_red__times_uint8.c b/GraphBLAS/Source/Generated2/GB_red__times_uint8.c index e46603aec9..abd31bce93 100644 --- a/GraphBLAS/Source/Generated2/GB_red__times_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_red__times_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__bool.c b/GraphBLAS/Source/Generated2/GB_type__bool.c index c9e0676c40..a8bd8b3bd0 100644 --- a/GraphBLAS/Source/Generated2/GB_type__bool.c +++ b/GraphBLAS/Source/Generated2/GB_type__bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__fc32.c b/GraphBLAS/Source/Generated2/GB_type__fc32.c index 9b47304bf5..0ba0cdf254 100644 --- a/GraphBLAS/Source/Generated2/GB_type__fc32.c +++ b/GraphBLAS/Source/Generated2/GB_type__fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__fc64.c b/GraphBLAS/Source/Generated2/GB_type__fc64.c index 3f1cb9c069..8ee7a517ad 100644 --- a/GraphBLAS/Source/Generated2/GB_type__fc64.c +++ b/GraphBLAS/Source/Generated2/GB_type__fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__fp32.c b/GraphBLAS/Source/Generated2/GB_type__fp32.c index 1d1354f5ec..99a9204e5e 100644 --- a/GraphBLAS/Source/Generated2/GB_type__fp32.c +++ b/GraphBLAS/Source/Generated2/GB_type__fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__fp64.c b/GraphBLAS/Source/Generated2/GB_type__fp64.c index f486be5ba5..589f5ce713 100644 --- a/GraphBLAS/Source/Generated2/GB_type__fp64.c +++ b/GraphBLAS/Source/Generated2/GB_type__fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__int16.c b/GraphBLAS/Source/Generated2/GB_type__int16.c index 8c60ccbc8e..a856fb042b 100644 --- a/GraphBLAS/Source/Generated2/GB_type__int16.c +++ b/GraphBLAS/Source/Generated2/GB_type__int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__int32.c b/GraphBLAS/Source/Generated2/GB_type__int32.c index 7bf6dca60a..c4a6ccce7d 100644 --- a/GraphBLAS/Source/Generated2/GB_type__int32.c +++ b/GraphBLAS/Source/Generated2/GB_type__int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__int64.c b/GraphBLAS/Source/Generated2/GB_type__int64.c index 01d54a5dce..32824ea42d 100644 --- a/GraphBLAS/Source/Generated2/GB_type__int64.c +++ b/GraphBLAS/Source/Generated2/GB_type__int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__int8.c b/GraphBLAS/Source/Generated2/GB_type__int8.c index 52514f67d0..c4b14b4168 100644 --- a/GraphBLAS/Source/Generated2/GB_type__int8.c +++ b/GraphBLAS/Source/Generated2/GB_type__int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__uint16.c b/GraphBLAS/Source/Generated2/GB_type__uint16.c index 255413a0ce..bb4d3f99f5 100644 --- a/GraphBLAS/Source/Generated2/GB_type__uint16.c +++ b/GraphBLAS/Source/Generated2/GB_type__uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__uint32.c b/GraphBLAS/Source/Generated2/GB_type__uint32.c index 33c2af5058..037cbba9d8 100644 --- a/GraphBLAS/Source/Generated2/GB_type__uint32.c +++ b/GraphBLAS/Source/Generated2/GB_type__uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__uint64.c b/GraphBLAS/Source/Generated2/GB_type__uint64.c index 27fb2af915..78bad24274 100644 --- a/GraphBLAS/Source/Generated2/GB_type__uint64.c +++ b/GraphBLAS/Source/Generated2/GB_type__uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_type__uint8.c b/GraphBLAS/Source/Generated2/GB_type__uint8.c index cd4b9249c3..755e9fdd36 100644 --- a/GraphBLAS/Source/Generated2/GB_type__uint8.c +++ b/GraphBLAS/Source/Generated2/GB_type__uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_bool_bool.c b/GraphBLAS/Source/Generated2/GB_unop__abs_bool_bool.c index 7404b6d1cf..7768961db7 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_bool_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_bool_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_fp32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__abs_fp32_fc32.c index 0cf5d08034..19f23aefe7 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_fp32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_fp32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__abs_fp32_fp32.c index f6a225aec7..e7b8335efb 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_fp64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__abs_fp64_fc64.c index 8bf764d635..c20429ff8c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_fp64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_fp64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__abs_fp64_fp64.c index dc69665a77..6db91d805b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_int16_int16.c b/GraphBLAS/Source/Generated2/GB_unop__abs_int16_int16.c index 1f922ca758..9592ea8003 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_int16_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_int16_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_int32_int32.c b/GraphBLAS/Source/Generated2/GB_unop__abs_int32_int32.c index fad963b90d..9c2cbef4c3 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_int32_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_int32_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_int64_int64.c b/GraphBLAS/Source/Generated2/GB_unop__abs_int64_int64.c index a89f06e58e..0f3b8d51e7 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_int64_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_int64_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_int8_int8.c b/GraphBLAS/Source/Generated2/GB_unop__abs_int8_int8.c index 3e126fa976..5ef4203ee2 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_int8_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_int8_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_uint16_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__abs_uint16_uint16.c index 87156083aa..7740a4788b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_uint16_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_uint16_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_uint32_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__abs_uint32_uint32.c index 99075153ee..a70a983d36 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_uint32_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_uint32_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_uint64_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__abs_uint64_uint64.c index 93b5476242..953b7c112a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_uint64_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_uint64_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__abs_uint8_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__abs_uint8_uint8.c index c947a90165..7d09e9ea5e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__abs_uint8_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__abs_uint8_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__acos_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__acos_fc32_fc32.c index e28806a5f2..0754348e95 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__acos_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__acos_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__acos_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__acos_fc64_fc64.c index 9a0387eaf2..0957944934 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__acos_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__acos_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__acos_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__acos_fp32_fp32.c index 59bb919057..ed20b45a62 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__acos_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__acos_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__acos_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__acos_fp64_fp64.c index 12d871010b..e84ea359b6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__acos_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__acos_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__acosh_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__acosh_fc32_fc32.c index 691baac911..84433cd37f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__acosh_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__acosh_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__acosh_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__acosh_fc64_fc64.c index a702bda7a0..7d58c6200b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__acosh_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__acosh_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__acosh_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__acosh_fp32_fp32.c index 8c77ae8263..2ea7693b72 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__acosh_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__acosh_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__acosh_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__acosh_fp64_fp64.c index e41c622c04..5a5c6329de 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__acosh_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__acosh_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_bool_bool.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_bool_bool.c index 8a8eae7aa2..5244e2cddf 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_bool_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_bool_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_fc32_fc32.c index 494c6f5c42..5a4dba752b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_fc64_fc64.c index 88430b7479..b88bfa6fc2 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_fp32_fp32.c index 0f29640b06..e57b048a0b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_fp64_fp64.c index 80314685ed..ff38da2bdc 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_int16_int16.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_int16_int16.c index dd01490d53..f1f5d8f1b3 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_int16_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_int16_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_int32_int32.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_int32_int32.c index 5e9b1ea5e1..0ed8b8dcdf 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_int32_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_int32_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_int64_int64.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_int64_int64.c index 4f412474c2..9a305aef6b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_int64_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_int64_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_int8_int8.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_int8_int8.c index d327d7544a..8490b33872 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_int8_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_int8_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_uint16_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_uint16_uint16.c index 960fea6b18..430441682d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_uint16_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_uint16_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_uint32_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_uint32_uint32.c index dc1fb2a0bd..879d32ab12 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_uint32_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_uint32_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_uint64_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_uint64_uint64.c index 7f3bc95186..1d136cb82c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_uint64_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_uint64_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ainv_uint8_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__ainv_uint8_uint8.c index d4aac1f8e7..2379e9d59b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ainv_uint8_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ainv_uint8_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__asin_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__asin_fc32_fc32.c index b04b0adc6a..cae2603c02 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__asin_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__asin_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__asin_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__asin_fc64_fc64.c index dd6e989e0f..0a42718f5d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__asin_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__asin_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__asin_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__asin_fp32_fp32.c index 4bfe147876..9ef186ffc3 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__asin_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__asin_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__asin_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__asin_fp64_fp64.c index 5d95629d3a..ac9268b701 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__asin_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__asin_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__asinh_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__asinh_fc32_fc32.c index c8e38a7fdb..0c424964a5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__asinh_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__asinh_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__asinh_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__asinh_fc64_fc64.c index 77db976c23..5a1b07fcf9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__asinh_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__asinh_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__asinh_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__asinh_fp32_fp32.c index d745ff9920..b724b6247a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__asinh_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__asinh_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__asinh_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__asinh_fp64_fp64.c index c04af6e728..0b56c90ae5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__asinh_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__asinh_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__atan_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__atan_fc32_fc32.c index bba2d1e7ca..a398287647 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__atan_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__atan_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__atan_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__atan_fc64_fc64.c index 93a38402bd..979f32fb89 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__atan_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__atan_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__atan_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__atan_fp32_fp32.c index 8b14825342..cef662f5ed 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__atan_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__atan_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__atan_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__atan_fp64_fp64.c index 4662978ed1..d5f3babdd0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__atan_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__atan_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__atanh_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__atanh_fc32_fc32.c index 62128271b7..9b3b771410 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__atanh_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__atanh_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__atanh_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__atanh_fc64_fc64.c index da724ecbc6..f45f3d7a93 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__atanh_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__atanh_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__atanh_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__atanh_fp32_fp32.c index 4181115e7b..ed7b48fa55 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__atanh_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__atanh_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__atanh_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__atanh_fp64_fp64.c index 458e2dc17d..dbb8c81622 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__atanh_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__atanh_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__bnot_int16_int16.c b/GraphBLAS/Source/Generated2/GB_unop__bnot_int16_int16.c index d64c4eae5f..2e1bd249a2 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__bnot_int16_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__bnot_int16_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__bnot_int32_int32.c b/GraphBLAS/Source/Generated2/GB_unop__bnot_int32_int32.c index 820f381f13..20609de3e5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__bnot_int32_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__bnot_int32_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__bnot_int64_int64.c b/GraphBLAS/Source/Generated2/GB_unop__bnot_int64_int64.c index dee0453303..8608b41729 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__bnot_int64_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__bnot_int64_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__bnot_int8_int8.c b/GraphBLAS/Source/Generated2/GB_unop__bnot_int8_int8.c index 854a179fd6..8747170e20 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__bnot_int8_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__bnot_int8_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__bnot_uint16_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__bnot_uint16_uint16.c index 3b6ae20461..d359ca1387 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__bnot_uint16_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__bnot_uint16_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__bnot_uint32_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__bnot_uint32_uint32.c index 519170b4bb..6af1ded2be 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__bnot_uint32_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__bnot_uint32_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__bnot_uint64_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__bnot_uint64_uint64.c index f9ba773592..68e62d709b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__bnot_uint64_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__bnot_uint64_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__bnot_uint8_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__bnot_uint8_uint8.c index 1ecaa32b5f..da6f78e62b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__bnot_uint8_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__bnot_uint8_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__carg_fp32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__carg_fp32_fc32.c index 7587807945..ec9eda163f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__carg_fp32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__carg_fp32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__carg_fp64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__carg_fp64_fc64.c index 4840ebe5b6..07b93135a4 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__carg_fp64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__carg_fp64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ceil_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__ceil_fc32_fc32.c index 9f30601426..dde169ff6d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ceil_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ceil_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ceil_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__ceil_fc64_fc64.c index e52844c2c3..de26dcd280 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ceil_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ceil_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ceil_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__ceil_fp32_fp32.c index 30db984907..7f81d2504a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ceil_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ceil_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__ceil_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__ceil_fp64_fp64.c index 633a8dbc48..c20b6a2d59 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__ceil_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__ceil_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cimag_fp32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__cimag_fp32_fc32.c index 95a36795fd..ed8e09dc2b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cimag_fp32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cimag_fp32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cimag_fp64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__cimag_fp64_fc64.c index 855913c169..9e9f017562 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cimag_fp64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cimag_fp64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__conj_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__conj_fc32_fc32.c index e1bb3a0430..9c9872fb98 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__conj_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__conj_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__conj_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__conj_fc64_fc64.c index bd9d20a71a..d7d7a879bc 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__conj_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__conj_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cos_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__cos_fc32_fc32.c index cb4aa70a90..f3020359ab 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cos_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cos_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cos_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__cos_fc64_fc64.c index d43d1a21d6..90d64d50fd 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cos_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cos_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cos_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__cos_fp32_fp32.c index e3ca9ad748..c693517157 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cos_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cos_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cos_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__cos_fp64_fp64.c index f849fdd698..ff38ce73e4 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cos_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cos_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cosh_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__cosh_fc32_fc32.c index 90f9f22f9f..adf526f57e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cosh_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cosh_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cosh_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__cosh_fc64_fc64.c index 0b931d312c..9b4fb31546 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cosh_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cosh_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cosh_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__cosh_fp32_fp32.c index c357444862..1c063f9ec8 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cosh_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cosh_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__cosh_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__cosh_fp64_fp64.c index 389448929b..f816be426d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__cosh_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__cosh_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__creal_fp32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__creal_fp32_fc32.c index ce138364fc..bde3238f4b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__creal_fp32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__creal_fp32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__creal_fp64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__creal_fp64_fc64.c index ba9d17f920..a512dd7723 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__creal_fp64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__creal_fp64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__erf_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__erf_fp32_fp32.c index 6ef6ab6c6e..be454a1fee 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__erf_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__erf_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__erf_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__erf_fp64_fp64.c index 451997965e..1d93ab65d1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__erf_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__erf_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__erfc_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__erfc_fp32_fp32.c index 25e6557e91..dfdd35670a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__erfc_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__erfc_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__erfc_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__erfc_fp64_fp64.c index 621559a26c..8d6d12ed63 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__erfc_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__erfc_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__exp2_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__exp2_fc32_fc32.c index 09064b8075..6fb636b10e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__exp2_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__exp2_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__exp2_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__exp2_fc64_fc64.c index 18b348813f..087c9f7d72 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__exp2_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__exp2_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__exp2_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__exp2_fp32_fp32.c index 7fbeacc649..a41cf35181 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__exp2_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__exp2_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__exp2_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__exp2_fp64_fp64.c index 5ee2ccb974..cf73453f1c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__exp2_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__exp2_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__exp_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__exp_fc32_fc32.c index 59b3e2fe00..8a9c4855a6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__exp_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__exp_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__exp_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__exp_fc64_fc64.c index 1e060d1a1a..0f59555184 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__exp_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__exp_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__exp_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__exp_fp32_fp32.c index 0b7f0b0cb1..590bc07a16 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__exp_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__exp_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__exp_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__exp_fp64_fp64.c index b9807f3bed..24a064b0c9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__exp_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__exp_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__expm1_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__expm1_fc32_fc32.c index 7334569404..0b31bde5e1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__expm1_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__expm1_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__expm1_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__expm1_fc64_fc64.c index 6d4ce87c1d..82556d26e2 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__expm1_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__expm1_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__expm1_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__expm1_fp32_fp32.c index 976be63f70..4e6ecf72e8 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__expm1_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__expm1_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__expm1_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__expm1_fp64_fp64.c index 9169938b9c..ad3cd90c1c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__expm1_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__expm1_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__floor_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__floor_fc32_fc32.c index 22a3d3505b..85d763a44d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__floor_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__floor_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__floor_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__floor_fc64_fc64.c index 3722ed1ae7..ffe91a6123 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__floor_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__floor_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__floor_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__floor_fp32_fp32.c index 8698508830..fe237d4fde 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__floor_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__floor_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__floor_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__floor_fp64_fp64.c index fce8e7616b..d135257ca9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__floor_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__floor_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__frexpe_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__frexpe_fp32_fp32.c index 6018fb24dd..0538af2180 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__frexpe_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__frexpe_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__frexpe_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__frexpe_fp64_fp64.c index bd65d95451..bed793e707 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__frexpe_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__frexpe_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__frexpx_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__frexpx_fp32_fp32.c index 97787c502e..0af2e1d36d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__frexpx_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__frexpx_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__frexpx_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__frexpx_fp64_fp64.c index 493298eabe..d8f12d4323 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__frexpx_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__frexpx_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_bool.c index 7203732964..e6f8e53652 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fc32.c index 15ce85631e..35fd7a175d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fc64.c index 558993fe18..dd096f7441 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fp32.c index ba95fa9ea3..1e9f4a60b5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fp64.c index 8fe73e3db8..d4ce509de2 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int16.c index 57770e205e..73121ddf4f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int32.c index 91157a330a..005245d6da 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int64.c index c514914e52..b3d9788dab 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int8.c index dd5350dad7..8a0c4046ae 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint16.c index 2bf96ab348..2b538cfc91 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint32.c index 33ee1ea45e..c0b4312a13 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint64.c index f536620645..f78fe83962 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint8.c index 208d245868..e2698a3ab6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_bool_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_bool.c index 0d582f99ff..633825ce0c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fc32.c index c7baf57115..ec3cd0419f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fc64.c index e1ee5b6c73..c28093d3dd 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fp32.c index 409155bb88..cb50cfd18c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fp64.c index 5875e3c7a0..5ecfcb9946 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int16.c index d64239d369..c68146b5cf 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int32.c index 41d6aa5702..165c21de37 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int64.c index 8af9f1a515..8a5af932fd 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int8.c index d6dc522d5a..8f62b09cf1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint16.c index 8d3d339abd..f8b2677fa4 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint32.c index 851196c9f7..482ac2904a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint64.c index efdc87642c..34928c963f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint8.c index 78bb02d787..1845a740ee 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc32_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_bool.c index b088502a06..947a5946f3 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fc32.c index d39324f25e..acd1ea76ab 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fc64.c index 2e214556b4..625c135fa1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fp32.c index 3b1bf18c83..2a39048491 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fp64.c index 2e4c788e4f..aba9ffd189 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int16.c index 4bf163cf7a..fd9f192e02 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int32.c index ef2990fb95..9ac15c472c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int64.c index edff491af1..b51e445441 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int8.c index ed17e068b6..d928063df1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint16.c index 55733eaacb..e691127787 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint32.c index 999a4d5ff5..c4390b2550 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint64.c index 475c3e25c2..57cd3ac558 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint8.c index 562e9c816f..c7ce42760c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fc64_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_bool.c index b767c25a65..bee0ee79a1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fc32.c index 5e882185ba..de16a9a401 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fc64.c index acee7f7bcb..cc080044be 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fp32.c index 3d7f8fc2f0..175809377b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fp64.c index 51f1032916..0c2d436781 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int16.c index 7a401a829b..8d39618dbb 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int32.c index 95c90c6297..eb3e8737fb 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int64.c index b3579f4085..e87b42b92d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int8.c index f68a459d98..424b059bfc 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint16.c index d9ad06c3e7..8e072c1f40 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint32.c index ac108b666f..5bf8d708a6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint64.c index fb516ee4ec..67ba719179 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint8.c index af9ba43c7a..de8980ef69 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp32_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_bool.c index a48d3f3aea..76a48f5aae 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fc32.c index d9a9c05d63..e252bcbd88 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fc64.c index c43a11f6ac..cb8db5d346 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fp32.c index 4a1f8dab5f..77d6cf1823 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fp64.c index 6fe8e561a2..322d4c0476 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int16.c index ba0f014bd3..c962b19ad1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int32.c index abff67121f..4b772ce96e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int64.c index dfe50bcee6..893783551d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int8.c index 332681d158..2b2e6744f1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint16.c index f35bd167a9..3d9bdb6d1d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint32.c index a3244e6f0f..b8bea3cd2c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint64.c index fb1bf6608f..8a095b9ec6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint8.c index 87dd2773e9..d80ad84697 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_fp64_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_bool.c index 44195ed58c..9163fcd74b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fc32.c index 1c7df973a5..7d1a823c05 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fc64.c index fd61c0d6b6..e42c47c8de 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fp32.c index c1ad6de421..b6eebc14e8 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fp64.c index 43504ad733..3fb65d7048 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int16.c index ae8691df82..8f5727f34d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int32.c index e39bc3c468..574297269e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int64.c index b3680daa94..4a8b8207d5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int8.c index 5659a41257..272d29e7ec 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint16.c index 28a77a43ca..c1c3915b95 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint32.c index e107081491..30be62fae6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint64.c index db3552f5a5..a9ecf77a4d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint8.c index e9eb23421d..bfab1c0180 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int16_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_bool.c index b4feaf4bd9..53c74b71a9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fc32.c index c9557c7844..9af42606f9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fc64.c index 8d1e0b0691..92683285f5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fp32.c index 176c9f7e18..6234cbe1fb 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fp64.c index 17fa3521be..71049a0a52 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int16.c index 6ce632c218..ebe2d57fe4 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int32.c index 3cd863ecc2..8e03b6f7e0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int64.c index 6a92fcfda1..31a00e8879 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int8.c index b43e3d8b31..eaf6d37ca0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint16.c index 9116ea885d..03bfd7c783 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint32.c index 720eb393b3..4ac1229a33 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint64.c index 88ab2b655b..802970c942 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint8.c index 2f517374c1..ce7ad86a39 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int32_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_bool.c index 53f709c131..f8d270f7f6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fc32.c index 5e2d657e95..4628211745 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fc64.c index a537ee306e..ef3adb9e32 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fp32.c index 42f077abcb..57a97cc6d0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fp64.c index 9ca358d5c2..80265de7f7 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int16.c index d6da1fa7ae..7338cb53c8 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int32.c index 8349f78e04..8cf3f3795f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int64.c index 17ed596d10..71df04f7cc 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int8.c index 8848c345b4..87b8a9a04d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint16.c index 4003fb2872..596380145d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint32.c index de3fe329cf..e9cef88a78 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint64.c index c520ace4b2..1ddab5708a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint8.c index 270ffb44d9..7a95e3f61d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int64_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_bool.c index fd02a5c41d..ead01e3f61 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fc32.c index 8ec82ca7d9..05121e7247 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fc64.c index 259be9dda9..332e49d130 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fp32.c index 988b05799f..8d72c29861 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fp64.c index 1b0dea29f8..bcd0b121f4 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int16.c index 57ab2a0a63..7d2820b8b3 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int32.c index c90acb96de..b979c5e3ac 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int64.c index a2ba0c0349..8efed53cd3 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int8.c index e4f4721edc..61122dc5d5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint16.c index d1daf78814..d01812f0fb 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint32.c index 075d985597..5f177d0e55 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint64.c index 35f810ee73..d55adbcd8e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint8.c index 2e67b85be3..9cf06f6220 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_int8_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_bool.c index 24ece810d3..65a1299c80 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fc32.c index 1096197cde..4d67f1c119 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fc64.c index 7cd1be691d..dce711b91a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fp32.c index fae24f99b1..da50646601 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fp64.c index 2e14c6aa12..3eb42cbfe9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int16.c index d71be01b60..8a2493e8b0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int32.c index 17db5cf1ca..c12459fb4a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int64.c index 68f52c6127..004900cfd0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int8.c index e0b331c066..799f0e6ef6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint16.c index c4927500c9..3bcabdc238 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint32.c index 28b4d3dee8..98102e5111 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint64.c index 69874a4a51..68666d817a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint8.c index c5bfc1d917..b964bea07e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint16_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_bool.c index 4dce13cc38..e7face40f5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fc32.c index 8d8603760e..2c6a735823 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fc64.c index 9e4d6aabd7..58abfcaba9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fp32.c index 88cd766147..2a850669a0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fp64.c index 3812351eed..c043acd501 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int16.c index 6555e0e32c..f4f005d700 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int32.c index 351366e6a9..ebbdd219bd 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int64.c index 7bc059b944..53ccf808ae 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int8.c index aa103f8072..8c08120d4e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint16.c index c653c99b1d..a90c1ad675 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint32.c index a5451724fc..a7819d8bbe 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint64.c index 7bea0ad2d1..db3d1cb1d9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint8.c index f809bf1155..52746b15bf 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint32_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_bool.c index 57b555634f..e3445b7fa4 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fc32.c index 5bcd1797ea..f80f59b040 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fc64.c index c8509430c9..22df2cd5dd 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fp32.c index 43bc4bbe20..4d8842d80c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fp64.c index 39268762bf..b882e3116b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int16.c index b615db30ca..0bb1422a49 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int32.c index c1b4a1ef23..dae6502ae1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int64.c index c546eb40ed..8a4a40dea5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int8.c index 44ee1f39d8..9903b1d996 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint16.c index b6d9755f5d..1e1bbd43c6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint32.c index de900dd3ca..b8cef62d96 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint64.c index b76099bdc1..3eb7de211b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint8.c index 67f3e6e0eb..7a34eeb3a3 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint64_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_bool.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_bool.c index e258bcf12d..7f9d23a7bb 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fc32.c index ace1b7b79e..d28cff6d79 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fc64.c index d9350498aa..7c37048b2d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fp32.c index 3c7ba14b6b..5516457b8f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fp64.c index 096fce9682..a29b3c36a4 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int16.c index e36ad04f2d..090fe683ad 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int32.c index d314ad525e..d97d62777f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int64.c index d35483d784..f83d2ab650 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int8.c index 87c527433f..2fab18bb9f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint16.c index 3171a1b27d..3d94f87906 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint32.c index 3befbebc86..a5c24822b4 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint64.c index 7731b3808f..9964d01a89 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint8.c index d30a4863df..a07deb13ab 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__identity_uint8_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fc32.c index d3d74e4be3..5af1cfb16a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fc64.c index fd7f4f310a..1965f66dc8 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fp32.c index 12ccaaf2e1..dacc6f3393 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fp64.c index 9a3f39ea29..098879f81d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isfinite_bool_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fc32.c index c8a5878417..717b2f9171 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fc64.c index b5d61efbf9..6af052f11e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fp32.c index b417922319..92f880d63b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fp64.c index 36a69fc766..297b667bb2 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isinf_bool_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fc32.c index fd6af2d613..ab715d4bc0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fc64.c index f23d758e5a..a640e1688e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fp32.c index 1e668cda66..b4090ed421 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fp64.c index 04ef4b7378..88b9d90537 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__isnan_bool_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lgamma_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__lgamma_fp32_fp32.c index 61182e747f..74dc9295c5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lgamma_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lgamma_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lgamma_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__lgamma_fp64_fp64.c index f972442f70..1e9ab3d388 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lgamma_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lgamma_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_bool_bool.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_bool_bool.c index c958af8178..1f69b776f3 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_bool_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_bool_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_fp32_fp32.c index b3b34bd5ec..a4823e4536 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_fp64_fp64.c index 349dd21643..9093bbd7c0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_int16_int16.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_int16_int16.c index 0e92de3c55..96c3b06bb6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_int16_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_int16_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_int32_int32.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_int32_int32.c index cb589f6cf7..2130695210 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_int32_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_int32_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_int64_int64.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_int64_int64.c index b05c88e699..68e4e2411a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_int64_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_int64_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_int8_int8.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_int8_int8.c index 18303c17f6..ea342fb1ec 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_int8_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_int8_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_uint16_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_uint16_uint16.c index a193777c1a..27c758af31 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_uint16_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_uint16_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_uint32_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_uint32_uint32.c index d03fab17d2..3a72f7da63 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_uint32_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_uint32_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_uint64_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_uint64_uint64.c index 71d12562b3..2dbff86df1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_uint64_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_uint64_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__lnot_uint8_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__lnot_uint8_uint8.c index 6198a6716b..71d71e1da5 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__lnot_uint8_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__lnot_uint8_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log10_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__log10_fc32_fc32.c index 8132689eb3..58867e166e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log10_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log10_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log10_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__log10_fc64_fc64.c index e81ce2b566..5d65279183 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log10_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log10_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log10_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__log10_fp32_fp32.c index ca9d14d5c4..e60dc31a70 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log10_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log10_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log10_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__log10_fp64_fp64.c index e667849d7a..b6ac32e59b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log10_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log10_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log1p_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__log1p_fc32_fc32.c index 6900dfef8b..40e1873a73 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log1p_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log1p_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log1p_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__log1p_fc64_fc64.c index 55da0f0db9..970ac45986 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log1p_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log1p_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log1p_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__log1p_fp32_fp32.c index 31d8cfff79..01397c246e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log1p_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log1p_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log1p_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__log1p_fp64_fp64.c index cdd40fe98e..b032491766 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log1p_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log1p_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log2_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__log2_fc32_fc32.c index b425cfbbdf..7e0cccdb58 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log2_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log2_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log2_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__log2_fc64_fc64.c index 335088f336..3665b7f0d4 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log2_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log2_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log2_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__log2_fp32_fp32.c index b83e915023..c29a4ea97d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log2_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log2_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log2_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__log2_fp64_fp64.c index 5c6b87011a..9817bb3d64 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log2_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log2_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__log_fc32_fc32.c index c5f0ed3bc6..b16e093b0f 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__log_fc64_fc64.c index d738c34f44..77a357b5c6 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__log_fp32_fp32.c index 0bfe87f896..dc40fae048 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__log_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__log_fp64_fp64.c index 46cbfbd3d9..1b393f04a0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__log_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__log_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_bool_bool.c b/GraphBLAS/Source/Generated2/GB_unop__minv_bool_bool.c index a540fd2404..de57bfe32b 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_bool_bool.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_bool_bool.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__minv_fc32_fc32.c index 084f987837..5cd9170e17 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__minv_fc64_fc64.c index a7b35e6bcf..8b44ff04d0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__minv_fp32_fp32.c index 812b07bd3a..9709a9052d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__minv_fp64_fp64.c index 86524d4ecc..78de20ce12 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_int16_int16.c b/GraphBLAS/Source/Generated2/GB_unop__minv_int16_int16.c index 3c78c29dd1..2437fbf3a0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_int16_int16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_int16_int16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_int32_int32.c b/GraphBLAS/Source/Generated2/GB_unop__minv_int32_int32.c index 56ee916648..21478a1564 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_int32_int32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_int32_int32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_int64_int64.c b/GraphBLAS/Source/Generated2/GB_unop__minv_int64_int64.c index ac8908290e..d364e220f3 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_int64_int64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_int64_int64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_int8_int8.c b/GraphBLAS/Source/Generated2/GB_unop__minv_int8_int8.c index 716ab73fce..1ddd3910d0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_int8_int8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_int8_int8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_uint16_uint16.c b/GraphBLAS/Source/Generated2/GB_unop__minv_uint16_uint16.c index 0bbaa9665e..ed2311f4ac 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_uint16_uint16.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_uint16_uint16.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_uint32_uint32.c b/GraphBLAS/Source/Generated2/GB_unop__minv_uint32_uint32.c index a67a38db3d..1a82fa03e0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_uint32_uint32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_uint32_uint32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_uint64_uint64.c b/GraphBLAS/Source/Generated2/GB_unop__minv_uint64_uint64.c index d7de5d7db3..0adcfb2bf0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_uint64_uint64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_uint64_uint64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__minv_uint8_uint8.c b/GraphBLAS/Source/Generated2/GB_unop__minv_uint8_uint8.c index d91fdb4acc..e320f07127 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__minv_uint8_uint8.c +++ b/GraphBLAS/Source/Generated2/GB_unop__minv_uint8_uint8.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__round_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__round_fc32_fc32.c index a1ddccd15f..5560a5c15a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__round_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__round_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__round_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__round_fc64_fc64.c index 0756250146..4e166d6f1c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__round_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__round_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__round_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__round_fp32_fp32.c index 420a1a31c8..0eb84433da 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__round_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__round_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__round_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__round_fp64_fp64.c index ec643240ba..4595adaca0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__round_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__round_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__signum_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__signum_fc32_fc32.c index 1b7a735d03..98998a459c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__signum_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__signum_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__signum_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__signum_fc64_fc64.c index 7d7e5af92d..051818d5f0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__signum_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__signum_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__signum_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__signum_fp32_fp32.c index 7faf4d3470..18ef47d91c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__signum_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__signum_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__signum_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__signum_fp64_fp64.c index cc21e595d8..637f0b2840 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__signum_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__signum_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sin_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__sin_fc32_fc32.c index 93db909fa8..9848534cf0 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sin_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sin_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sin_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__sin_fc64_fc64.c index f23efe5edd..482222db29 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sin_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sin_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sin_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__sin_fp32_fp32.c index 810219e655..7f0d87eb8c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sin_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sin_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sin_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__sin_fp64_fp64.c index 31b7a4c4e0..2231e874f9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sin_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sin_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sinh_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__sinh_fc32_fc32.c index eb76bc26ee..6121b1ad19 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sinh_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sinh_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sinh_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__sinh_fc64_fc64.c index 34a47b2142..cd274ebca1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sinh_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sinh_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sinh_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__sinh_fp32_fp32.c index 2d7cc15b54..7dd56ef824 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sinh_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sinh_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sinh_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__sinh_fp64_fp64.c index 6f35bfd31a..357d40bc2e 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sinh_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sinh_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sqrt_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__sqrt_fc32_fc32.c index de5bd87be2..0c4d3a5437 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sqrt_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sqrt_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sqrt_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__sqrt_fc64_fc64.c index 3831aa6083..23cc6cd4e2 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sqrt_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sqrt_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sqrt_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__sqrt_fp32_fp32.c index e4067b1a8b..a49798f90c 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sqrt_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sqrt_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__sqrt_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__sqrt_fp64_fp64.c index fd247ead8d..4c5131e0ba 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__sqrt_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__sqrt_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tan_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__tan_fc32_fc32.c index 2efb3254a7..59e62a68db 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tan_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tan_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tan_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__tan_fc64_fc64.c index 66fccc18c0..2a6c78ab8a 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tan_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tan_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tan_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__tan_fp32_fp32.c index 5952439a9f..0f6aae4def 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tan_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tan_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tan_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__tan_fp64_fp64.c index bce2c55275..098fcca266 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tan_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tan_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tanh_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__tanh_fc32_fc32.c index 39db3716e3..707adb88ce 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tanh_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tanh_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tanh_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__tanh_fc64_fc64.c index 5d80be7376..d5dca13338 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tanh_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tanh_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tanh_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__tanh_fp32_fp32.c index 5cbb9d5655..fc23c34edd 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tanh_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tanh_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tanh_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__tanh_fp64_fp64.c index 7db4150ad4..ef124bb707 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tanh_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tanh_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tgamma_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__tgamma_fp32_fp32.c index 295394f672..02ff91d3b1 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tgamma_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tgamma_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__tgamma_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__tgamma_fp64_fp64.c index d80ee974b5..182291ebb9 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__tgamma_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__tgamma_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__trunc_fc32_fc32.c b/GraphBLAS/Source/Generated2/GB_unop__trunc_fc32_fc32.c index b273f2a867..755ac6b93d 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__trunc_fc32_fc32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__trunc_fc32_fc32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__trunc_fc64_fc64.c b/GraphBLAS/Source/Generated2/GB_unop__trunc_fc64_fc64.c index 1dbff9034e..f03d26ff54 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__trunc_fc64_fc64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__trunc_fc64_fc64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__trunc_fp32_fp32.c b/GraphBLAS/Source/Generated2/GB_unop__trunc_fp32_fp32.c index 5d4d02f496..cba01061ea 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__trunc_fp32_fp32.c +++ b/GraphBLAS/Source/Generated2/GB_unop__trunc_fp32_fp32.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generated2/GB_unop__trunc_fp64_fp64.c b/GraphBLAS/Source/Generated2/GB_unop__trunc_fp64_fp64.c index d33fb12539..f067eb2358 100644 --- a/GraphBLAS/Source/Generated2/GB_unop__trunc_fp64_fp64.c +++ b/GraphBLAS/Source/Generated2/GB_unop__trunc_fp64_fp64.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/Generator/GB_AxB.c b/GraphBLAS/Source/Generator/GB_AxB.c index d832822d53..690c5fefad 100644 --- a/GraphBLAS/Source/Generator/GB_AxB.c +++ b/GraphBLAS/Source/Generator/GB_AxB.c @@ -12,7 +12,7 @@ #include "GB_dev.h" -ifndef_compact +ifndef_GBCUDA_DEV #include "GB.h" #include "GB_control.h" diff --git a/GraphBLAS/Source/Generator/GB_binop.c b/GraphBLAS/Source/Generator/GB_binop.c index ee4c16ab2b..3cc980f644 100644 --- a/GraphBLAS/Source/Generator/GB_binop.c +++ b/GraphBLAS/Source/Generator/GB_binop.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_emult.h" #include "GB_control.h" #include "GB_ek_slice.h" diff --git a/GraphBLAS/Source/Generator/GB_red.c b/GraphBLAS/Source/Generator/GB_red.c index c1489ce983..d10c9a2b20 100644 --- a/GraphBLAS/Source/Generator/GB_red.c +++ b/GraphBLAS/Source/Generator/GB_red.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_atomics.h" #include "GB_control.h" #include "GB_red__include.h" diff --git a/GraphBLAS/Source/Generator/GB_type.c b/GraphBLAS/Source/Generator/GB_type.c index 41fc3db691..f7d1a7916c 100644 --- a/GraphBLAS/Source/Generator/GB_type.c +++ b/GraphBLAS/Source/Generator/GB_type.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_ek_slice.h" #include "GB_type__include.h" diff --git a/GraphBLAS/Source/Generator/GB_unop.c b/GraphBLAS/Source/Generator/GB_unop.c index dc805fabc1..8134fe1dbf 100644 --- a/GraphBLAS/Source/Generator/GB_unop.c +++ b/GraphBLAS/Source/Generator/GB_unop.c @@ -11,7 +11,7 @@ // (it is auto-generated from Generator/*). #include "GB.h" -#ifndef GBCOMPACT +#ifndef GBCUDA_DEV #include "GB_control.h" #include "GB_atomics.h" #include "GB_unop__include.h" diff --git a/GraphBLAS/Source/README.txt b/GraphBLAS/Source/README.txt index d8cead4eb3..475ea6a2d9 100644 --- a/GraphBLAS/Source/README.txt +++ b/GraphBLAS/Source/README.txt @@ -17,5 +17,3 @@ modified then type: in Octave to construct the Generated1/* and Generated2/* files. -When GBCOMPACT is enabled, only the Generated1/* files are needed. - diff --git a/GraphBLAS/Source/codegen_axb_method.m b/GraphBLAS/Source/codegen_axb_method.m index 569eef93a7..e499ec3eb2 100644 --- a/GraphBLAS/Source/codegen_axb_method.m +++ b/GraphBLAS/Source/codegen_axb_method.m @@ -46,12 +46,12 @@ function codegen_axb_method (addop, multop, add, addfunc, mult, ztype, ... terminal = 'break' ; omp_atomic = 1 ; omp_microsoft_atomic = 0 ; - % the any_pair_iso semiring is never disabled by GBCOMPACT - fprintf (f, 'define(`ifndef_compact'', `#if 1'')\n') ; + % the any_pair_iso semiring is never disabled by GBCUDA_DEV + fprintf (f, 'define(`ifndef_GBCUDA_DEV'', `#if 1'')\n') ; fprintf (f, 'define(`if_not_any_pair_semiring'', `#if 0'')\n') ; else - % all other semirings are disabled by GBCOMPACT - fprintf (f, 'define(`ifndef_compact'', `#ifndef GBCOMPACT'')\n') ; + % all other semirings are disabled by GBCUDA_DEV + fprintf (f, 'define(`ifndef_GBCUDA_DEV'', `#ifndef GBCUDA_DEV'')\n') ; fprintf (f, 'define(`if_not_any_pair_semiring'', `#if 1'')\n') ; end diff --git a/GraphBLAS/Source/codegen_sel.m b/GraphBLAS/Source/codegen_sel.m index e691b3efb3..bacb5510fc 100644 --- a/GraphBLAS/Source/codegen_sel.m +++ b/GraphBLAS/Source/codegen_sel.m @@ -8,6 +8,7 @@ % SPDX-License-Identifier: Apache-2.0 fprintf ('\nselection operators:\n') ; +addpath ('../Test') ; f = fopen ('Generated1/GB_sel__include.h', 'w') ; fprintf (f, '//------------------------------------------------------------------------------\n') ; diff --git a/GraphBLAS/Tcov/log_Mar14_2022.txt b/GraphBLAS/Tcov/log_Mar14_2022.txt new file mode 100644 index 0000000000..6d723af28d --- /dev/null +++ b/GraphBLAS/Tcov/log_Mar14_2022.txt @@ -0,0 +1,145 @@ + +---------------------------------------------- [malloc] [cover] +14-Mar 16:15:26 test243 15.9 sec 206: 19612 of 19818 1.0% 12.92/sec +14-Mar 16:15:56 test242 29.3 sec 309: 19303 of 19818 2.6% 10.54/sec +14-Mar 16:15:56 test241 0.3 sec 144: 19159 of 19818 3.3% 421.22/sec +14-Mar 16:17:10 testca 73.6 sec 497: 18662 of 19818 5.8% 6.75/sec +14-Mar 16:17:10 test240 0.4 sec 19: 18643 of 19818 5.9% 45.82/sec +14-Mar 16:17:10 test240 0.2 sec 5: 18638 of 19818 6.0% 27.53/sec +14-Mar 16:18:39 testca 88.5 sec 12: 18626 of 19818 6.0% 0.14/sec +14-Mar 16:18:50 test238 11.0 sec 161: 18465 of 19818 6.8% 14.58/sec +14-Mar 16:18:51 test237 0.9 sec 3: 18462 of 19818 6.8% 3.19/sec +14-Mar 16:18:54 test236 3.3 sec 109: 18353 of 19818 7.4% 32.86/sec +14-Mar 16:18:58 test192 4.1 sec 46: 18307 of 19818 7.6% 11.16/sec +14-Mar 16:19:08 test191 9.8 sec 63: 18244 of 19818 7.9% 6.45/sec +14-Mar 16:19:51 test188 42.7 sec 348: 17896 of 19818 9.7% 8.14/sec +14-Mar 16:19:58 test187 7.0 sec 20: 17876 of 19818 9.8% 2.86/sec +14-Mar 16:19:58 test186 0.4 sec 50: 17826 of 19818 10.1% 142.60/sec +14-Mar 16:19:58 test186 0.3 sec 10: 17816 of 19818 10.1% 36.32/sec +14-Mar 16:21:36 test185 97.4 sec 40: 17776 of 19818 10.3% 0.41/sec +14-Mar 16:21:39 test184 3.4 sec 51: 17725 of 19818 10.6% 14.91/sec +14-Mar 16:21:57 test181 17.8 sec 102: 17623 of 19818 11.1% 5.73/sec +14-Mar 16:22:04 test180 7.4 sec 213: 17410 of 19818 12.2% 28.82/sec +14-Mar 16:22:26 test180 22.1 sec 11: 17399 of 19818 12.2% 0.50/sec +14-Mar 16:22:27 test150 0.2 sec 41: 17358 of 19818 12.4% 167.74/sec +14-Mar 16:22:43 test14 15.8 sec 710: 16648 of 19818 16.0% 44.89/sec +14-Mar 16:24:24 test154 101.6 sec 1906: 14742 of 19818 25.6% 18.76/sec +14-Mar 16:24:54 test151b 29.4 sec 235: 14507 of 19818 26.8% 8.00/sec +14-Mar 16:24:54 test239 0.0 sec 14: 14493 of 19818 26.9% 508.00/sec +14-Mar 16:34:33 test74 579.7 sec 5982: 8511 of 19818 57.1% 10.32/sec +14-Mar 16:34:33 test235 0.0 sec 4: 8507 of 19818 57.1% 107.22/sec +14-Mar 16:35:55 test234 81.7 sec 454: 8053 of 19818 59.4% 5.56/sec +14-Mar 16:36:03 test233 7.6 sec 3: 8050 of 19818 59.4% 0.39/sec +14-Mar 16:36:04 test232 1.1 sec 29: 8021 of 19818 59.5% 26.63/sec +14-Mar 16:42:15 test231 371.7 sec 701: 7320 of 19818 63.1% 1.89/sec +14-Mar 16:43:30 test230 74.6 sec 118: 7202 of 19818 63.7% 1.58/sec +14-Mar 16:43:31 test229 0.8 sec 10: 7192 of 19818 63.7% 12.15/sec +14-Mar 16:43:36 test228 5.3 sec 46: 7146 of 19818 63.9% 8.71/sec +14-Mar 16:43:42 test227 5.4 sec 38: 7108 of 19818 64.1% 7.10/sec +14-Mar 16:43:42 test226 0.0 sec 6: 7102 of 19818 64.2% 454.42/sec +14-Mar 16:43:42 test225 0.2 sec 4: 7098 of 19818 64.2% 22.37/sec +14-Mar 16:43:47 test224 5.3 sec 73: 7025 of 19818 64.6% 13.77/sec +14-Mar 16:43:47 test223 0.0 sec 2: 7023 of 19818 64.6% 87.58/sec +14-Mar 16:43:47 test222 0.1 sec 11: 7012 of 19818 64.6% 80.55/sec +14-Mar 16:43:47 test221 0.0 sec 2: 7010 of 19818 64.6% 238.02/sec +14-Mar 16:43:47 test220 0.0 sec 5: 7005 of 19818 64.7% 167.92/sec +14-Mar 16:43:47 test219 0.0 sec 4: 7001 of 19818 64.7% 486.32/sec +14-Mar 16:43:47 test217 0.0 sec 4: 6997 of 19818 64.7% 206.64/sec +14-Mar 16:43:48 test216 0.1 sec 11: 6986 of 19818 64.7% 79.25/sec +14-Mar 16:43:50 test215 2.6 sec 1: 6985 of 19818 64.8% 0.38/sec +14-Mar 16:43:50 test214 0.0 sec 1: 6984 of 19818 64.8% 93.66/sec +14-Mar 16:43:50 test213 0.0 sec 5: 6979 of 19818 64.8% 528.74/sec +14-Mar 16:43:50 test212 0.1 sec 4: 6975 of 19818 64.8% 26.94/sec +14-Mar 16:43:50 test211 0.0 sec 12: 6963 of 19818 64.9% 610.16/sec +14-Mar 16:43:50 test210 0.0 sec 2: 6961 of 19818 64.9% 480.40/sec +14-Mar 16:43:55 test209 4.2 sec 24: 6937 of 19818 65.0% 5.78/sec +14-Mar 16:43:55 test208 0.0 sec 5: 6932 of 19818 65.0% 283.46/sec +14-Mar 16:43:55 test207 0.1 sec 9: 6923 of 19818 65.1% 66.06/sec +14-Mar 16:43:57 test206 2.4 sec 12: 6911 of 19818 65.1% 5.05/sec +14-Mar 16:43:57 test204 0.2 sec 10: 6901 of 19818 65.2% 40.12/sec +14-Mar 16:43:57 test203 0.0 sec 7: 6894 of 19818 65.2% 1302.37/sec +14-Mar 16:43:57 test202 0.0 sec 8: 6886 of 19818 65.3% 874.01/sec +14-Mar 16:43:57 test201 0.0 sec 7: 6879 of 19818 65.3% 986.75/sec +14-Mar 16:44:00 test200 2.1 sec 7: 6872 of 19818 65.3% 3.29/sec +14-Mar 16:44:00 test199 0.0 sec 1: 6871 of 19818 65.3% 198.28/sec +14-Mar 16:44:00 test198 0.1 sec 4: 6867 of 19818 65.3% 30.57/sec +14-Mar 16:44:00 test197 0.4 sec 1: 6866 of 19818 65.4% 2.25/sec +14-Mar 16:44:02 test196 1.6 sec 15: 6851 of 19818 65.4% 9.24/sec +14-Mar 16:46:03 test195 120.9 sec 79: 6772 of 19818 65.8% 0.65/sec +14-Mar 16:47:06 test194 63.5 sec 124: 6648 of 19818 66.5% 1.95/sec +14-Mar 16:47:23 test193 17.3 sec 6: 6642 of 19818 66.5% 0.35/sec +14-Mar 16:47:30 test189 7.0 sec 10: 6632 of 19818 66.5% 1.43/sec +14-Mar 16:47:31 test183 0.0 sec 4: 6628 of 19818 66.6% 181.40/sec +14-Mar 16:47:32 test182 1.2 sec 9: 6619 of 19818 66.6% 7.44/sec +14-Mar 16:47:32 test179 0.1 sec 18: 6601 of 19818 66.7% 292.62/sec +14-Mar 16:47:32 test165 0.0 sec 3: 6598 of 19818 66.7% 459.59/sec +14-Mar 16:47:33 test01 1.4 sec 759: 5839 of 19818 70.5% 552.66/sec +14-Mar 16:47:33 test07b 0.0 sec 2: 5837 of 19818 70.5% 188.57/sec +14-Mar 16:47:33 test83 0.0 sec 1: 5836 of 19818 70.6% 203.49/sec +14-Mar 16:47:33 test176 0.2 sec 7: 5829 of 19818 70.6% 38.73/sec +14-Mar 16:47:33 test174 0.0 sec 9: 5820 of 19818 70.6% 271.35/sec +14-Mar 16:47:34 test170 0.1 sec 1: 5819 of 19818 70.6% 7.67/sec +14-Mar 16:47:35 test152 1.0 sec 405: 5414 of 19818 72.7% 394.35/sec +14-Mar 16:47:35 test155 0.2 sec 13: 5401 of 19818 72.7% 60.64/sec +14-Mar 16:47:36 test156 0.7 sec 2: 5399 of 19818 72.8% 2.72/sec +14-Mar 16:47:36 test136 0.0 sec 21: 5378 of 19818 72.9% 495.89/sec +14-Mar 16:47:36 test02 0.3 sec 133: 5245 of 19818 73.5% 456.18/sec +14-Mar 16:47:36 test109 0.1 sec 2: 5243 of 19818 73.5% 14.16/sec +14-Mar 16:47:36 test109 0.0 sec 1: 5242 of 19818 73.5% 456.79/sec +14-Mar 16:47:36 test04 0.0 sec 8: 5234 of 19818 73.6% 289.51/sec +14-Mar 16:47:44 test142 7.7 sec 627: 4607 of 19818 76.8% 81.33/sec +14-Mar 16:47:44 test162 0.1 sec 1: 4606 of 19818 76.8% 13.21/sec +14-Mar 16:47:44 test161 0.2 sec 1: 4605 of 19818 76.8% 6.03/sec +14-Mar 16:47:45 test159 1.4 sec 23: 4582 of 19818 76.9% 16.47/sec +14-Mar 16:47:46 test137 0.3 sec 10: 4572 of 19818 76.9% 34.66/sec +14-Mar 16:47:46 test139 0.5 sec 2: 4570 of 19818 76.9% 4.36/sec +14-Mar 16:47:46 test09 0.0 sec 1: 4569 of 19818 76.9% 53.88/sec +14-Mar 16:47:46 test132 0.0 sec 1: 4568 of 19818 77.0% 55.35/sec +14-Mar 16:47:50 test141 3.9 sec 110: 4458 of 19818 77.5% 28.07/sec +14-Mar 16:47:51 test144 0.7 sec 1: 4457 of 19818 77.5% 1.54/sec +14-Mar 16:47:51 test145 0.3 sec 5: 4452 of 19818 77.5% 17.57/sec +14-Mar 16:47:51 test92 0.1 sec 4: 4448 of 19818 77.6% 31.02/sec +14-Mar 16:47:52 test108 0.4 sec 2: 4446 of 19818 77.6% 5.47/sec +14-Mar 16:47:52 test172 0.2 sec 3: 4443 of 19818 77.6% 17.97/sec +14-Mar 16:47:53 test148 0.8 sec 7: 4436 of 19818 77.6% 8.57/sec +14-Mar 16:47:53 testc2(1) 0.6 sec 6: 4430 of 19818 77.6% 10.89/sec +14-Mar 16:47:55 test173 1.8 sec 11: 4419 of 19818 77.7% 6.14/sec +14-Mar 16:47:56 test157 0.8 sec 13: 4406 of 19818 77.8% 16.15/sec +14-Mar 16:48:10 test29 14.2 sec 3: 4403 of 19818 77.8% 0.21/sec +14-Mar 16:48:10 test128 0.3 sec 15: 4388 of 19818 77.9% 43.67/sec +14-Mar 16:48:45 test125 34.7 sec 639: 3749 of 19818 81.1% 18.42/sec +14-Mar 16:48:45 test82 0.1 sec 5: 3744 of 19818 81.1% 57.91/sec +14-Mar 16:49:01 test158 15.3 sec 19: 3725 of 19818 81.2% 1.24/sec +14-Mar 16:49:02 test84 1.9 sec 19: 3706 of 19818 81.3% 9.75/sec +14-Mar 16:49:04 test130 1.4 sec 18: 3688 of 19818 81.4% 12.87/sec +14-Mar 16:49:11 test19b 6.7 sec 44: 3644 of 19818 81.6% 6.57/sec +14-Mar 16:49:14 test19b 3.5 sec 5: 3639 of 19818 81.6% 1.42/sec +14-Mar 16:49:15 test133 0.5 sec 2: 3637 of 19818 81.6% 3.72/sec +14-Mar 16:49:18 test80 3.5 sec 2: 3635 of 19818 81.7% 0.56/sec +14-Mar 16:49:38 test151 19.7 sec 74: 3561 of 19818 82.0% 3.75/sec +14-Mar 16:49:38 test124 0.2 sec 3: 3558 of 19818 82.0% 13.92/sec +14-Mar 16:49:50 test23 12.3 sec 88: 3470 of 19818 82.5% 7.15/sec +14-Mar 16:50:01 test175 10.0 sec 1: 3469 of 19818 82.5% 0.10/sec +14-Mar 16:51:05 test160 64.2 sec 16: 3453 of 19818 82.6% 0.25/sec +14-Mar 16:52:16 test160 71.2 sec 3: 3450 of 19818 82.6% 0.04/sec +14-Mar 16:52:30 test54 13.9 sec 20: 3430 of 19818 82.7% 1.44/sec +14-Mar 16:52:50 test104 20.3 sec 38: 3392 of 19818 82.9% 1.87/sec +14-Mar 16:52:55 test11 4.6 sec 3: 3389 of 19818 82.9% 0.65/sec +14-Mar 16:52:56 test129 1.3 sec 1: 3388 of 19818 82.9% 0.77/sec +14-Mar 16:52:56 test138 0.1 sec 1: 3387 of 19818 82.9% 7.22/sec +14-Mar 16:57:47 test127 290.7 sec 1613: 1774 of 19818 91.0% 5.55/sec +14-Mar 16:58:00 test76 12.9 sec 15: 1759 of 19818 91.1% 1.16/sec +14-Mar 16:58:01 test107 1.4 sec 3: 1756 of 19818 91.1% 2.09/sec +14-Mar 16:58:06 test69 5.0 sec 2: 1754 of 19818 91.1% 0.40/sec +14-Mar 16:58:08 test135 1.3 sec 4: 1750 of 19818 91.2% 3.12/sec +14-Mar 16:58:39 test17 31.4 sec 29: 1721 of 19818 91.3% 0.92/sec +14-Mar 16:59:03 test53 23.7 sec 4: 1717 of 19818 91.3% 0.17/sec +14-Mar 17:01:29 test19 146.0 sec 12: 1705 of 19818 91.4% 0.08/sec +[malloc debugging turned off] +14-Mar 17:10:51 test10 561.9 sec 784: 921 of 19818 95.4% 1.40/sec +14-Mar 17:15:13 test75b 262.0 sec 870: 51 of 19818 99.7% 3.32/sec +14-Mar 17:18:05 test16 172.0 sec 8: 43 of 19818 99.8% 0.05/sec +14-Mar 17:19:34 test81 89.3 sec 6: 37 of 19818 99.8% 0.07/sec +14-Mar 17:20:34 test21b 60.1 sec 21: 16 of 19818 99.9% 0.35/sec +14-Mar 17:25:02 test18 268.2 sec 16: all 19818 full 100% 0.06/sec +[malloc debugging turned back on] diff --git a/GraphBLAS/Test/GB_mex_debug.c b/GraphBLAS/Test/GB_mex_debug.c index 25e9c0a38b..36140ff5c1 100644 --- a/GraphBLAS/Test/GB_mex_debug.c +++ b/GraphBLAS/Test/GB_mex_debug.c @@ -44,11 +44,9 @@ void mexFunction pargout [0] = mxCreateDoubleScalar (0) ; #endif - #ifdef GBCOMPACT - if (pr) printf ("GBCOMPACT: enabled: fast compile but slow C=A*B\n") ; - pargout [1] = mxCreateDoubleScalar (1) ; + #ifdef GBCUDA_DEV + #error "CUDA development not yet enabled for @GrB interface" #else - if (pr) printf ("GBCOMPACT: normal: slow compile but fast C=A*B\n") ; pargout [1] = mxCreateDoubleScalar (0) ; #endif diff --git a/GraphBLAS/alternative/Makefile b/GraphBLAS/alternative/Makefile index cf856c32b6..213552d1ad 100644 --- a/GraphBLAS/alternative/Makefile +++ b/GraphBLAS/alternative/Makefile @@ -21,7 +21,7 @@ default: library # This version info must match ../CMakeLists.txt VER1 = 6 VER2 = 2 -VER3 = 4 +VER3 = 5 # pick your compiler: CC = gcc @@ -42,9 +42,6 @@ CFLAGS = -fopenmp -fexceptions -fPIC # pick the optimization level: CFLAGS += -O3 # CFLAGS += -g -# to compile GraphBLAS as compact (fast to compile, small libgraphblas.so, -# but slow at run time), uncomment this line: -# CFLAGS += -DGBCOMPACT=1 ifneq ($(CC),c++) CFLAGS += -std=c11 endif diff --git a/Makefile b/Makefile index 632da0091c..ed72269398 100644 --- a/Makefile +++ b/Makefile @@ -301,6 +301,12 @@ gbinstall: gb echo $(CMAKE_OPTIONS) ( cd GraphBLAS && $(MAKE) JOBS=$(JOBS) CMAKE_OPTIONS='$(CMAKE_OPTIONS)' install ) +# compile and install GraphBLAS libgraphblas_renamed, for MATLAB +gbrenamed: + echo $(CMAKE_OPTIONS) + ( cd GraphBLAS/GraphBLAS && $(MAKE) JOBS=$(JOBS) CMAKE_OPTIONS='$(CMAKE_OPTIONS)' ) + ( cd GraphBLAS/GraphBLAS && $(MAKE) JOBS=$(JOBS) CMAKE_OPTIONS='$(CMAKE_OPTIONS)' install ) + # just compile Mongoose mon: ( cd Mongoose && $(MAKE) CMAKE_OPTIONS='$(CMAKE_OPTIONS)' ) diff --git a/README.md b/README.md index f40e148243..72c65535b6 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ SuiteSparse: A Suite of Sparse matrix packages at http://suitesparse.com ----------------------------------------------------------------------------- -Mar 11, 2022. SuiteSparse VERSION 5.11.0 +Mar 14, 2022. SuiteSparse VERSION 5.11.0 Now includes GraphBLAS, SLIP_LU, and a new interface to the SuiteSparse Matrix Collection (ssget), via MATLAB and a Java GUI, to @@ -213,6 +213,7 @@ Packages in SuiteSparse, and files in this directory: (not builtin to MATLAB, however). SuiteSparse_install.m install SuiteSparse for MATLAB + SuiteSparse_paths.m set paths for SuiteSparse MATLAB mexFunctions SuiteSparse_test.m exhaustive test for SuiteSparse in MATLAB @@ -278,29 +279,59 @@ METIS 5.0.1 is distributed with SuiteSparse, and is Copyright (c) by George Karypis. Please refer to that package for its License. ----------------------------------------------------------------------------- -QUICK START FOR MATLAB USERS (Linux, Mac, or Windows): +QUICK START FOR MATLAB USERS (Linux or Mac): ----------------------------------------------------------------------------- Uncompress the SuiteSparse.zip or SuiteSparse.tar.gz archive file (they contain -the same thing). Next, compile the GraphBLAS library (see instructions in -GraphBLAS/Doc). Then in the MATLAB Command Window, cd to the SuiteSparse -directory and type SuiteSparse_install. All packages will be compiled, and -several demos will be run. To run a (long!) exhaustive test, do -SuiteSparse_test. +the same thing). Suppose you place SuiteSparse in the /home/me/SuiteSparse +folder. + +Add the SuiteSparse/lib folder to your run-time library path. On Linux, add +this to your ~/.bashrc script, assuming /home/me/SuiteSparse is the location of +your copy of SuiteSparse: + + LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/me/SuiteSparse/lib + export LD_LIBRARY_PATH + +For the Mac, use this instead, in your ~/.zshrc script, assuming you place +SuiteSparse in /Users/me/SuiteSparse: + + DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/Users/me/SuiteSparse/lib + export DYLD_LIBRARY_PATH + +Next, compile the GraphBLAS library. In the system shell while in the +SuiteSparse folder, type "make gbinstall" if you have MATLAB R2020b or earlier, +or type "make gbrenamed" if you have MATLAB 9.10 (R2021a) or later. + +Then in the MATLAB Command Window, cd to the SuiteSparse directory and type +SuiteSparse_install. All packages will be compiled, and several demos will be +run. To run a (long!) exhaustive test, do SuiteSparse_test. + +Save your MATLAB path for future sessions with the MATLAB pathtool or savepath +commands. If those methods fail because you don't have system-wide permission, +add the new paths to your startup.m file, normally in +Documents/MATLAB/startup.m. You can also use the SuiteSparse_paths method to +set all your paths at the start of each MATLAB session. + +For Windows: My apologies, but I don't support Windows so you will need to +revise the above instructions for Windows yourself. ----------------------------------------------------------------------------- QUICK START FOR THE C/C++ LIBRARIES: ----------------------------------------------------------------------------- -For just GraphBLAS, do this: +Type the following in this directory: + + make ; make install - cd GraphBLAS/build ; cmake .. ; make ; cd ../Demo ; ./demo - cd ../build ; sudo make install +or, if want to use GraphBLAS in recent versions of MATLAB, do: -For all other packages, type 'make' in this directory. All libraries will be -created and copied into SuiteSparse/lib. All include files need by the -applications that use SuiteSparse are copied into SuiteSparse/include. All -user documenation is copied into SuiteSparse/share/doc. + make ; make gbrenamed ; make install + +All libraries will be created and copied into SuiteSparse/lib. All include +files need by the applications that use SuiteSparse are copied into +SuiteSparse/include. All user documenation is copied into +SuiteSparse/share/doc. Be sure to first install all required libraries: BLAS and LAPACK for UMFPACK, CHOLMOD, and SPQR, and GMP and MPFR for SLIP_LU. Be sure to use the latest @@ -316,10 +347,10 @@ or to compile just the libraries without running the demos, do: make library Any program that uses SuiteSparse can thus use a simpler rule as compared to -earlier versions of SuiteSparse. If you add /home/myself/SuiteSparse/lib to +earlier versions of SuiteSparse. If you add /home/me/SuiteSparse/lib to your library search patch, you can do the following (for example): - S = /home/myself/SuiteSparse + S = /home/me/SuiteSparse cc myprogram.c -I$(S)/include -lumfpack -lamd -lcholmod -lsuitesparseconfig -lm To change the C and C++ compilers, and to compile in parallel use: @@ -376,6 +407,11 @@ SuiteSparse is in /home/me/SuiteSparse, for example, then add this to your LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/me/SuiteSparse/lib:/my/path export LD_LIBRARY_PATH +For the Mac, use this instead: + + DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/home/me/SuiteSparse/lib:/my/path + export DYLD_LIBRARY_PATH + Then do the following (use "sudo make ..." if needed): make library diff --git a/SuiteSparse_config/SuiteSparse_config.h b/SuiteSparse_config/SuiteSparse_config.h index 6f7c27c269..922add4eda 100644 --- a/SuiteSparse_config/SuiteSparse_config.h +++ b/SuiteSparse_config/SuiteSparse_config.h @@ -202,7 +202,7 @@ int SuiteSparse_version /* returns SUITESPARSE_VERSION */ */ #define SUITESPARSE_HAS_VERSION_FUNCTION -#define SUITESPARSE_DATE "Mar 11, 2022" +#define SUITESPARSE_DATE "Mar 14, 2022" #define SUITESPARSE_VER_CODE(main,sub) ((main) * 1000 + (sub)) #define SUITESPARSE_MAIN_VERSION 5 #define SUITESPARSE_SUB_VERSION 11 diff --git a/SuiteSparse_install.m b/SuiteSparse_install.m index ab70b61ab7..8773932f35 100644 --- a/SuiteSparse_install.m +++ b/SuiteSparse_install.m @@ -45,7 +45,12 @@ function SuiteSparse_install (do_demo) % If you get errors building or using METIS, just remove the metis-5.1.0 % folder. This often occurs on Windows. % -% Copyright 1990-2020, Timothy A. Davis, http://suitesparse.com. +% Before using SuiteSparse_install, you must compile the GraphBLAS library. +% In the system shell while in the SuiteSparse folder, type "make gbinstall" if +% you have MATLAB R2020b or earlier, or type "make gbrenamed" if you have +% MATLAB 9.10 (R2021a) or later. +% +% Copyright 1990-2022, Timothy A. Davis, http://suitesparse.com. % In collaboration with (in alphabetical order): Patrick Amestoy, David % Bateman, Jinhao Chen. Yanqing Chen, Iain Duff, Les Foster, William Hager, % Scott Kolodziej, Chris Lourenco, Stefan Larimore, Erick Moreno-Centeno, diff --git a/SuiteSparse_paths.m b/SuiteSparse_paths.m new file mode 100644 index 0000000000..7800b3dc4e --- /dev/null +++ b/SuiteSparse_paths.m @@ -0,0 +1,90 @@ +function SuiteSparse_paths +%SuiteSparse_paths: adds paths to all SuiteSparse mexFunctions +% A Suite of Sparse matrix packages, authored or co-authored by Tim Davis. +% +% Packages in SuiteSparse: +% +% GraphBLAS graph algorithms via sparse linear algebra (graphblas.org) +% Mongoose graph partitioner +% SLIP_LU solve sparse Ax=b exactly +% UMFPACK sparse LU factorization (multifrontal) +% CHOLMOD sparse Cholesky factorization, and many other operations +% AMD sparse symmetric approximate minimum degree ordering +% COLAMD sparse column approximate minimum degree ordering +% CAMD constrained AMD +% CCOLAMD constrained COLAMD +% CSparse a Concise Sparse matrix package (32-bit or 64-bit, real only) +% CXSparse extended version of CSparse (32-bit/64-bit/real/complex) +% ssget interface to SuiteSparse Matrix Collection +% KLU sparse LU factorization (left-looking) +% BTF permutation to block triangular form (like dmperm) +% LDL sparse LDL' factorization +% SuiteSparseCollection tools for managing the SuiteSparse Matrix Collection +% RBio read/write Rutherford/Boeing files +% SSMULT sparse matrix times sparse matrix +% MESHND 2D and 3D regular mesh generation and nested dissection +% FACTORIZE an object-oriented solver for x=A\b +% SPARSEINV sparse inverse subset; computes entries of inv(sparse(A)) +% MATLAB_Tools various simple m-files and demos +% SuiteSparseQR sparse QR factorization +% spqr_rank MATLAB toolbox for sparse rank deficient matrices +% +% Example: +% SuiteSparse_paths % adds all paths to the SuiteSparse mexFunctions +% +% This method adds the mexFunction paths to all SuiteSparse mexFunctions, and +% can be used at the start of a MATLAB session. The mexFunctions must also be +% installed via SuiteSparse_install. +% +% You must run this m-file while in the SuiteSparse folder containing this +% m-file. +% +% Copyright 1990-2022, Timothy A. Davis, http://suitesparse.com. + +paths = { } ; +SuiteSparse = pwd ; + +paths = add_to_path (paths, SuiteSparse) ; +paths = add_to_path (paths, [SuiteSparse '/UMFPACK/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/CHOLMOD/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/AMD/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/COLAMD/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/CCOLAMD/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/CAMD/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/ssget']) ; +paths = add_to_path (paths, [SuiteSparse '/CXSparse/MATLAB/Demo']) ; +paths = add_to_path (paths, [SuiteSparse '/CXSparse/MATLAB/CSparse']) ; +paths = add_to_path (paths, [SuiteSparse '/LDL/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/BTF/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/KLU/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/SPQR/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/RBio/RBio']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/Factorize']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/MESHND']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/LINFACTOR']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/find_components']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/GEE']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/shellgui']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/waitmex']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/spqr_rank']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/spqr_rank/SJget']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/SuiteSparseCollection']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/SSMULT']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/dimacs10']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/spok']) ; +paths = add_to_path (paths, [SuiteSparse '/MATLAB_Tools/sparseinv']) ; +paths = add_to_path (paths, [SuiteSparse '/Mongoose/MATLAB']) ; +paths = add_to_path (paths, [SuiteSparse '/GraphBLAS/GraphBLAS']) ; +paths = add_to_path (paths, [SuiteSparse '/SLIP_LU/MATLAB']) ; + +cd (SuiteSparse) + +fprintf ('\nSuiteSparse installed for MATLAB\n') ; + +%------------------------------------------------------------------------------- +function paths = add_to_path (paths, newpath) +% add a path +cd (newpath) ; +addpath (newpath) ; +paths = [paths { newpath } ] ;