Usually this warning is set because you don't have a GPU installed, but you have a valid CUDA toolkit. If you don't have CUDA/cublas etc you shouldn't see this warning at all , and GPU support will just be disabled.
You can filter out this warning by running warnings.filterwarnings("ignore", module="implicit.gpu") in your code
Usually this warning is set because you don't have a GPU installed, but you have a valid CUDA toolkit. If you don't have CUDA/cublas etc you shouldn't see this warning at all , and GPU support will just be disabled.
You can filter out this warning by running
warnings.filterwarnings("ignore", module="implicit.gpu")
in your code