1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
//------------------------------------------------------------------------------
// GB_select_shared_definitions.h: common macros for select kernels
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
// GB_select_shared_definitions.h provides default definitions for all select
// kernels, if the special cases have not been #define'd prior to #include'ing
// this file. This file is shared by generic, factory, and both CPU and
// CUDA JIT kernels.
#include "include/GB_kernel_shared_definitions.h"
#include "include/GB_unused.h"
#ifndef GB_SELECT_SHARED_DEFINITIONS_H
#define GB_SELECT_SHARED_DEFINITIONS_H
// 1 if C is iso
#ifndef GB_ISO_SELECT
#define GB_ISO_SELECT 0
#endif
#endif
|