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
|
//------------------------------------------------------------------------------
// GxB_Matrix_Option_set: set an option in a matrix
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#include "GB_transpose.h"
#define GB_FREE_ALL ;
//------------------------------------------------------------------------------
// GxB_Matrix_Option_set is a single va_arg-based method for any matrix option,
// of any type. The following functions are alternative methods that do not
// use va_arg (useful for compilers and interfaces that do not support va_arg):
//
// GxB_Matrix_Option_set_INT32 int32_t scalars
// GxB_Matrix_Option_set_FP64 double scalars
//------------------------------------------------------------------------------
// GxB_Matrix_Option_set_INT32: set matrix options (int32_t scalars)
//------------------------------------------------------------------------------
GrB_Info GxB_Matrix_Option_set_INT32 // set an option in a matrix
(
GrB_Matrix A, // matrix to modify
GxB_Option_Field field, // option to change
int32_t value // value to change it to
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GrB_Info info ;
GB_WHERE (A, "GxB_Matrix_Option_set_INT32 (A, field, value)") ;
GB_BURBLE_START ("GxB_set") ;
GB_RETURN_IF_NULL_OR_FAULTY (A) ;
ASSERT_MATRIX_OK (A, "A to set option", GB0) ;
//--------------------------------------------------------------------------
// set the matrix option
//--------------------------------------------------------------------------
switch (field)
{
case GxB_SPARSITY_CONTROL :
A->sparsity_control = GB_sparsity_control (value, (int64_t) (-1)) ;
break ;
case GxB_FORMAT :
if (! (value == GxB_BY_ROW || value == GxB_BY_COL))
{
return (GrB_INVALID_VALUE) ;
}
// the value is normally GxB_BY_ROW (0) or GxB_BY_COL (1), but
// any nonzero value results in GxB_BY_COL.
bool new_csc = (value != GxB_BY_ROW) ;
// conform the matrix to the new by-row/by-col format
if (A->is_csc != new_csc)
{
// A = A', done in-place, and change to the new format.
GB_BURBLE_N (GB_nnz (A), "(transpose) ") ;
GB_OK (GB_transpose_in_place (A, new_csc, Context)) ;
ASSERT (A->is_csc == new_csc) ;
ASSERT (GB_JUMBLED_OK (A)) ;
}
break ;
default :
return (GrB_INVALID_VALUE) ;
}
//--------------------------------------------------------------------------
// conform the matrix to its new desired sparsity structure
//--------------------------------------------------------------------------
ASSERT_MATRIX_OK (A, "A set before conform", GB0) ;
GB_OK (GB_conform (A, Context)) ;
GB_BURBLE_END ;
ASSERT_MATRIX_OK (A, "A set after conform", GB0) ;
return (GrB_SUCCESS) ;
}
//------------------------------------------------------------------------------
// GxB_Matrix_Option_set_FP64: set matrix options (double scalars)
//------------------------------------------------------------------------------
GrB_Info GxB_Matrix_Option_set_FP64 // set an option in a matrix
(
GrB_Matrix A, // matrix to modify
GxB_Option_Field field, // option to change
double value // value to change it to
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GrB_Info info ;
GB_WHERE (A, "GxB_Matrix_Option_set_FP64 (A, field, value)") ;
GB_BURBLE_START ("GxB_set") ;
GB_RETURN_IF_NULL_OR_FAULTY (A) ;
ASSERT_MATRIX_OK (A, "A to set option", GB0) ;
//--------------------------------------------------------------------------
// set the matrix option
//--------------------------------------------------------------------------
switch (field)
{
case GxB_HYPER_SWITCH :
A->hyper_switch = (float) value ;
break ;
case GxB_BITMAP_SWITCH :
A->bitmap_switch = (float) value ;
break ;
default :
return (GrB_INVALID_VALUE) ;
}
//--------------------------------------------------------------------------
// conform the matrix to its new desired sparsity structure
//--------------------------------------------------------------------------
ASSERT_MATRIX_OK (A, "A set before conform", GB0) ;
GB_OK (GB_conform (A, Context)) ;
GB_BURBLE_END ;
ASSERT_MATRIX_OK (A, "A set after conform", GB0) ;
return (GrB_SUCCESS) ;
}
//------------------------------------------------------------------------------
// GxB_Matrix_Option_set: based on va_arg
//------------------------------------------------------------------------------
GrB_Info GxB_Matrix_Option_set // set an option in a matrix
(
GrB_Matrix A, // matrix to modify
GxB_Option_Field field, // option to change
... // value to change it to
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GrB_Info info ;
GB_WHERE (A, "GxB_Matrix_Option_set (A, field, value)") ;
GB_BURBLE_START ("GxB_set") ;
GB_RETURN_IF_NULL_OR_FAULTY (A) ;
ASSERT_MATRIX_OK (A, "A to set option", GB0) ;
//--------------------------------------------------------------------------
// set the matrix option
//--------------------------------------------------------------------------
va_list ap ;
switch (field)
{
case GxB_HYPER_SWITCH :
{
va_start (ap, field) ;
double hyper_switch = va_arg (ap, double) ;
va_end (ap) ;
A->hyper_switch = (float) hyper_switch ;
}
break ;
case GxB_BITMAP_SWITCH :
{
va_start (ap, field) ;
double bitmap_switch = va_arg (ap, double) ;
va_end (ap) ;
A->bitmap_switch = (float) bitmap_switch ;
}
break ;
case GxB_SPARSITY_CONTROL :
{
va_start (ap, field) ;
int sparsity_control = va_arg (ap, int) ;
va_end (ap) ;
A->sparsity_control =
GB_sparsity_control (sparsity_control, (int64_t) (-1)) ;
}
break ;
case GxB_FORMAT :
{
va_start (ap, field) ;
int format = va_arg (ap, int) ;
va_end (ap) ;
if (! (format == GxB_BY_ROW || format == GxB_BY_COL))
{
return (GrB_INVALID_VALUE) ;
}
// the value is normally GxB_BY_ROW (0) or GxB_BY_COL (1), but
// any nonzero value results in GxB_BY_COL.
bool new_csc = (format != GxB_BY_ROW) ;
// conform the matrix to the new by-row/by-col format
if (A->is_csc != new_csc)
{
// A = A', done in-place, and change to the new format.
GB_BURBLE_N (GB_nnz (A), "(transpose) ") ;
GB_OK (GB_transpose_in_place (A, new_csc, Context)) ;
ASSERT (A->is_csc == new_csc) ;
ASSERT (GB_JUMBLED_OK (A)) ;
}
}
break ;
default :
return (GrB_INVALID_VALUE) ;
}
//--------------------------------------------------------------------------
// conform the matrix to its new desired sparsity structure
//--------------------------------------------------------------------------
ASSERT_MATRIX_OK (A, "A set before conform", GB0) ;
GB_OK (GB_conform (A, Context)) ;
GB_BURBLE_END ;
ASSERT_MATRIX_OK (A, "A set after conform", GB0) ;
return (GrB_SUCCESS) ;
}
|