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
|
//------------------------------------------------------------------------------
// GB_subassign_07: C(I,J)<M> += scalar ; no S
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
// Method 07: C(I,J)<M> += scalar ; no S
// M: present
// Mask_struct: true or false
// Mask_comp: false
// C_replace: false
// accum: present
// A: scalar
// S: none
// C: not bitmap
// M: any sparsity
#include "assign/GB_subassign_methods.h"
#include "jitifyer/GB_stringify.h"
#define GB_FREE_ALL ;
GrB_Info GB_subassign_07
(
GrB_Matrix C,
// input:
#define C_replace false
const void *I, // I index list
const bool I_is_32,
const int64_t ni,
const int64_t nI,
const int Ikind,
const int64_t Icolon [3],
const void *J, // J index list
const bool J_is_32,
const int64_t nj,
const int64_t nJ,
const int Jkind,
const int64_t Jcolon [3],
const GrB_Matrix M,
#define Mask_comp false
const bool Mask_struct,
const GrB_BinaryOp accum,
#define A NULL
const void *scalar,
const GrB_Type scalar_type,
#define assign_kind GB_SUBASSIGN
GB_Werk Werk
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GrB_Info info ;
GrB_Matrix S = NULL ; // not constructed
ASSERT (!GB_IS_BITMAP (C)) ;
ASSERT (!GB_any_aliased (C, M)) ; // NO ALIAS of C==M
GB_UNJUMBLE (C) ;
GB_UNJUMBLE (M) ;
//--------------------------------------------------------------------------
// via the JIT or PreJIT kernel
//--------------------------------------------------------------------------
info = GB_subassign_jit (C,
/* C_replace: */ false,
I, I_is_32, ni, nI, Ikind, Icolon,
J, J_is_32, nj, nJ, Jkind, Jcolon,
M,
/* Mask_comp: */ false,
Mask_struct,
accum,
/* A: */ NULL,
scalar, scalar_type,
/* S: */ NULL,
GB_SUBASSIGN, GB_JIT_KERNEL_SUBASSIGN_07, "subassign_07",
Werk) ;
if (info != GrB_NO_VALUE)
{
return (info) ;
}
//--------------------------------------------------------------------------
// via the generic kernel
//--------------------------------------------------------------------------
GB_IDECL (I, const, u) ; GB_IPTR (I, I_is_32) ;
GB_IDECL (J, const, u) ; GB_IPTR (J, J_is_32) ;
GBURBLE ("(generic assign) ") ;
#define GB_GENERIC
#define GB_SCALAR_ASSIGN 1
#include "assign/include/GB_assign_shared_definitions.h"
#include "assign/template/GB_subassign_07_template.c"
}
|