We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 431ad4b commit f600f4dCopy full SHA for f600f4d
tensorflow/stream_executor/cuda/cuda_diagnostics.cc
@@ -165,7 +165,7 @@ port::StatusOr<DriverVersion> Diagnostician::FindDsoVersion() {
165
// DSO and yields its version number into the callback data, when found.
166
auto iterate_phdr =
167
[](struct dl_phdr_info *info, size_t size, void *data) -> int {
168
- if (strstr(info->dlpi_name, "libcuda.so")) {
+ if (strstr(info->dlpi_name, "libcuda.so.1")) {
169
VLOG(1) << "found DLL info with name: " << info->dlpi_name;
170
char resolved_path[PATH_MAX] = {0};
171
if (realpath(info->dlpi_name, resolved_path) == nullptr) {
0 commit comments