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
|
function C = GB_spec_apply (C, Mask, accum, op, A, descriptor, thunk)
%GB_SPEC_APPLY a mimic of GrB_apply
%
% Usage:
% C = GB_spec_apply (C, Mask, accum, op, A, descriptor)
% C = GB_spec_apply (C, Mask, accum, op, A, descriptor, thunk)
% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
% SPDX-License-Identifier: Apache-2.0
%-------------------------------------------------------------------------------
% get inputs
%-------------------------------------------------------------------------------
if (nargout > 1 || nargin < 6 || nargin > 7)
error ('usage: C = GB_spec_apply (C, Mask, accum, op, A, descriptor, thunk)') ;
end
C = GB_spec_matrix (C) ;
A = GB_spec_matrix (A) ;
[opname optype ztype xtype ytype] = GB_spec_operator (op, C.class) ;
[C_replace Mask_comp Atrans Btrans Mask_struct] = ...
GB_spec_descriptor (descriptor) ;
Mask = GB_spec_getmask (Mask, Mask_struct) ;
%-------------------------------------------------------------------------------
% do the work via a clean *.m interpretation of the entire GraphBLAS spec
%-------------------------------------------------------------------------------
% apply the descriptor to A
if (Atrans)
A.matrix = A.matrix.' ;
A.pattern = A.pattern' ;
end
% T = op(A)
T.matrix = GB_spec_zeros (size (A.matrix), ztype) ;
T.pattern = A.pattern ;
T.class = ztype ;
p = T.pattern ;
if (GB_spec_is_idxunop (opname))
if (nargin < 7)
thunk = 0 ;
end
if (isstruct (thunk))
thunk = GB_mex_cast (thunk.matrix, thunk.class) ;
end
thunk = full (thunk) ;
thunk = GB_mex_cast (thunk, ytype) ;
[m, n] = size (A.matrix) ;
for i = 1:m
for j = 1:n
if (p (i,j))
T.matrix (i,j) = GB_spec_idxunop (opname, A.matrix (i,j), i, j, thunk) ;
end
end
end
elseif (GB_spec_is_positional (opname))
[m, n] = size (A.matrix) ;
for i = 1:m
for j = 1:n
if (p (i,j))
T.matrix (i,j) = GB_spec_unop_positional (opname, i, j) ;
end
end
end
else
x = A.matrix (p) ;
z = GB_spec_op (op, x) ;
T.matrix (p) = z ;
end
% C<Mask> = accum (C,T): apply the accum, then Mask, and return the result
C = GB_spec_accum_mask (C, Mask, accum, T, C_replace, Mask_comp, 0) ;
|