Hardware Locality (hwloc) 2.13.0rc1
nvml.h
1/*
2 * SPDX-License-Identifier: BSD-3-Clause
3 * Copyright © 2012-2023 Inria. All rights reserved.
4 * See COPYING in top-level directory.
5 */
6
13
14#ifndef HWLOC_NVML_H
15#define HWLOC_NVML_H
16
17#include "hwloc.h"
18#include "hwloc/autogen/config.h"
19#include "hwloc/helper.h"
20#ifdef HWLOC_LINUX_SYS
21#include "hwloc/linux.h"
22#endif
23
24#include <nvml.h>
25
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31
39
59static __hwloc_inline int
60hwloc_nvml_get_device_cpuset(hwloc_topology_t topology __hwloc_attribute_unused,
61 nvmlDevice_t device, hwloc_cpuset_t set)
62{
63#ifdef HWLOC_LINUX_SYS
64 /* If we're on Linux, use the sysfs mechanism to get the local cpus */
65#define HWLOC_NVML_DEVICE_SYSFS_PATH_MAX 128
66 char path[HWLOC_NVML_DEVICE_SYSFS_PATH_MAX];
67 nvmlReturn_t nvres;
68 nvmlPciInfo_t pci;
69
70 if (!hwloc_topology_is_thissystem(topology)) {
71 errno = EINVAL;
72 return -1;
73 }
74
75 nvres = nvmlDeviceGetPciInfo(device, &pci);
76 if (NVML_SUCCESS != nvres) {
77 errno = EINVAL;
78 return -1;
79 }
80
81 sprintf(path, "/sys/bus/pci/devices/%04x:%02x:%02x.0/local_cpus", pci.domain, pci.bus, pci.device);
82 if (hwloc_linux_read_path_as_cpumask(path, set) < 0
83 || hwloc_bitmap_iszero(set))
85#else
86 /* Non-Linux systems simply get a full cpuset */
88#endif
89 return 0;
90}
91
105static __hwloc_inline hwloc_obj_t
107{
108 hwloc_obj_t osdev = NULL;
109 while ((osdev = hwloc_get_next_osdev(topology, osdev)) != NULL) {
110 if (HWLOC_OBJ_OSDEV_GPU == osdev->attr->osdev.type
111 && osdev->name
112 && !strncmp("nvml", osdev->name, 4)
113 && atoi(osdev->name + 4) == (int) idx)
114 return osdev;
115 }
116 return NULL;
117}
118
132static __hwloc_inline hwloc_obj_t
133hwloc_nvml_get_device_osdev(hwloc_topology_t topology, nvmlDevice_t device)
134{
135 hwloc_obj_t osdev;
136 nvmlReturn_t nvres;
137 nvmlPciInfo_t pci;
138 char uuid[64];
139
140 if (!hwloc_topology_is_thissystem(topology)) {
141 errno = EINVAL;
142 return NULL;
143 }
144
145 nvres = nvmlDeviceGetPciInfo(device, &pci);
146 if (NVML_SUCCESS != nvres)
147 return NULL;
148
149 nvres = nvmlDeviceGetUUID(device, uuid, sizeof(uuid));
150 if (NVML_SUCCESS != nvres)
151 uuid[0] = '\0';
152
153 osdev = NULL;
154 while ((osdev = hwloc_get_next_osdev(topology, osdev)) != NULL) {
155 hwloc_obj_t pcidev = osdev->parent;
156 const char *info;
157
158 if (strncmp(osdev->name, "nvml", 4))
159 continue;
160
161 if (pcidev
162 && pcidev->type == HWLOC_OBJ_PCI_DEVICE
163 && pcidev->attr->pcidev.domain == pci.domain
164 && pcidev->attr->pcidev.bus == pci.bus
165 && pcidev->attr->pcidev.dev == pci.device
166 && pcidev->attr->pcidev.func == 0)
167 return osdev;
168
169 info = hwloc_obj_get_info_by_name(osdev, "NVIDIAUUID");
170 if (info && !strcmp(info, uuid))
171 return osdev;
172 }
173
174 return NULL;
175}
176
178
179
180#ifdef __cplusplus
181} /* extern "C" */
182#endif
183
184
185#endif /* HWLOC_NVML_H */
hwloc_obj_t hwloc_get_next_osdev(hwloc_topology_t topology, hwloc_obj_t prev)
Get the next OS device in the system.
Definition helper.h:1291
int hwloc_bitmap_iszero(hwloc_const_bitmap_t bitmap)
Test whether bitmap bitmap is empty.
int hwloc_bitmap_copy(hwloc_bitmap_t dst, hwloc_const_bitmap_t src)
Copy the contents of bitmap src into the already allocated bitmap dst.
int hwloc_topology_is_thissystem(hwloc_topology_t restrict topology)
Does the topology context come from this system?
struct hwloc_topology * hwloc_topology_t
Topology context.
Definition hwloc.h:748
hwloc_const_cpuset_t hwloc_topology_get_complete_cpuset(hwloc_topology_t topology)
Get complete CPU set.
const char * hwloc_obj_get_info_by_name(hwloc_obj_t obj, const char *name)
Search the given name in object infos and return the corresponding value.
int hwloc_linux_read_path_as_cpumask(const char *path, hwloc_bitmap_t set)
Convert a linux kernel cpumask file path into a hwloc bitmap set.
hwloc_obj_t hwloc_nvml_get_device_osdev(hwloc_topology_t topology, nvmlDevice_t device)
Get the hwloc OS device object corresponding to NVML device device.
Definition nvml.h:133
int hwloc_nvml_get_device_cpuset(hwloc_topology_t topology, nvmlDevice_t device, hwloc_cpuset_t set)
Get the CPU set of processors that are physically close to NVML device device.
Definition nvml.h:60
hwloc_obj_t hwloc_nvml_get_device_osdev_by_index(hwloc_topology_t topology, unsigned idx)
Get the hwloc OS device object corresponding to the NVML device whose index is idx.
Definition nvml.h:106
hwloc_bitmap_t hwloc_cpuset_t
A CPU set is a bitmap whose bits are set according to CPU physical OS indexes.
Definition hwloc.h:165
@ HWLOC_OBJ_OSDEV_GPU
Operating system GPU device. For instance ":0.0" for a GL display, "card0" for a Linux DRM device.
Definition hwloc.h:380
@ HWLOC_OBJ_PCI_DEVICE
PCI device (filtered out by default).
Definition hwloc.h:300
struct hwloc_obj * hwloc_obj_t
Convenience typedef; a pointer to a struct hwloc_obj.
Definition hwloc.h:637
hwloc_obj_osdev_type_t type
Definition hwloc.h:722
unsigned char dev
Device number (zz in the PCI BDF notation xxxx:yy:zz.t).
Definition hwloc.h:683
unsigned char func
Function number (t in the PCI BDF notation xxxx:yy:zz.t).
Definition hwloc.h:684
unsigned short domain
Domain number (xxxx in the PCI BDF notation xxxx:yy:zz.t). Only 16bits PCI domains are supported by d...
Definition hwloc.h:676
unsigned char bus
Bus number (yy in the PCI BDF notation xxxx:yy:zz.t).
Definition hwloc.h:682
char * name
Object-specific name if any. Mostly used for identifying OS devices and Misc objects where a name str...
Definition hwloc.h:449
hwloc_obj_type_t type
Type of object.
Definition hwloc.h:439
union hwloc_obj_attr_u * attr
Object type-specific Attributes, may be NULL if no attribute value was found.
Definition hwloc.h:456
struct hwloc_obj * parent
Parent, NULL if root (Machine object).
Definition hwloc.h:487
struct hwloc_obj_attr_u::hwloc_pcidev_attr_s pcidev
struct hwloc_obj_attr_u::hwloc_osdev_attr_s osdev