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
|
function test30
%TEST30 test GxB_subassign
% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
% SPDX-License-Identifier: Apache-2.0
[save save_chunk] = nthreads_get ;
chunk = 4096 ;
nthreads = feature_numcores ;
nthreads_set (nthreads, chunk) ;
Prob = ssget (2662) ;
A = Prob.A ;
[m n] = size (A) ;
ni = 500 ;
nj = 1000 ;
I = randperm (m,ni) ;
J = randperm (n,nj) ;
I0 = uint64 (I-1) ;
J0 = uint64 (J-1) ;
scalar = sparse (pi) ;
fprintf ('start GraphBLAS:\n') ;
tic
C2 = GB_mex_subassign (A, [], [], scalar, I0, J0, []) ;
t = toc ;
C = A ;
fprintf ('start builtin:\n') ;
tic
C (I,J) = scalar ;
tm = toc
fprintf ('GraphBLAS speedup over builtin: %g\n', tm/t) ;
assert (isequal (C, C2.matrix)) ;
fprintf ('\ntest30: all tests passed\n') ;
|