File: test192.m

package info (click to toggle)
suitesparse 1%3A5.12.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 176,720 kB
  • sloc: ansic: 1,193,914; cpp: 31,704; makefile: 6,638; fortran: 1,927; java: 1,826; csh: 765; ruby: 725; sh: 529; python: 333; perl: 225; sed: 164; awk: 35
file content (46 lines) | stat: -rw-r--r-- 1,016 bytes parent folder | download | duplicates (3)
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
function test192
%TEST192 test GrB_assign C<C,struct>=scalar

% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
% SPDX-License-Identifier: Apache-2.0

[~, ~, ~, types, ~, ~] = GB_spec_opsall ;
types = types.all ;

m = 10 ;
n = 14 ;

rng ('default') ;

desc.mask = 'structural' ;

for k = 1:length (types)

    ctype = types {k} ;
    fprintf ('%s, ', ctype) ;

    for d = [0.5 inf]

        C = GB_spec_random (m, n, d, 100, ctype) ;

        for k2 = 1:length (types)

            stype = types {k} ;

            S = GB_spec_random (1, 1, inf, 100, stype) ;
            S.matrix = sparse (S.matrix) ;

            for C_sparsity = 1:15
                C.sparsity = C_sparsity ;

                % C<C,struct> = scalar
                C1 = GB_mex_assign_alias_mask_scalar (C, S) ;
                C2 = GB_spec_assign (C, C, [ ], S, [ ], [ ], desc, true) ;
                GB_spec_compare (C1, C2) ;
            end
        end
    end
end

fprintf ('\ntest192: all tests passed\n') ;