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
|
//------------------------------------------------------------------------------
// GB_macrofy_mxm: construct all macros for a semiring
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2021, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#include "GB.h"
#include "GB_stringify.h"
void GB_macrofy_mxm // construct all macros for GrB_mxm
(
// output:
FILE *fp, // target file to write, already open
// input:
uint64_t scode,
GrB_Semiring semiring, // the semiring to macrofy
GrB_Type ctype,
GrB_Type atype,
GrB_Type btype
)
{
//--------------------------------------------------------------------------
// extract the semiring scode
//--------------------------------------------------------------------------
// monoid (4 hex digits)
// int unused = GB_RSHIFT (scode, 63, 1) ;
int add_ecode = GB_RSHIFT (scode, 58, 5) ;
int id_ecode = GB_RSHIFT (scode, 53, 5) ;
int term_ecode = GB_RSHIFT (scode, 48, 5) ;
bool is_term = (term_ecode < 30) ;
// A and B iso-valued and flipxy (one hex digit)
// int unused = GB_RSHIFT (scode, 47, 1) ;
int A_iso_code = GB_RSHIFT (scode, 46, 1) ;
int B_iso_code = GB_RSHIFT (scode, 45, 1) ;
bool flipxy = GB_RSHIFT (scode, 44, 1) ;
// multiplier (5 hex digits)
int mult_ecode = GB_RSHIFT (scode, 36, 8) ;
int zcode = GB_RSHIFT (scode, 32, 4) ;
int xcode = GB_RSHIFT (scode, 28, 4) ;
int ycode = GB_RSHIFT (scode, 24, 4) ;
// mask (one hex digit)
int mask_ecode = GB_RSHIFT (scode, 20, 4) ;
// types of C, A, and B (3 hex digits)
int ccode = GB_RSHIFT (scode, 16, 4) ; // if 0: C is iso
int acode = GB_RSHIFT (scode, 12, 4) ; // if 0: A is pattern
int bcode = GB_RSHIFT (scode, 8, 4) ; // if 0: B is pattern
// formats of C, M, A, and B (2 hex digits)
int csparsity = GB_RSHIFT (scode, 6, 2) ;
int msparsity = GB_RSHIFT (scode, 4, 2) ;
int asparsity = GB_RSHIFT (scode, 2, 2) ;
int bsparsity = GB_RSHIFT (scode, 0, 2) ;
//--------------------------------------------------------------------------
// construct the semiring name
//--------------------------------------------------------------------------
GrB_Monoid add = semiring->add ;
GrB_BinaryOp mult = semiring->multiply ;
GrB_BinaryOp addop = add->op ;
fprintf (fp, "// GB_mxm_%016" PRIx64 ".h, semiring: (%s, %s%s)\n\n",
scode, addop->name, mult->name, flipxy ? " (flipped)" : "") ;
//--------------------------------------------------------------------------
// construct the typedefs
//--------------------------------------------------------------------------
GB_macrofy_types (fp, ctype->defn, atype->defn, btype->defn,
mult->xtype->defn, mult->ytype->defn, mult->ztype->defn) ;
//--------------------------------------------------------------------------
// construct the macros for the type names
//--------------------------------------------------------------------------
fprintf (fp, "// semiring types:\n") ;
fprintf (fp, "#define GB_X_TYPENAME %s\n", mult->xtype->name) ;
fprintf (fp, "#define GB_Y_TYPENAME %s\n", mult->ytype->name) ;
fprintf (fp, "#define GB_Z_TYPENAME %s\n", mult->ztype->name) ;
//--------------------------------------------------------------------------
// construct the monoid macros
//--------------------------------------------------------------------------
fprintf (fp, "\n// additive monoid:\n") ;
GB_macrofy_monoid (fp, add_ecode, id_ecode, term_ecode, add, false) ;
//--------------------------------------------------------------------------
// construct macros for the multiply
//--------------------------------------------------------------------------
// do not print the user-defined multiplicative function if it is identical
// to the user-defined additive function.
fprintf (fp, "\n// multiplicative operator:\n") ;
bool skip_defn = (mult->defn != NULL && addop->defn != NULL
&& strcmp (mult->defn, addop->defn) == 0) ;
GB_macrofy_binop (fp, "GB_MULT", flipxy, false, mult_ecode, mult,
skip_defn) ;
fprintf (fp, "#define GB_FLIPXY %d\n\n", flipxy ? 1 : 0) ;
//--------------------------------------------------------------------------
// special cases
//--------------------------------------------------------------------------
fprintf (fp, "// special cases:\n") ;
// semiring is plus_pair_real
bool is_plus_pair_real =
(add_ecode == 11 // plus monoid
&& mult_ecode == 133 // pair multiplicative operator
&& !(zcode == GB_FC32_code || zcode == GB_FC64_code)) ; // real
fprintf (fp, "#define GB_IS_PLUS_PAIR_REAL_SEMIRING %d\n",
is_plus_pair_real) ;
// can ignore overflow in ztype when accumulating the result via the monoid
bool ztype_ignore_overflow = (
zcode == GB_INT64_code || zcode == GB_UINT64_code ||
zcode == GB_FP32_code || zcode == GB_FP64_code ||
zcode == GB_FC32_code || zcode == GB_FC64_code) ;
// note "CTYPE" is in the name in the CPU kernels (fix them to use ZTYPE)
fprintf (fp, "#define GB_ZTYPE_IGNORE_OVERFLOW %d\n\n",
ztype_ignore_overflow) ;
//--------------------------------------------------------------------------
// macros for the C matrix
//--------------------------------------------------------------------------
fprintf (fp, "// C matrix:\n") ;
bool C_iso = (ccode == 0) ;
if (C_iso)
{
fprintf (fp, "#define GB_PUTC(blob)\n") ;
fprintf (fp, "#define GB_C_ISO 1\n") ;
}
else
{
fprintf (fp, "#define GB_PUTC(blob) blob\n") ;
fprintf (fp, "#define GB_C_ISO 0\n") ;
}
GB_macrofy_sparsity (fp, "C", csparsity) ;
fprintf (fp, "#define GB_C_TYPENAME %s\n\n", ctype->name) ;
//--------------------------------------------------------------------------
// construct the macros to access the mask (if any), and its name
//--------------------------------------------------------------------------
GB_macrofy_mask (fp, mask_ecode) ;
GB_macrofy_sparsity (fp, "M", msparsity) ;
//--------------------------------------------------------------------------
// construct the macros for A and B
//--------------------------------------------------------------------------
// if flipxy false: A is typecasted to x, and B is typecasted to y.
// if flipxy true: A is typecasted to y, and B is typecasted to x.
fprintf (fp, "\n// A matrix:\n") ;
int A_is_pattern = (acode == 0) ? 1 : 0 ;
int B_is_pattern = (bcode == 0) ? 1 : 0 ;
fprintf (fp, "#define GB_A_IS_PATTERN %d\n", A_is_pattern) ;
fprintf (fp, "#define GB_A_ISO %d\n", A_iso_code) ;
GB_macrofy_sparsity (fp, "A", asparsity) ;
fprintf (fp, "#define GB_A_TYPENAME %s\n", atype->name) ;
fprintf (fp, "\n// B matrix:\n") ;
fprintf (fp, "#define GB_B_IS_PATTERN %d\n", B_is_pattern) ;
fprintf (fp, "#define GB_B_ISO %d\n", B_iso_code) ;
GB_macrofy_sparsity (fp, "B", bsparsity) ;
fprintf (fp, "#define GB_B_TYPENAME %s\n", btype->name) ;
}
|