3c49c3ab0d
When there are multiple management libraries installed on a system not every one will be compatible with the current driver. This change improves our management library algorithm to build up a set of discovered libraries based on glob patterns, and then try all of them until we're able to load one without error.
106 lines
No EOL
2.7 KiB
C
106 lines
No EOL
2.7 KiB
C
#ifndef __APPLE__
|
|
|
|
#include "gpu_info_rocm.h"
|
|
|
|
#include <string.h>
|
|
|
|
void rocm_init(char *rocm_lib_path, rocm_init_resp_t *resp) {
|
|
rsmi_status_t ret;
|
|
resp->err = NULL;
|
|
const int buflen = 256;
|
|
char buf[buflen + 1];
|
|
int i;
|
|
struct lookup {
|
|
char *s;
|
|
void **p;
|
|
} l[4] = {
|
|
{"rsmi_init", (void *)&resp->rh.initFn},
|
|
{"rsmi_shut_down", (void *)&resp->rh.shutdownFn},
|
|
{"rsmi_dev_memory_total_get", (void *)&resp->rh.totalMemFn},
|
|
{"rsmi_dev_memory_usage_get", (void *)&resp->rh.usageMemFn},
|
|
// { "rsmi_dev_id_get", (void*)&resp->rh.getHandle },
|
|
};
|
|
|
|
resp->rh.handle = LOAD_LIBRARY(rocm_lib_path, RTLD_LAZY);
|
|
if (!resp->rh.handle) {
|
|
char *msg = LOAD_ERR();
|
|
snprintf(buf, buflen,
|
|
"Unable to load %s library to query for Radeon GPUs: %s\n",
|
|
rocm_lib_path, msg);
|
|
free(msg);
|
|
resp->err = strdup(buf);
|
|
return;
|
|
}
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
*l[i].p = LOAD_SYMBOL(resp->rh.handle, l[i].s);
|
|
if (!l[i].p) {
|
|
UNLOAD_LIBRARY(resp->rh.handle);
|
|
resp->rh.handle = NULL;
|
|
char *msg = LOAD_ERR();
|
|
snprintf(buf, buflen, "symbol lookup for %s failed: %s", l[i].s,
|
|
msg);
|
|
free(msg);
|
|
resp->err = strdup(buf);
|
|
return;
|
|
}
|
|
}
|
|
|
|
ret = (*resp->rh.initFn)(0);
|
|
if (ret != RSMI_STATUS_SUCCESS) {
|
|
UNLOAD_LIBRARY(resp->rh.handle);
|
|
resp->rh.handle = NULL;
|
|
snprintf(buf, buflen, "rocm vram init failure: %d", ret);
|
|
resp->err = strdup(buf);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
void rocm_check_vram(rocm_handle_t h, mem_info_t *resp) {
|
|
resp->err = NULL;
|
|
// uint32_t num_devices;
|
|
// uint16_t device;
|
|
uint64_t totalMem = 0;
|
|
uint64_t usedMem = 0;
|
|
rsmi_status_t ret;
|
|
const int buflen = 256;
|
|
char buf[buflen + 1];
|
|
int i;
|
|
|
|
if (h.handle == NULL) {
|
|
resp->err = strdup("rocm handle not initialized");
|
|
return;
|
|
}
|
|
|
|
// TODO - iterate through devices... ret =
|
|
// rsmi_num_monitor_devices(&num_devices);
|
|
|
|
// ret = (*h.getHandle)(0, &device);
|
|
// if (ret != RSMI_STATUS_SUCCESS) {
|
|
// printf("rocm vram device lookup failure: %d\n", ret);
|
|
// return -1;
|
|
// }
|
|
|
|
// Get total memory - used memory for available memory
|
|
ret = (*h.totalMemFn)(0, RSMI_MEM_TYPE_VRAM, &totalMem);
|
|
if (ret != RSMI_STATUS_SUCCESS) {
|
|
snprintf(buf, buflen, "rocm total mem lookup failure: %d", ret);
|
|
resp->err = strdup(buf);
|
|
return;
|
|
}
|
|
ret = (*h.usageMemFn)(0, RSMI_MEM_TYPE_VRAM, &usedMem);
|
|
if (ret != RSMI_STATUS_SUCCESS) {
|
|
snprintf(buf, buflen, "rocm usage mem lookup failure: %d", ret);
|
|
resp->err = strdup(buf);
|
|
return;
|
|
}
|
|
|
|
// TODO: set this to the actual number of devices
|
|
resp->count = 1;
|
|
resp->total = totalMem;
|
|
resp->free = totalMem - usedMem;
|
|
return;
|
|
}
|
|
|
|
#endif // __APPLE__
|