GraphBLAS / graphblas-api-c

Other
7 stars 3 forks source link

BB-7: Query global execution mode #4

Closed mcmillan03 closed 9 months ago

mcmillan03 commented 3 years ago

To query the mode, for example (from Suitesparse:GraphBLAS):

GrB_mode mode ;
GxB_get (GxB_MODE, &mode) ;
tgmattso commented 3 years ago

Yes. Full introspection is needed. For every object defined in GraphBLAS and every mode, you can query its value (a GrB_get())

manoj63 commented 1 year ago

Seems a reasonable philosophy. Anything that can be set by an application should be query-able also, at least for debugging.