//------------------------------------------------------------------------------ // GB_bitmap_assign_notM_accum: assign to C bitmap //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2023, All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 //------------------------------------------------------------------------------ // C(I,J) += A assign // C(I,J) += A subassign // C(I,J) += A assign // C(I,J) += A subassign //------------------------------------------------------------------------------ // C: bitmap // M: present, hypersparse or sparse (not bitmap or full) // Mask_comp: true // Mask_struct: true or false // C_replace: true or false // accum: present // A: matrix (hyper, sparse, bitmap, or full), or scalar // kind: assign, row assign, col assign, or subassign // JIT: needed. #include "GB_bitmap_assign_methods.h" #include "GB_assign_shared_definitions.h" #undef GB_FREE_ALL #define GB_FREE_ALL \ { \ GB_WERK_POP (M_ek_slicing, int64_t) ; \ } GrB_Info GB_bitmap_assign_notM_accum ( // input/output: GrB_Matrix C, // input/output matrix in bitmap format // inputs: const bool C_replace, // descriptor for C const GrB_Index *I, // I index list const int64_t nI, const int Ikind, const int64_t Icolon [3], const GrB_Index *J, // J index list const int64_t nJ, const int Jkind, const int64_t Jcolon [3], const GrB_Matrix M, // mask matrix // const bool Mask_comp, // true here, for !M only const bool Mask_struct, // true if M is structural, false if valued const GrB_BinaryOp accum, // present const GrB_Matrix A, // input matrix, not transposed const void *scalar, // input scalar const GrB_Type scalar_type, // type of input scalar const int assign_kind, // row assign, col assign, assign, or subassign GB_Werk Werk ) { //-------------------------------------------------------------------------- // check inputs //-------------------------------------------------------------------------- GBURBLE_BITMAP_ASSIGN ("bit7", M, true, accum, Ikind, Jkind, assign_kind) ; ASSERT (GB_IS_HYPERSPARSE (M) || GB_IS_SPARSE (M)) ; ASSERT_MATRIX_OK (C, "C for bitmap assign, !M, accum", GB0) ; ASSERT_MATRIX_OK (M, "M for bitmap assign, !M, accum", GB0) ; ASSERT_MATRIX_OK_OR_NULL (A, "A for bitmap assign, !M, accum", GB0) ; //-------------------------------------------------------------------------- // get inputs //-------------------------------------------------------------------------- GB_GET_C_BITMAP ; // C must be bitmap GB_SLICE_M GB_GET_A_AND_SCALAR GB_GET_ACCUM_FOR_BITMAP //-------------------------------------------------------------------------- // scatter the mask M into C //-------------------------------------------------------------------------- // Cb [pC] += 2 for each entry M(i,j) in the mask GB_bitmap_M_scatter (C, I, nI, Ikind, Icolon, J, nJ, Jkind, Jcolon, M, Mask_struct, assign_kind, GB_BITMAP_M_SCATTER_PLUS_2, M_ek_slicing, M_ntasks, M_nthreads) ; //-------------------------------------------------------------------------- // do the assignment //-------------------------------------------------------------------------- if (A == NULL) { //---------------------------------------------------------------------- // scalar assignment: C(I,J) += scalar //---------------------------------------------------------------------- // for all IxJ #define GB_IXJ_WORK(pC,ignore) \ { \ int8_t cb = Cb [pC] ; \ if (cb == 0) \ { \ /* Cx [pC] = scalar */ \ GB_COPY_scalar_to_C (Cx, pC, cwork) ; \ Cb [pC] = 1 ; \ task_cnvals++ ; \ } \ else if (cb == 1) \ { \ /* Cx [pC] += scalar */ \ GB_ACCUMULATE_scalar (Cx, pC, ywork) ; \ } \ } #include "GB_bitmap_assign_IxJ_template.c" } else { //---------------------------------------------------------------------- // matrix assignment: C(I,J) += A //---------------------------------------------------------------------- // for all entries aij in A (A can be hyper, sparse, bitmap, or full) // if Cb(p) == 0 // Cx(p) = aij // Cb(p) = 1 // C(iC,jC) is now present, insert // task_cnvals++ // if Cb(p) == 1 // Cx(p) += aij // C(iC,jC) still present, updated // Cb(p) still 1 // if Cb(p) == 2 // do nothing // if Cb(p) == 3 // do nothing #define GB_AIJ_WORK(pC,pA) \ { \ int8_t cb = Cb [pC] ; \ if (cb == 0) \ { \ /* Cx [pC] = Ax [pA] */ \ GB_COPY_aij_to_C (Cx, pC, Ax, pA, A_iso, cwork) ; \ Cb [pC] = 1 ; \ task_cnvals++ ; \ } \ else if (cb == 1) \ { \ /* Cx [pC] += Ax [pA] */ \ GB_ACCUMULATE_aij (Cx, pC, Ax, pA, A_iso, ywork) ; \ } \ } #include "GB_bitmap_assign_A_template.c" } //-------------------------------------------------------------------------- // clear M from C and handle the C_replace phase //-------------------------------------------------------------------------- if (!C_replace) { // for each entry mij == 1 // 2 -> 0 // 3 -> 1 keep this entry // Cb [pC] -= 2 for each entry M(i,j) in the mask GB_bitmap_M_scatter (C, I, nI, Ikind, Icolon, J, nJ, Jkind, Jcolon, M, Mask_struct, assign_kind, GB_BITMAP_M_SCATTER_MINUS_2, M_ek_slicing, M_ntasks, M_nthreads) ; } else { // for each entry mij == 1 // 2 -> 0 // 3 -> 0 delete this entry #undef GB_MASK_WORK #define GB_MASK_WORK(pC) \ { \ int8_t cb = Cb [pC] ; \ task_cnvals -= (cb == 3) ; \ Cb [pC] = 0 ; \ } #include "GB_bitmap_assign_M_template.c" } //-------------------------------------------------------------------------- // free workspace and return result //-------------------------------------------------------------------------- C->nvals = cnvals ; GB_FREE_ALL ; ASSERT_MATRIX_OK (C, "final C for bitmap assign, !M, accum", GB0) ; return (GrB_SUCCESS) ; }