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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
//------------------------------------------------------------------------------
// GB_ew: ewise kernels for each built-in binary operator
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#include "GB_control.h"
#if defined (GxB_NO_UINT32)
#define GB_TYPE_ENABLED 0
#else
#define GB_TYPE_ENABLED 1
#endif
#if GB_TYPE_ENABLED
#include "GB.h"
#include "emult/GB_emult.h"
#include "assign/GB_bitmap_assign_methods.h"
#include "FactoryKernels/GB_ew__include.h"
// operator:
#define GB_BINOP(z,x,y,i,j) z = 1
#define GB_Z_TYPE uint32_t
#define GB_X_TYPE uint32_t
#define GB_Y_TYPE uint32_t
// A matrix:
#define GB_A_TYPE uint32_t
#define GB_A2TYPE void
#define GB_DECLAREA(aij) uint32_t aij
#define GB_GETA(aij,Ax,pA,A_iso)
// B matrix:
#define GB_B_TYPE uint32_t
#define GB_B2TYPE void
#define GB_DECLAREB(bij) uint32_t bij
#define GB_GETB(bij,Bx,pB,B_iso)
// C matrix:
#define GB_C_TYPE uint32_t
#define GB_Cp_IS_32 Cp_is_32
// disable this operator and use the generic case if these conditions hold
#if (defined(GxB_NO_PAIR) || defined(GxB_NO_UINT32) || defined(GxB_NO_PAIR_UINT32))
#define GB_DISABLE 1
#else
#define GB_DISABLE 0
#endif
#include "ewise/include/GB_ewise_shared_definitions.h"
//------------------------------------------------------------------------------
// C = A+B, all 3 matrices dense
//------------------------------------------------------------------------------
GrB_Info GB (_Cewise_fulln__pair_uint32)
(
GrB_Matrix C,
const GrB_Matrix A,
const GrB_Matrix B,
const int nthreads
)
{
#include "ewise/template/GB_ewise_fulln_template.c"
return (GrB_SUCCESS) ;
}
//------------------------------------------------------------------------------
// eWiseAdd: C=A+B, C<M>=A+B, C<!M>=A+B
//------------------------------------------------------------------------------
GrB_Info GB (_AaddB__pair_uint32)
(
GrB_Matrix C,
const int C_sparsity,
const GrB_Matrix M,
const bool Mask_struct,
const bool Mask_comp,
const GrB_Matrix A,
const GrB_Matrix B,
const bool Ch_is_Mh,
const int64_t *restrict C_to_M,
const int64_t *restrict C_to_A,
const int64_t *restrict C_to_B,
const GB_task_struct *restrict TaskList,
const int C_ntasks,
const int C_nthreads,
const int64_t *restrict M_ek_slicing,
const int M_nthreads,
const int M_ntasks,
const int64_t *restrict A_ek_slicing,
const int A_nthreads,
const int A_ntasks,
const int64_t *restrict B_ek_slicing,
const int B_nthreads,
const int B_ntasks
)
{
#if GB_DISABLE
return (GrB_NO_VALUE) ;
#else
#define GB_IS_EWISEUNION 0
// for the "easy mask" condition:
bool M_is_A = GB_all_aliased (M, A) ;
bool M_is_B = GB_all_aliased (M, B) ;
#include "add/template/GB_add_template.c"
return (GrB_SUCCESS) ;
#endif
}
//------------------------------------------------------------------------------
// eWiseUnion: C=A+B, C<M>=A+B, C<!M>=A+B
//------------------------------------------------------------------------------
#else
GB_EMPTY_PLACEHOLDER
#endif
|