How to tell if Suitesparse/CHOLMOD is using GPU?

1.5k Views Asked by At

I built Julia, which incorporates SuiteSparse, from scratch. When building the SuiteSparse dependency I ensured the instructions were followed for setting the relevant parts of the SuiteSparse_config.mk file.

However, having completed the build the execution time for c = A\b with 220k unknowns (very regular structure for A) isn't changed.

How can I test whether CHOLMOD is actively using the GPU or not?

1

There are 1 best solutions below

0
On

I did notice that something similar was asked here. It was for a C/CUDA environment, but perhaps it applies.

From that answer:

Only the long integer version of CHOLMOD can leverage GPU acceleration. The long integer version is distinguished by api calls like cholmod_l_start instead of cholmod_start.

It may be the case that Julia does not use the "long integer" version of CHOLMOD calls. I see no evidence for it in cholmod.jl.

As I said earlier, perhaps one of the Julia Language developers will pipe up if you file the issue in the repo. Otherwise, you may need to build Julia after changing cholmod.jl first.