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
|
//------------------------------------------------------------------------------
// GxB_Context_set: set a field in Context (HISTORICAL; do not use for new code)
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#include "GB.h"
//------------------------------------------------------------------------------
// GxB_Context_set_INT32: set a Context option (int32_t)
//------------------------------------------------------------------------------
GrB_Info GxB_Context_set_INT32 // set a parameter in a Context
(
GxB_Context Context, // Context to modify
int field, // parameter to change
int32_t value // value to change it to
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GB_CHECK_INIT ;
GB_RETURN_IF_NULL_OR_FAULTY (Context) ;
//--------------------------------------------------------------------------
// set the parameter
//--------------------------------------------------------------------------
switch (field)
{
case GxB_CONTEXT_NTHREADS : // same as GxB_NTHREADS
GB_Context_nthreads_max_set (Context, value) ;
break ;
case GxB_CONTEXT_GPU_ID : // same as GxB_GPU_ID
GB_Context_gpu_id_set (Context, value) ;
break ;
default :
return (GrB_INVALID_VALUE) ;
}
return (GrB_SUCCESS) ;
}
//------------------------------------------------------------------------------
// GxB_Context_set_FP64: set a Context option (double scalar)
//------------------------------------------------------------------------------
GrB_Info GxB_Context_set_FP64 // set a parameter in a Context
(
GxB_Context Context, // Context to modify
int field, // parameter to change
double value // value to change it to
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GB_CHECK_INIT ;
GB_RETURN_IF_NULL_OR_FAULTY (Context) ;
//--------------------------------------------------------------------------
// set the parameter
//--------------------------------------------------------------------------
switch (field)
{
case GxB_CONTEXT_CHUNK : // same as GxB_CHUNK
GB_Context_chunk_set (Context, value) ;
break ;
default :
return (GrB_INVALID_VALUE) ;
}
return (GrB_SUCCESS) ;
}
//------------------------------------------------------------------------------
// GxB_Context_set: based on va_arg
//------------------------------------------------------------------------------
GrB_Info GxB_Context_set // set a parameter in a Context
(
GxB_Context Context, // Context to modify
int field, // parameter to change
... // value to change it to
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GB_CHECK_INIT ;
GB_RETURN_IF_NULL_OR_FAULTY (Context) ;
//--------------------------------------------------------------------------
// set the parameter
//--------------------------------------------------------------------------
va_list ap ;
switch (field)
{
case GxB_CONTEXT_NTHREADS : // same as GxB_NTHREADS
{
va_start (ap, field) ;
int value = va_arg (ap, int) ;
GB_Context_nthreads_max_set (Context, value) ;
va_end (ap) ;
}
break ;
case GxB_CONTEXT_GPU_ID : // same as GxB_GPU_ID
{
va_start (ap, field) ;
int value = va_arg (ap, int) ;
GB_Context_gpu_id_set (Context, value) ;
va_end (ap) ;
}
break ;
case GxB_CONTEXT_CHUNK : // same as GxB_CHUNK
{
va_start (ap, field) ;
double value = va_arg (ap, double) ;
GB_Context_chunk_set (Context, value) ;
va_end (ap) ;
}
break ;
default :
return (GrB_INVALID_VALUE) ;
}
return (GrB_SUCCESS) ;
}
|