1% test GrB_reduce to vector and scalar 2 3% SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. 4% SPDX-License-Identifier: Apache-2.0 5 6clear all ; make 7 8for k = [4 2 1] 9 10 nthreads_set (k) ; 11 12 debug_off 13 stat 14 15 fprintf ('\n=============== GrB_reduce to scalar tests: nthreads %d\n', k) ; 16 test29 17 fprintf ('\n=============== GrB_reduce to vector tests: nthreads %d\n', k) ; 18 test66 19 test95 20 test14 21 test24(0) 22 23 debug_on 24 stat 25 26 fprintf ('\n=============== GrB_reduce to scalar tests: nthreads %d\n', k) ; 27 test29 28 fprintf ('\n=============== GrB_reduce to vector tests: nthreads %d\n', k) ; 29 test66 30 test95 31 test14 32 test24(0) 33 34end 35 36test107 37