File: test47.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 (56 lines) | stat: -rw-r--r-- 1,009 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
function test47
%TEST47 prformance test of GrB_vxm

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

rng ('default') ;
% d = struct ('inp1', 'tran', 'inp0', 'tran') ;
Prob = ssget (939) ;
% Prob = ssget (2662) ;
A = Prob.A ;

n = size (A,1) ;
A (1,2) = 1 ;

w = sparse (n,1) ;
semiring.multiply = 'times' ;
semiring.add = 'plus' ;
semiring.class = 'double' ;

t3 = 0 ;

Xnz = [ ]  ;
T = [ ]

d2.axb = 'dot' ;

for xnz = [100:100:1000 2000:1000:72000]

    x = sprand (n, 1, xnz/n) ;

    tic
    c1 = GB_mex_vxm (w, [],[], semiring, x, A, [ ]) ;
    t = toc ;

    tic
    c2 = GB_mex_vxm (w, [],[], semiring, x, A, d2) ;
    t2 = toc ;

    tic
    c0 = x'*A ;
    tm = toc ;

    assert (isequal (c0', c1.matrix)) ;

    Xnz = [Xnz nnz(x)] ;
    T = [T t] ;

    fprintf ('%5d : %10g(%s) %10g built-in %10g speedup %10g %10g\n', ...
        nnz(x), t, method (1), t2, tm, tm/t, tm/t2) ;

end

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