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
|
//------------------------------------------------------------------------------
// GB_emult_02_template: C = A.*B when A is sparse/hyper and B is bitmap/full
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
// C is sparse, with the same sparsity structure as A. No mask is present, or
// M is bitmap/full. A is sparse/hyper, and B is bitmap/full.
{
//--------------------------------------------------------------------------
// get A, B, and C
//--------------------------------------------------------------------------
GB_Ap_DECLARE (Ap, const) ; GB_Ap_PTR (Ap, A) ;
GB_Ah_DECLARE (Ah, const) ; GB_Ah_PTR (Ah, A) ;
GB_Ai_DECLARE (Ai, const) ; GB_Ai_PTR (Ai, A) ;
const int64_t vlen = A->vlen ;
const int8_t *restrict Bb = B->b ;
const int64_t *restrict kfirst_Aslice = A_ek_slicing ;
const int64_t *restrict klast_Aslice = A_ek_slicing + A_ntasks ;
const int64_t *restrict pstart_Aslice = A_ek_slicing + A_ntasks * 2 ;
#ifdef GB_JIT_KERNEL
#define A_iso GB_A_ISO
#define B_iso GB_B_ISO
#else
const bool A_iso = A->iso ;
const bool B_iso = B->iso ;
#endif
#ifdef GB_ISO_EMULT
ASSERT (C->iso) ;
#else
ASSERT (!C->iso) ;
ASSERT (!(A_iso && B_iso)) ; // one of A or B can be iso, but not both
const GB_A_TYPE *restrict Ax = (GB_A_TYPE *) A->x ;
const GB_B_TYPE *restrict Bx = (GB_B_TYPE *) B->x ;
GB_C_TYPE *restrict Cx = (GB_C_TYPE *) C->x ;
#endif
GB_Cp_DECLARE (Cp, const) ; GB_Cp_PTR (Cp, C) ;
GB_Ci_DECLARE (Ci, ) ; GB_Ci_PTR (Ci, C) ;
#ifdef GB_JIT_KERNEL
#define Mask_comp GB_MASK_COMP
#define Mask_struct GB_MASK_STRUCT
#endif
//--------------------------------------------------------------------------
// C=A.*B or C<#M>=A.*B
//--------------------------------------------------------------------------
#ifdef GB_JIT_KERNEL
#if GB_NO_MASK
{
#if GB_B_IS_BITMAP
{
// C=A.*B, where A is sparse/hyper and B is bitmap
#include "template/GB_emult_02a.c"
}
#else
{
// C=A.*B, where A is sparse/hyper and B is full
#include "template/GB_emult_02b.c"
}
#endif
}
#else
{
// C<#M>=A.*B, where A is sparse/hyper; M and B are bitmap/full
#include "template/GB_emult_02c.c"
}
#endif
#else
if (M == NULL)
{
if (GB_IS_BITMAP (B))
{
// C=A.*B, where A is sparse/hyper and B is bitmap
#include "template/GB_emult_02a.c"
}
else
{
// C=A.*B, where A is sparse/hyper and B is full
#include "template/GB_emult_02b.c"
}
}
else
{
// C<#M>=A.*B, where A is sparse/hyper; M and B are bitmap/full
#include "template/GB_emult_02c.c"
}
#endif
}
|