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
|
//------------------------------------------------------------------------------
// GB_concat_bitmap_template: concatenate a tile into a bitmap matrix
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
{
//--------------------------------------------------------------------------
// get C (bitmap) and the tile A (any sparsity)
//--------------------------------------------------------------------------
ASSERT (GB_IS_BITMAP (C)) ;
#ifdef GB_JIT_KERNEL
const int64_t avdim = A->vdim ;
const int64_t avlen = A->vlen ;
const int64_t cvlen = C->vlen ;
const int64_t anz = avlen * avdim ;
#endif
#ifndef GB_ISO_CONCAT
const GB_A_TYPE *restrict Ax = (GB_A_TYPE *) A->x ;
GB_C_TYPE *restrict Cx = (GB_C_TYPE *) C->x ;
#ifdef GB_JIT_KERNEL
#define A_iso GB_A_ISO
#else
const bool A_iso = A->iso ;
#endif
#endif
int8_t *restrict Cb = C->b ;
//--------------------------------------------------------------------------
// copy the tile A into C
//--------------------------------------------------------------------------
#ifdef GB_JIT_KERNEL
{
#if GB_A_IS_FULL
#include "template/GB_concat_bitmap_full.c"
#elif GB_A_IS_BITMAP
#include "template/GB_concat_bitmap_bitmap.c"
#else
#include "template/GB_concat_bitmap_sparse.c"
#endif
}
#else
{
switch (GB_sparsity (A))
{
case GxB_FULL : // A is full
{
#include "template/GB_concat_bitmap_full.c"
}
break ;
case GxB_BITMAP : // A is bitmap
{
#include "template/GB_concat_bitmap_bitmap.c"
}
break ;
default : // A is sparse or hypersparse
{
#include "template/GB_concat_bitmap_sparse.c"
}
break ;
}
}
#endif
}
#undef GB_C_TYPE
#undef GB_A_TYPE
#undef GB_ISO_CONCAT
|