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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
//------------------------------------------------------------------------------
// GB_mex_AxB: compute C=A*B, A'*B, A*B', or A'*B'
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
// This is for testing only. See GrB_mxm instead. Returns a plain built-in
// matrix, in double.
#include "GB_mex.h"
#define USAGE "C = GB_mex_AxB (A, B, atranspose, btranspose, axb_method)"
#define FREE_ALL \
{ \
GrB_Matrix_free_(&A) ; \
GrB_Matrix_free_(&Aconj) ; \
GrB_Matrix_free_(&B) ; \
GrB_Matrix_free_(&Bconj) ; \
GrB_Matrix_free_(&C) ; \
GrB_Matrix_free_(&Mask) ; \
GrB_Monoid_free_(&add) ; \
GrB_Semiring_free_(&semiring) ; \
GB_mx_put_global (true) ; \
}
//------------------------------------------------------------------------------
GrB_Info info ;
bool malloc_debug = false ;
bool ignore = false, ignore1 = false, ignore2 = false ;
bool atranspose = false ;
bool btranspose = false ;
GrB_Matrix A = NULL, B = NULL, C = NULL, Aconj = NULL, Bconj = NULL,
Mask = NULL ;
GrB_Monoid add = NULL ;
GrB_Semiring semiring = NULL ;
int64_t anrows = 0 ;
int64_t ancols = 0 ;
int64_t bnrows = 0 ;
int64_t bncols = 0 ;
struct GB_Matrix_opaque C_header ;
GrB_Desc_Value AxB_method = GxB_DEFAULT ;
GrB_Info axb (GB_Context Context) ;
GrB_Info axb_complex (GB_Context Context) ;
//------------------------------------------------------------------------------
GrB_Info axb (GB_Context Context)
{
// create the Semiring for regular z += x*y
info = GrB_Monoid_new_FP64_(&add, GrB_PLUS_FP64, (double) 0) ;
if (info != GrB_SUCCESS) return (info) ;
info = GrB_Semiring_new (&semiring, add, GrB_TIMES_FP64) ;
if (info != GrB_SUCCESS)
{
GrB_Monoid_free_(&add) ;
return (info) ;
}
struct GB_Matrix_opaque MT_header ;
GrB_Matrix MT = GB_clear_static_header (&MT_header) ;
// C = A*B, A'*B, A*B', or A'*B'
info = GB_AxB_meta (C, NULL,
false, // C_replace
true, // CSC
MT, // no MT returned
&ignore1, // M_transposed will be false
NULL, // no Mask
false, // mask not complemented
false, // mask not structural
NULL, // no accum
A,
B,
semiring, // GrB_PLUS_TIMES_FP64
atranspose,
btranspose,
false, // flipxy
&ignore, // mask_applied
&ignore2, // done_in_place
AxB_method,
true, // do the sort
Context) ;
GrB_Monoid_free_(&add) ;
GrB_Semiring_free_(&semiring) ;
return (info) ;
}
//------------------------------------------------------------------------------
GrB_Info axb_complex (GB_Context Context)
{
// C = A*B, complex case
Aconj = NULL ;
Bconj = NULL ;
if (atranspose)
{
// Aconj = A
info = GrB_Matrix_new (&Aconj, Complex, A->vlen, A->vdim) ;
if (info != GrB_SUCCESS) return (info) ;
info = GrB_Matrix_apply_(Aconj, NULL, NULL, Complex_conj, A, NULL) ;
if (info != GrB_SUCCESS)
{
GrB_Matrix_free_(&Aconj) ;
return (info) ;
}
}
if (btranspose)
{
// Bconj = B
info = GrB_Matrix_new (&Bconj, Complex, B->vlen, B->vdim) ;
if (info != GrB_SUCCESS)
{
GrB_Matrix_free_(&Aconj) ;
return (info) ;
}
info = GrB_Matrix_apply_(Bconj, NULL, NULL, Complex_conj, B, NULL) ;
if (info != GrB_SUCCESS)
{
GrB_Matrix_free_(&Bconj) ;
GrB_Matrix_free_(&Aconj) ;
return (info) ;
}
}
// force completion
if (Aconj != NULL)
{
info = GrB_Matrix_wait_(Aconj, GrB_MATERIALIZE) ;
if (info != GrB_SUCCESS)
{
GrB_Matrix_free_(&Aconj) ;
GrB_Matrix_free_(&Bconj) ;
return (info) ;
}
}
if (Bconj != NULL)
{
info = GrB_Matrix_wait_(Bconj, GrB_MATERIALIZE) ;
if (info != GrB_SUCCESS)
{
GrB_Matrix_free_(&Aconj) ;
GrB_Matrix_free_(&Bconj) ;
return (info) ;
}
}
struct GB_Matrix_opaque MT_header ;
GrB_Matrix MT = GB_clear_static_header (&MT_header) ;
info = GB_AxB_meta (C, NULL,
false, // C_replace
true, // CSC
MT, // no MT returned
&ignore1, // M_transposed will be false
NULL, // no Mask
false, // mask not complemented
false, // mask not structural
NULL, // no accum
(atranspose) ? Aconj : A,
(btranspose) ? Bconj : B,
Complex_plus_times,
atranspose,
btranspose,
false, // flipxy
&ignore, // mask_applied
&ignore2, // done_in_place
AxB_method,
true, // do the sort
Context) ;
GrB_Matrix_free_(&Bconj) ;
GrB_Matrix_free_(&Aconj) ;
return (info) ;
}
//------------------------------------------------------------------------------
void mexFunction
(
int nargout,
mxArray *pargout [ ],
int nargin,
const mxArray *pargin [ ]
)
{
info = GrB_SUCCESS ;
malloc_debug = GB_mx_get_global (true) ;
ignore = false ;
ignore1 = false ;
ignore2 = false ;
A = NULL ;
B = NULL ;
C = NULL ;
Aconj = NULL ;
Bconj = NULL ;
Mask = NULL ;
add = NULL ;
semiring = NULL ;
GB_CONTEXT (USAGE) ;
// check inputs
if (nargout > 1 || nargin < 2 || nargin > 5)
{
mexErrMsgTxt ("Usage: " USAGE) ;
}
#define GET_DEEP_COPY ;
#define FREE_DEEP_COPY ;
// get A and B
A = GB_mx_mxArray_to_Matrix (pargin [0], "A", false, true) ;
B = GB_mx_mxArray_to_Matrix (pargin [1], "B", false, true) ;
if (A == NULL || B == NULL)
{
FREE_ALL ;
mexErrMsgTxt ("failed") ;
}
if (!A->is_csc || !B->is_csc)
{
mexErrMsgTxt ("A and B must be in CSC format") ;
}
// get the atranspose option
GET_SCALAR (2, bool, atranspose, false) ;
// get the btranspose option
GET_SCALAR (3, bool, btranspose, false) ;
// get the axb_method
// 0 or not present: default
// 1001: Gustavson
// 1003: dot
// 1004: hash
// 1005: saxpy
GET_SCALAR (4, GrB_Desc_Value, AxB_method, GxB_DEFAULT) ;
if (! ((AxB_method == GxB_DEFAULT) ||
(AxB_method == GxB_AxB_GUSTAVSON) ||
(AxB_method == GxB_AxB_HASH) ||
(AxB_method == GxB_AxB_DOT)))
{
mexErrMsgTxt ("unknown method") ;
}
// determine the dimensions
anrows = (atranspose) ? GB_NCOLS (A) : GB_NROWS (A) ;
ancols = (atranspose) ? GB_NROWS (A) : GB_NCOLS (A) ;
bnrows = (btranspose) ? GB_NCOLS (B) : GB_NROWS (B) ;
bncols = (btranspose) ? GB_NROWS (B) : GB_NCOLS (B) ;
if (ancols != bnrows)
{
FREE_ALL ;
mexErrMsgTxt ("invalid dimensions") ;
}
C = GB_clear_static_header (&C_header) ;
if (A->type == Complex)
{
METHOD (axb_complex (Context)) ;
}
else
{
METHOD (axb (Context)) ;
}
// return C
pargout [0] = GB_mx_Matrix_to_mxArray (&C, "C AxB result", false) ;
FREE_ALL ;
}
|