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
|
//------------------------------------------------------------------------------
// gbnorm: norm (A,kind)
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#include "gb_interface.h"
#define USAGE "usage: s = gbnorm (A, kind)"
void mexFunction
(
int nargout,
mxArray *pargout [ ],
int nargin,
const mxArray *pargin [ ]
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
gb_usage (nargin == 2 && nargout <= 1, USAGE) ;
//--------------------------------------------------------------------------
// get the inputs
//--------------------------------------------------------------------------
GrB_Matrix A = gb_get_shallow (pargin [0]) ;
int64_t norm_kind = gb_norm_kind (pargin [1]) ;
GrB_Type atype ;
OK (GxB_Matrix_type (&atype, A)) ;
GrB_Index anrows, ancols ;
OK (GrB_Matrix_nrows (&anrows, A)) ;
OK (GrB_Matrix_ncols (&ancols, A)) ;
int sparsity ;
OK (GxB_Matrix_Option_get (A, GxB_SPARSITY_STATUS, &sparsity)) ;
//--------------------------------------------------------------------------
// s = norm (A,kind)
//--------------------------------------------------------------------------
double s ;
if (norm_kind == INT64_MIN && !GB_is_dense (A))
{
// norm (A,-inf) is zero if A is not full
s = 0 ;
}
else if ((atype == GrB_FP32 || atype == GrB_FP64)
&& (sparsity != GxB_BITMAP)
&& (anrows == 1 || ancols == 1 || norm_kind == 0))
{
// s = norm (A,p) where A is an FP32 or FP64 vector,
// or when p = 0 (for Frobenius norm). A cannot be bitmap.
GrB_Index anz ;
OK (GrB_Matrix_nvals (&anz, A)) ;
s = GB_helper10 (A->x, A->iso, NULL, false, atype, norm_kind, anz) ;
if (s < 0) ERROR ("unknown norm") ;
}
else
{
// s = norm (A, norm_kind)
s = gb_norm (A, norm_kind) ;
}
//--------------------------------------------------------------------------
// free workspace and return result
//--------------------------------------------------------------------------
OK (GrB_Matrix_free (&A)) ;
pargout [0] = mxCreateDoubleScalar (s) ;
GB_WRAPUP ;
}
|