File: test21.m

package info (click to toggle)
suitesparse-graphblas 7.4.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 67,112 kB
  • sloc: ansic: 1,072,243; cpp: 8,081; sh: 512; makefile: 506; asm: 369; python: 125; awk: 10
file content (201 lines) | stat: -rw-r--r-- 4,408 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
function test21(fulltest)
%TEST21 test GxB_subassign

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

if (nargin < 1)
    % do a short test, by default
    fulltest = 0 ;
end

[binops, ~, ~, types, ~, ~] = GB_spec_opsall ;
accum_ops = binops.all ; 
types = types.real ;

dn = struct ;
dt = struct ( 'inp0', 'tran' ) ;

if (fulltest)
    fprintf ('\ntest21 --------------exhaustive test of GB_mex_subassign\n') ;
    k1test = 0:length(accum_ops) ;
else
    fprintf ('\ntest21 --------------quick test of GB_mex_subassign\n') ;
    k1test = [ 4 0] ; % Was [4 0 2 7] ;
end

% try all accum
for k1 = k1test
    if (k1 == 0)
        accum_op = ''  ;
        ntypes = 1 ;
    else
        accum_op = accum_ops {k1}  ;
        ntypes = length (types) ;
    end
    fprintf ('\naccum: [%s]', accum_op) ;

    if (fulltest)
        k2test = 1:ntypes ;
    else
        k2test = 11 ; % Was [1 2 11] ;
    end

    % try all types
    for k2 = k2test % 1:ntypes
    clear accum
    if (~isempty (accum_op))
        accum_type = types {k2}  ;
        accum.opname = accum_op ;
        accum.optype = accum_type ;
    else
        accum = '' ;
        accum_type = '' ;
    end

    if (GB_spec_is_positional (accum))
        continue ;
    end

    try
        GB_spec_operator (accum) ;
    catch
        continue ;
    end
    fprintf (' %s', accum_type) ;

    rng (k1 * 100 + k2, 'v4') ;

    for Mask_complement = [false true]

    if (Mask_complement)
        dn.mask = 'complement' ;
        dt.mask = 'complement' ;
    else
        dn.mask = 'default' ;
        dt.mask = 'default' ;
    end

    for C_replace = [false true]

    if (C_replace)
        dn.outp = 'replace' ;
        dt.outp = 'replace' ;
    else
        dn.outp = 'default' ;
        dt.outp = 'default' ;
    end

    kk3 = randperm (length (types), 1) ;

    % try all matrix types, to test casting
    for k3 = kk3 % 1:length (types)
    atype = types {k3}  ;

    % try some matrices
    for m = [1 10] % Was [1 5 10 ]
    for n = [1 10] % Was [ 1 5 10 ]
    for sm = [0 1 5] % Was [ 0 1 5 10 ]
    if (sm > m)
        continue
    end
    for sn = [0 1 5] % Was [ 0 1 5 10 ]
    if (sn > n)
        continue
    end
    for scalar = [false true]

    %---------------------------------------


    if (sm == 0)
        I = [ ] ;
        am = m ;
    else
        I = randperm (m,sm) ; % I = I(1:sm);
        am = sm ;
    end
    I0 = uint64 (I-1) ;
    if (sn == 0)
        J = [ ] ;
        an = n ;
    else
        J = randperm (n,sn) ; % J = J(1:sn);
        an = sn ;
    end
    J0 = uint64 (J-1) ;

    fprintf ('.') ;

    for A_is_hyper = 0:1
    for A_is_csc   = 0:1
    for C_is_hyper = 0:1
    for C_is_csc   = 0:1
    for M_is_hyper = 0:1
    for M_is_csc   = 0:1

    if (scalar)
        % test scalar expansion
        % fprintf ('test expansion\n') ;
        A.matrix = sparse (rand (1)) * 100 ;
        A.pattern = sparse (logical (true));
        A.class = atype ;
        if (A_is_hyper || ~A_is_csc)
            continue
        end
    else
        A = GB_spec_random (am,an,0.2,100,atype, A_is_csc, A_is_hyper) ;
    end

    C = GB_spec_random (m,n,0.2,100,atype, C_is_csc, C_is_hyper) ;
    Mask = GB_random_mask (am,an,0.2, M_is_csc, M_is_hyper) ;

    % C(I,J) = accum (C (I,J),A)
    % Mask = [ ] ;

    C0 = GB_spec_subassign (C, [ ], accum, A, I, J, dn, scalar);
    C1 = GB_mex_subassign  (C, [ ], accum, A, I0, J0, dn);
    GB_spec_compare (C0, C1) ;

    % C(I,J)<Mask> = accum (C (I,J),A)
    C0 = GB_spec_subassign (C, Mask, accum, A, I, J, dn, scalar);
    C1 = GB_mex_subassign  (C, Mask, accum, A, I0, J0, dn);
    GB_spec_compare (C0, C1) ;

    %---------------------------------------

    % C(I,J)<Mask> = accum (C(I,J), A');
    % note transposing twice
    clear AT
    AT.matrix  = A.matrix' ;
    AT.pattern = A.pattern' ;
    AT.class = A.class ;

    C0 = GB_spec_subassign (C, [ ], accum, AT, I, J, dt, scalar);
    C1 = GB_mex_subassign  (C, [ ], accum, AT, I0, J0, dt);
    GB_spec_compare (C0, C1) ;

    C0 = GB_spec_subassign (C, Mask, accum, AT, I, J, dt, scalar);
    C1 = GB_mex_subassign  (C, Mask, accum, AT, I0, J0, dt);
    GB_spec_compare (C0, C1) ;

    %---------------------------------------
end
end
end
end
end
end
end
end
end
end
end
end
end
end
end
end

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