It'd be useful in my environment to dynamically detect whether CUDA is actually available when Implicit has been built with CUDA.
Our cluster has some nodes with GPUs and some without. As it is, my experiment code has logic to detect which queue I submitted an experiment to and set use_cuda appropriately; falling back to non-CUDA operation (possibly with a warning?) if CUDA is compiled but not available at runtime would simplify driver code operating in heterogeneous environments.
It'd be useful in my environment to dynamically detect whether CUDA is actually available when Implicit has been built with CUDA.
Our cluster has some nodes with GPUs and some without. As it is, my experiment code has logic to detect which queue I submitted an experiment to and set
use_cudaappropriately; falling back to non-CUDA operation (possibly with a warning?) if CUDA is compiled but not available at runtime would simplify driver code operating in heterogeneous environments.