File: test199.m

package info (click to toggle)
suitesparse 1%3A7.10.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 254,920 kB
  • sloc: ansic: 1,134,743; cpp: 46,133; makefile: 4,875; fortran: 2,087; java: 1,826; sh: 996; ruby: 725; python: 495; asm: 371; sed: 166; awk: 44
file content (36 lines) | stat: -rw-r--r-- 912 bytes parent folder | download | duplicates (2)
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
function test199
%TEST199 test dot2 with hypersparse

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

rng ('default') ;

GB_mex_burble (1) ;
n = 10 ;
A.matrix = sprand (n, n, 0.5) ;
A.matrix (:,3) = sparse (n,1) ;
A.sparsity = 1 ;    % hypersparse
B.matrix = sprand (n, n, 0.5) ;
B.matrix (:,8) = sparse (n,1) ;
B.sparsity = 1 ;    % hypersparse
% GB_mex_dump (A,3)
% GB_mex_dump (B,3)
M.matrix = spones (sprand (n, n, 0.5)) ;
M.sparsity = 4 ;    % bitmap
% GB_mex_dump (M,3)

dtn = struct ('inp0', 'tran', 'axb', 'dot') ;
semiring.add = 'plus' ;
semiring.multiply = 'times' ;
semiring.class = 'double' ;

Cin = sparse (n,n) ;
C1 = GB_mex_mxm (Cin, M, [ ], semiring, A, B, dtn) ;
C2 = (A.matrix' * B.matrix) .* M.matrix ;
err = norm (C1.matrix - C2, 1) ;
assert (err < 1e-12) ;

GB_mex_burble (0) ;
fprintf ('test199: all tests passed\n') ;