Hardware Locality (hwloc)  2.14.0rc2-git
gl.h
1 /*
2  * SPDX-License-Identifier: BSD-3-Clause
3  * Copyright © 2012 Blue Brain Project, EPFL. All rights reserved.
4  * Copyright © 2012-2023 Inria. All rights reserved.
5  * See COPYING in top-level directory.
6  */
7 
15 #ifndef HWLOC_GL_H
16 #define HWLOC_GL_H
17 
18 #include "hwloc.h"
19 
20 #include <stdio.h>
21 #include <string.h>
22 
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
28 
61 static __hwloc_inline hwloc_obj_t
63  unsigned port, unsigned device)
64 {
65  unsigned x = (unsigned) -1, y = (unsigned) -1;
66  hwloc_obj_t osdev = NULL;
67  while ((osdev = hwloc_get_next_osdev(topology, osdev)) != NULL) {
68  if (HWLOC_OBJ_OSDEV_GPU == osdev->attr->osdev.type
69  && osdev->name
70  && sscanf(osdev->name, ":%u.%u", &x, &y) == 2
71  && port == x && device == y)
72  return osdev;
73  }
74  errno = EINVAL;
75  return NULL;
76 }
77 
96 static __hwloc_inline hwloc_obj_t
98  const char *name)
99 {
100  hwloc_obj_t osdev = NULL;
101  while ((osdev = hwloc_get_next_osdev(topology, osdev)) != NULL) {
102  if (HWLOC_OBJ_OSDEV_GPU == osdev->attr->osdev.type
103  && osdev->name
104  && !strcmp(name, osdev->name))
105  return osdev;
106  }
107  errno = EINVAL;
108  return NULL;
109 }
110 
128 static __hwloc_inline int
129 hwloc_gl_get_display_by_osdev(hwloc_topology_t topology __hwloc_attribute_unused,
130  hwloc_obj_t osdev,
131  unsigned *port, unsigned *device)
132 {
133  unsigned x = -1, y = -1;
134  if (HWLOC_OBJ_OSDEV_GPU == osdev->attr->osdev.type
135  && sscanf(osdev->name, ":%u.%u", &x, &y) == 2) {
136  *port = x;
137  *device = y;
138  return 0;
139  }
140  errno = EINVAL;
141  return -1;
142 }
143 
147 #ifdef __cplusplus
148 } /* extern "C" */
149 #endif
150 
151 
152 #endif /* HWLOC_GL_H */
153 
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
struct hwloc_topology * hwloc_topology_t
Topology context.
Definition: hwloc.h:748
hwloc_obj_t hwloc_gl_get_display_osdev_by_port_device(hwloc_topology_t topology, unsigned port, unsigned device)
Get the hwloc OS device object corresponding to the OpenGL display given by port and device index.
Definition: gl.h:62
int hwloc_gl_get_display_by_osdev(hwloc_topology_t topology, hwloc_obj_t osdev, unsigned *port, unsigned *device)
Get the OpenGL display port and device corresponding to the given hwloc OS object.
Definition: gl.h:129
hwloc_obj_t hwloc_gl_get_display_osdev_by_name(hwloc_topology_t topology, const char *name)
Get the hwloc OS device object corresponding to the OpenGL display given by name.
Definition: gl.h:97
@ 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_osdev_type_t type
Definition: hwloc.h:722
Structure of a topology object.
Definition: hwloc.h:437
char * name
Object-specific name if any. Mostly used for identifying OS devices and Misc objects where a name str...
Definition: hwloc.h:449
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_attr_u::hwloc_osdev_attr_s osdev