FindCUDAToolkit is missing cublas dependency
In CUDA 11.0, cublas
needs to depend on cublasLt
(both shared and static). If you want to link against CUDA::cublas_static
, you find that you need to add CUDA::cublasLt_static
. But that fails to link because cmake doesn't link them in the correct order because cublasLt
has not been made a dependency of cublas
.