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
|
//------------------------------------------------------------------------------
// GxB_Context_get_*: get a field in a context
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#include "get_set/GB_get_set.h"
//------------------------------------------------------------------------------
// GxB_Context_get_Scalar
//------------------------------------------------------------------------------
GrB_Info GxB_Context_get_Scalar
(
GxB_Context Context,
GrB_Scalar scalar,
int field
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GB_RETURN_IF_NULL_OR_FAULTY (Context) ;
GB_RETURN_IF_NULL (scalar) ;
GB_WHERE_1 (scalar, "GxB_Context_get_Scalar (Context, scalar, field)") ;
ASSERT_CONTEXT_OK (Context, "context for get", GB0) ;
//--------------------------------------------------------------------------
// get the field
//--------------------------------------------------------------------------
double dvalue = 0 ;
int32_t ivalue = 0 ;
switch ((int) field)
{
case GxB_CONTEXT_CHUNK : // same as GxB_CHUNK
dvalue = GB_Context_chunk_get (Context) ;
break ;
case GxB_CONTEXT_NTHREADS : // same as GxB_NTHREADS
ivalue = GB_Context_nthreads_max_get (Context) ;
break ;
case GxB_CONTEXT_GPU_ID : // same as GxB_GPU_ID
ivalue= GB_Context_gpu_id_get (Context) ;
break ;
default :
return (GrB_INVALID_VALUE) ;
}
switch ((int) field)
{
case GxB_CONTEXT_CHUNK : // same as GxB_CHUNK
info = GB_setElement ((GrB_Matrix) scalar, NULL, &dvalue, 0, 0,
GB_FP64_code, Werk) ;
break ;
default :
info = GB_setElement ((GrB_Matrix) scalar, NULL, &ivalue, 0, 0,
GB_INT32_code, Werk) ;
break ;
}
return (info) ;
}
//------------------------------------------------------------------------------
// GxB_Context_get_String
//------------------------------------------------------------------------------
GrB_Info GxB_Context_get_String
(
GxB_Context Context,
char * value,
int field
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GB_CHECK_INIT ;
GB_RETURN_IF_NULL_OR_FAULTY (Context) ;
GB_RETURN_IF_NULL (value) ;
ASSERT_CONTEXT_OK (Context, "context for get", GB0) ;
//--------------------------------------------------------------------------
// get the field
//--------------------------------------------------------------------------
if (field != GrB_NAME)
{
return (GrB_INVALID_VALUE) ;
}
(*value) = '\0' ;
if (Context == GxB_CONTEXT_WORLD)
{
// built-in Context
strcpy (value, "GxB_CONTEXT_WORLD") ;
}
else if (Context->user_name_size > 0)
{
// user-defined Context, with name defined by GrB_set
strcpy (value, Context->user_name) ;
}
#pragma omp flush
return (GrB_SUCCESS) ;
}
//------------------------------------------------------------------------------
// GxB_Context_get_INT
//------------------------------------------------------------------------------
GrB_Info GxB_Context_get_INT
(
GxB_Context Context,
int32_t * value,
int field
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GB_CHECK_INIT ;
GB_RETURN_IF_NULL_OR_FAULTY (Context) ;
GB_RETURN_IF_NULL (value) ;
ASSERT_CONTEXT_OK (Context, "context for get", GB0) ;
//--------------------------------------------------------------------------
// get the field
//--------------------------------------------------------------------------
switch ((int) field)
{
case GxB_CONTEXT_NTHREADS : // same as GxB_NTHREADS
(*value) = GB_Context_nthreads_max_get (Context) ;
break ;
case GxB_CONTEXT_GPU_ID : // same as GxB_GPU_ID
(*value) = GB_Context_gpu_id_get (Context) ;
break ;
default :
return (GrB_INVALID_VALUE) ;
}
#pragma omp flush
return (GrB_SUCCESS) ;
}
//------------------------------------------------------------------------------
// GxB_Context_get_SIZE
//------------------------------------------------------------------------------
GrB_Info GxB_Context_get_SIZE
(
GxB_Context Context,
size_t * value,
int field
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GB_CHECK_INIT ;
GB_RETURN_IF_NULL_OR_FAULTY (Context) ;
GB_RETURN_IF_NULL (value) ;
ASSERT_CONTEXT_OK (Context, "context for get", GB0) ;
//--------------------------------------------------------------------------
// get the field
//--------------------------------------------------------------------------
if (field != GrB_NAME)
{
return (GrB_INVALID_VALUE) ;
}
if (Context->user_name != NULL)
{
(*value) = Context->user_name_size ;
}
else
{
(*value) = GxB_MAX_NAME_LEN ;
}
return (GrB_SUCCESS) ;
}
//------------------------------------------------------------------------------
// GxB_Context_get_VOID
//------------------------------------------------------------------------------
GrB_Info GxB_Context_get_VOID
(
GxB_Context Context,
void * value,
int field
)
{
return (GrB_INVALID_VALUE) ;
}
|