gpu_info_cuda.c 6.81 KB
Newer Older
1
2
3
4
5
6
#ifndef __APPLE__  // TODO - maybe consider nvidia support on intel macs?

#include "gpu_info_cuda.h"

#include <string.h>

7
void cuda_init(char *cuda_lib_path, cuda_init_resp_t *resp) {
8
  nvmlReturn_t ret;
9
10
11
12
13
14
15
16
  resp->err = NULL;
  const int buflen = 256;
  char buf[buflen + 1];
  int i;

  struct lookup {
    char *s;
    void **p;
17
18
19
20
21
22
23
  } l[] = {
      {"nvmlInit_v2", (void *)&resp->ch.nvmlInit_v2},
      {"nvmlShutdown", (void *)&resp->ch.nvmlShutdown},
      {"nvmlDeviceGetHandleByIndex", (void *)&resp->ch.nvmlDeviceGetHandleByIndex},
      {"nvmlDeviceGetMemoryInfo", (void *)&resp->ch.nvmlDeviceGetMemoryInfo},
      {"nvmlDeviceGetCount_v2", (void *)&resp->ch.nvmlDeviceGetCount_v2},
      {"nvmlDeviceGetCudaComputeCapability", (void *)&resp->ch.nvmlDeviceGetCudaComputeCapability},
24
25
26
27
28
29
      {"nvmlSystemGetDriverVersion", (void *)&resp->ch.nvmlSystemGetDriverVersion},
      {"nvmlDeviceGetName", (void *)&resp->ch.nvmlDeviceGetName},
      {"nvmlDeviceGetSerial", (void *)&resp->ch.nvmlDeviceGetSerial},
      {"nvmlDeviceGetVbiosVersion", (void *)&resp->ch.nvmlDeviceGetVbiosVersion},
      {"nvmlDeviceGetBoardPartNumber", (void *)&resp->ch.nvmlDeviceGetBoardPartNumber},
      {"nvmlDeviceGetBrand", (void *)&resp->ch.nvmlDeviceGetBrand},
30
      {NULL, NULL},
31
32
  };

33
  resp->ch.handle = LOAD_LIBRARY(cuda_lib_path, RTLD_LAZY);
34
  if (!resp->ch.handle) {
35
    char *msg = LOAD_ERR();
36
    LOG(resp->ch.verbose, "library %s load err: %s\n", cuda_lib_path, msg);
37
38
    snprintf(buf, buflen,
             "Unable to load %s library to query for Nvidia GPUs: %s",
39
             cuda_lib_path, msg);
40
    free(msg);
41
42
43
44
    resp->err = strdup(buf);
    return;
  }

45
46
47
48
49
50
51
  // TODO once we've squashed the remaining corner cases remove this log
  LOG(resp->ch.verbose, "wiring nvidia management library functions in %s\n", cuda_lib_path);
  
  for (i = 0; l[i].s != NULL; i++) {
    // TODO once we've squashed the remaining corner cases remove this log
    LOG(resp->ch.verbose, "dlsym: %s\n", l[i].s);

52
53
54
    *l[i].p = LOAD_SYMBOL(resp->ch.handle, l[i].s);
    if (!l[i].p) {
      resp->ch.handle = NULL;
55
      char *msg = LOAD_ERR();
56
57
      LOG(resp->ch.verbose, "dlerr: %s\n", msg);
      UNLOAD_LIBRARY(resp->ch.handle);
58
      snprintf(buf, buflen, "symbol lookup for %s failed: %s", l[i].s,
59
60
               msg);
      free(msg);
61
62
63
64
      resp->err = strdup(buf);
      return;
    }
  }
65

66
  ret = (*resp->ch.nvmlInit_v2)();
67
  if (ret != NVML_SUCCESS) {
68
    LOG(resp->ch.verbose, "nvmlInit_v2 err: %d\n", ret);
69
70
    UNLOAD_LIBRARY(resp->ch.handle);
    resp->ch.handle = NULL;
71
72
    snprintf(buf, buflen, "nvml vram init failure: %d", ret);
    resp->err = strdup(buf);
73
    return;
74
75
  }

76
77
78
79
80
81
82
  // Report driver version if we're in verbose mode, ignore errors
  ret = (*resp->ch.nvmlSystemGetDriverVersion)(buf, buflen);
  if (ret != NVML_SUCCESS) {
    LOG(resp->ch.verbose, "nvmlSystemGetDriverVersion failed: %d\n", ret);
  } else {
    LOG(resp->ch.verbose, "CUDA driver version: %s\n", buf);
  }
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
}

void cuda_check_vram(cuda_handle_t h, mem_info_t *resp) {
  resp->err = NULL;
  nvmlDevice_t device;
  nvmlMemory_t memInfo = {0};
  nvmlReturn_t ret;
  const int buflen = 256;
  char buf[buflen + 1];
  int i;

  if (h.handle == NULL) {
    resp->err = strdup("nvml handle sn't initialized");
    return;
  }

99
  ret = (*h.nvmlDeviceGetCount_v2)(&resp->count);
100
  if (ret != NVML_SUCCESS) {
101
    snprintf(buf, buflen, "unable to get device count: %d", ret);
102
103
104
105
    resp->err = strdup(buf);
    return;
  }

106
107
  resp->total = 0;
  resp->free = 0;
108
  for (i = 0; i < resp->count; i++) {
109
    ret = (*h.nvmlDeviceGetHandleByIndex)(i, &device);
110
111
112
113
114
115
    if (ret != NVML_SUCCESS) {
      snprintf(buf, buflen, "unable to get device handle %d: %d", i, ret);
      resp->err = strdup(buf);
      return;
    }

116
    ret = (*h.nvmlDeviceGetMemoryInfo)(device, &memInfo);
117
118
119
120
121
    if (ret != NVML_SUCCESS) {
      snprintf(buf, buflen, "device memory info lookup failure %d: %d", i, ret);
      resp->err = strdup(buf);
      return;
    }
122
123
124
125
126
    if (h.verbose) {
      nvmlBrandType_t brand = 0;
      // When in verbose mode, report more information about
      // the card we discover, but don't fail on error
      ret = (*h.nvmlDeviceGetName)(device, buf, buflen);
Daniel Hiltgen's avatar
Daniel Hiltgen committed
127
      if (ret != NVML_SUCCESS) {
128
129
130
131
132
        LOG(h.verbose, "nvmlDeviceGetName failed: %d\n", ret);
      } else {
        LOG(h.verbose, "[%d] CUDA device name: %s\n", i, buf);
      }
      ret = (*h.nvmlDeviceGetBoardPartNumber)(device, buf, buflen);
Daniel Hiltgen's avatar
Daniel Hiltgen committed
133
      if (ret != NVML_SUCCESS) {
134
135
136
137
138
        LOG(h.verbose, "nvmlDeviceGetBoardPartNumber failed: %d\n", ret);
      } else {
        LOG(h.verbose, "[%d] CUDA part number: %s\n", i, buf);
      }
      ret = (*h.nvmlDeviceGetSerial)(device, buf, buflen);
Daniel Hiltgen's avatar
Daniel Hiltgen committed
139
      if (ret != NVML_SUCCESS) {
140
141
142
143
144
        LOG(h.verbose, "nvmlDeviceGetSerial failed: %d\n", ret);
      } else {
        LOG(h.verbose, "[%d] CUDA S/N: %s\n", i, buf);
      }
      ret = (*h.nvmlDeviceGetVbiosVersion)(device, buf, buflen);
Daniel Hiltgen's avatar
Daniel Hiltgen committed
145
      if (ret != NVML_SUCCESS) {
146
147
148
149
150
        LOG(h.verbose, "nvmlDeviceGetVbiosVersion failed: %d\n", ret);
      } else {
        LOG(h.verbose, "[%d] CUDA vbios version: %s\n", i, buf);
      }
      ret = (*h.nvmlDeviceGetBrand)(device, &brand);
Daniel Hiltgen's avatar
Daniel Hiltgen committed
151
      if (ret != NVML_SUCCESS) {
152
153
154
155
156
157
158
        LOG(h.verbose, "nvmlDeviceGetBrand failed: %d\n", ret);
      } else {
        LOG(h.verbose, "[%d] CUDA brand: %d\n", i, brand);
      }
    }

    LOG(h.verbose, "[%d] CUDA totalMem %ld\n", i, memInfo.total);
159
    LOG(h.verbose, "[%d] CUDA usedMem %ld\n", i, memInfo.used);
160
161
162

    resp->total += memInfo.total;
    resp->free += memInfo.free;
163
164
  }
}
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183

void cuda_compute_capability(cuda_handle_t h, cuda_compute_capability_t *resp) {
  resp->err = NULL;
  resp->major = 0;
  resp->minor = 0;
  nvmlDevice_t device;
  int major = 0;
  int minor = 0;
  nvmlReturn_t ret;
  const int buflen = 256;
  char buf[buflen + 1];
  int i;

  if (h.handle == NULL) {
    resp->err = strdup("nvml handle not initialized");
    return;
  }

  unsigned int devices;
184
  ret = (*h.nvmlDeviceGetCount_v2)(&devices);
185
186
187
188
189
190
191
  if (ret != NVML_SUCCESS) {
    snprintf(buf, buflen, "unable to get device count: %d", ret);
    resp->err = strdup(buf);
    return;
  }

  for (i = 0; i < devices; i++) {
192
    ret = (*h.nvmlDeviceGetHandleByIndex)(i, &device);
193
194
195
196
197
198
    if (ret != NVML_SUCCESS) {
      snprintf(buf, buflen, "unable to get device handle %d: %d", i, ret);
      resp->err = strdup(buf);
      return;
    }

199
    ret = (*h.nvmlDeviceGetCudaComputeCapability)(device, &major, &minor);
200
201
202
203
204
205
206
207
208
209
210
211
212
213
    if (ret != NVML_SUCCESS) {
      snprintf(buf, buflen, "device compute capability lookup failure %d: %d", i, ret);
      resp->err = strdup(buf);
      return;
    }
    // Report the lowest major.minor we detect as that limits our compatibility
    if (resp->major == 0 || resp->major > major ) {
      resp->major = major;
      resp->minor = minor;
    } else if ( resp->major == major && resp->minor > minor ) {
      resp->minor = minor;
    }
  }
}
214
#endif  // __APPLE__