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
|
//------------------------------------------------------------------------------
// GB_Context_check: check and print a Context
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
//------------------------------------------------------------------------------
#include "GB.h"
GrB_Info GB_Context_check // check a GraphBLAS Context
(
const GxB_Context Context, // GraphBLAS Context to print and check
const char *name, // name of the Context, optional
int pr, // print level
FILE *f // file for output
)
{
//--------------------------------------------------------------------------
// check inputs
//--------------------------------------------------------------------------
GB_CHECK_INIT ;
GBPR0 ("\n GraphBLAS Context: %s ", ((name != NULL) ? name : "")) ;
if (Context == NULL)
{
GBPR0 ("NULL\n") ;
return (GrB_NULL_POINTER) ;
}
//--------------------------------------------------------------------------
// check object
//--------------------------------------------------------------------------
GB_CHECK_MAGIC (Context) ;
GBPR0 ("\n") ;
// name given by GrB_set, or 'GrB_*' name for built-in objects
char *given_name = Context->user_name ;
if (Context->user_name_size > 0 && given_name != NULL)
{
GBPR0 (" Context given name: [%s]\n", given_name) ;
}
int nthreads_max = GB_Context_nthreads_max_get (Context) ;
GBPR0 (" Context.nthreads: %d\n", nthreads_max) ;
double chunk = GB_Context_chunk_get (Context) ;
GBPR0 (" Context.chunk: %g\n", chunk) ;
int gpu_id = GB_Context_gpu_id_get (Context) ;
if (gpu_id >= 0) GBPR0 (" Context.gpu_id: %d\n", gpu_id) ;
return (GrB_SUCCESS) ;
}
|