Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion quadrants/rhi/cuda/cuda_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ bool CUBLASDriver::load_cublas() {
* it would confict with torch's cublas. When using libcublas.so.11, the
* torch's cublas will be loaded.
*/
cublas_loaded_ = try_load_lib_any_version("cublas", "64_", {11, 12, 10});
cublas_loaded_ = try_load_lib_any_version("cublas", "64_", {11, 12, 13, 10});
if (!cublas_loaded_) {
return false;
}
Expand Down