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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
//------------------------------------------------------------------------------
// GB_mex_edit: add/remove entries from a matrix
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved.
// http://suitesparse.com See GraphBLAS/Doc/License.txt for license.
//------------------------------------------------------------------------------
#include "GB_mex.h"
#define USAGE "C = GB_mex_edit (C, I, J, X, Action)"
#define FREE_ALL \
{ \
GB_MATRIX_FREE (&C) ; \
GB_mx_put_global (true, 0) ; \
}
#define OK(method) \
{ \
info = method ; \
if (info != GrB_SUCCESS) \
{ \
mexErrMsgTxt (GrB_error ( )) ; \
} \
}
void mexFunction
(
int nargout,
mxArray *pargout [ ],
int nargin,
const mxArray *pargin [ ]
)
{
GrB_Matrix C = NULL ;
GrB_Index *I = NULL, ni = 0, I_range [3] ;
GrB_Index *J = NULL, nj = 0, J_range [3] ;
bool ignore ;
bool malloc_debug = false ;
GrB_Info info = GrB_SUCCESS ;
int64_t nwork = 0 ;
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
malloc_debug = GB_mx_get_global (true) ;
C = NULL ;
// check inputs
GB_WHERE (USAGE) ;
if (nargout > 1 || nargin != 5)
{
mexErrMsgTxt ("Usage: " USAGE) ;
}
//--------------------------------------------------------------------------
// get C (make a deep copy)
//--------------------------------------------------------------------------
C = GB_mx_mxArray_to_Matrix (pargin [0], "C input", true, true) ;
if (C == NULL)
{
FREE_ALL ;
mexErrMsgTxt ("C failed") ;
}
GrB_Index ncols ;
GxB_Format_Value fmt ;
bool is_hyper ;
OK (GrB_Matrix_ncols (&ncols, C)) ;
OK (GxB_Matrix_Option_get (C, GxB_FORMAT, &fmt)) ;
OK (GxB_Matrix_Option_get (C, GxB_IS_HYPER, &is_hyper)) ;
// printf ("init: \n"); GxB_print (C, 3) ;
bool is_vector = (fmt == GxB_BY_COL && !is_hyper && ncols == 1) ;
// printf ("fmt %d is_hyper %d ncols %ld is_vector: %d\n",
// fmt, is_hyper, ncols, is_vector) ;
// get I
if (!GB_mx_mxArray_to_indices (&I, pargin [1], &ni, I_range, &ignore))
{
FREE_ALL ;
mexErrMsgTxt ("I failed") ;
}
// get J
if (!GB_mx_mxArray_to_indices (&J, pargin [2], &nj, J_range, &ignore))
{
FREE_ALL ;
mexErrMsgTxt ("J failed") ;
}
// get X; must be double
double *X = mxGetDoubles (pargin [3]) ;
// get Action: must be double
double *Action = mxGetDoubles (pargin [4]) ;
nwork = ni ;
if (nwork != nj ||
nwork != mxGetNumberOfElements (pargin [3]) ||
nwork != mxGetNumberOfElements (pargin [4]) ||
mxGetClassID (pargin [3]) != mxDOUBLE_CLASS ||
mxGetClassID (pargin [4]) != mxDOUBLE_CLASS)
{
mexErrMsgTxt ("Usage: " USAGE) ;
}
//--------------------------------------------------------------------------
// turn off malloc debugging
//--------------------------------------------------------------------------
bool save = GB_Global_malloc_debug_get ( ) ;
GB_Global_malloc_debug_set (false) ;
//--------------------------------------------------------------------------
// edit the matrix
//--------------------------------------------------------------------------
for (int64_t k = 0 ; k < nwork ; k++)
{
int64_t i = I [k] - 1 ;
int64_t j = J [k] - 1 ;
double x = X [k] ;
double action = Action [k] ;
if (action == 0)
{
// remove the (i,j) entry
if (is_vector)
{
// printf ("vector remove: %ld: (%ld)\n", k, i) ;
OK (GrB_Vector_removeElement ((GrB_Vector) C, i)) ;
}
else
{
// printf ("matrix remove: %ld: (%ld, %ld)\n", k, i, j) ;
OK (GrB_Matrix_removeElement (C, i, j)) ;
}
}
else
{
// add the (i,j) entry
if (is_vector)
{
// printf ("vector set: %ld: (%ld) %g\n", k, i, x) ;
OK (GrB_Vector_setElement_FP64_ ((GrB_Vector) C, x, i)) ;
}
else
{
// printf ("matrix set: %ld: (%ld, %ld) %g\n", k, i, j, x) ;
OK (GrB_Matrix_setElement_FP64_ (C, x, i, j)) ;
}
}
}
//--------------------------------------------------------------------------
// restore malloc debugging to test the method
//--------------------------------------------------------------------------
GB_Global_malloc_debug_set (save) ;
//--------------------------------------------------------------------------
// return C to MATLAB as a struct
//--------------------------------------------------------------------------
pargout [0] = GB_mx_Matrix_to_mxArray (&C, "C mex_edit result", false) ;
FREE_ALL ;
}
|