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
|
function test285
%TEST285 test GrB_assign (bitmap case, C<!M>+=A, whole matrix)
% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
% SPDX-License-Identifier: Apache-2.0
% tests GB_bitmap_assign_7_whole
rng ('default') ;
desc.mask = 'complement' ;
accum.opname = 'plus' ;
accum.optype = 'double' ;
% I = ":"
I = [ ] ;
I0 = uint64 (I-1) ;
% J = ":"
J = [ ] ;
J0 = uint64 (I-1) ;
A = GB_spec_random (10, 10, 0.2) ;
A.sparsity = 1 ; % sparse
C = GB_spec_random (10, 10, 0.2) ;
C.sparsity = 4 ; % bitmap
M = GB_spec_random (10, 10, 0.2) ;
M.sparsity = 1 ; % sparse
% C<!M>(I,J) = accum (C (I,J),A)
C0 = GB_spec_assign (C, M, accum, A, I, J, desc, false) ;
GB_mex_burble (1) ;
C1 = GB_mex_assign (C, M, accum, A, I0, J0, desc) ;
GB_mex_burble (0) ;
GB_spec_compare (C0, C1) ;
% C<!M>(I,J) = accum (C (I,J),A), with int16 mask matrix M
M.matrix = ceil (M.matrix) ;
M.class = 'int16' ;
C0 = GB_spec_assign (C, M, accum, A, I, J, desc, false) ;
GB_mex_burble (1) ;
C1 = GB_mex_assign (C, M, accum, A, I0, J0, desc) ;
GB_mex_burble (0) ;
GB_spec_compare (C0, C1) ;
% C<!M>(I,J) = accum (C (I,J),A), with int32 mask matrix M
M.matrix = ceil (M.matrix) ;
M.class = 'int32' ;
C0 = GB_spec_assign (C, M, accum, A, I, J, desc, false) ;
GB_mex_burble (1) ;
C1 = GB_mex_assign (C, M, accum, A, I0, J0, desc) ;
GB_mex_burble (0) ;
GB_spec_compare (C0, C1) ;
% C<!M>(I,J) = accum (C (I,J),A), with double complex mask matrix M
M.class = 'double complex' ;
C0 = GB_spec_assign (C, M, accum, A, I, J, desc, false) ;
GB_mex_burble (1) ;
C1 = GB_mex_assign (C, M, accum, A, I0, J0, desc) ;
GB_mex_burble (0) ;
GB_spec_compare (C0, C1) ;
fprintf ('\ntest285: all tests passed\n') ;
|