Open MPI logo

Portable Hardware Locality (hwloc) Documentation: v2.1.0

  |   Home   |   Support   |   FAQ   |  
intel-mic.h
1 /*
2  * Copyright © 2013-2016 Inria. All rights reserved.
3  * See COPYING in top-level directory.
4  */
5 
13 #ifndef HWLOC_INTEL_MIC_H
14 #define HWLOC_INTEL_MIC_H
15 
16 #include "hwloc.h"
17 #include "hwloc/autogen/config.h"
18 #include "hwloc/helper.h"
19 
20 #ifdef HWLOC_LINUX_SYS
21 #include "hwloc/linux.h"
22 
23 #include <dirent.h>
24 #include <string.h>
25 #endif
26 
27 #include <stdio.h>
28 #include <stdlib.h>
29 
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
35 
59 static __hwloc_inline int
60 hwloc_intel_mic_get_device_cpuset(hwloc_topology_t topology __hwloc_attribute_unused,
61  int idx __hwloc_attribute_unused,
62  hwloc_cpuset_t set)
63 {
64 #ifdef HWLOC_LINUX_SYS
65  /* If we're on Linux, use the sysfs mechanism to get the local cpus */
66 #define HWLOC_INTEL_MIC_DEVICE_SYSFS_PATH_MAX 128
67  char path[HWLOC_INTEL_MIC_DEVICE_SYSFS_PATH_MAX];
68  DIR *sysdir = NULL;
69  struct dirent *dirent;
70  unsigned pcibus, pcidev, pcifunc;
71 
72  if (!hwloc_topology_is_thissystem(topology)) {
73  errno = EINVAL;
74  return -1;
75  }
76 
77  sprintf(path, "/sys/class/mic/mic%d", idx);
78  sysdir = opendir(path);
79  if (!sysdir)
80  return -1;
81 
82  while ((dirent = readdir(sysdir)) != NULL) {
83  if (sscanf(dirent->d_name, "pci_%02x:%02x.%02x", &pcibus, &pcidev, &pcifunc) == 3) {
84  sprintf(path, "/sys/class/mic/mic%d/pci_%02x:%02x.%02x/local_cpus", idx, pcibus, pcidev, pcifunc);
85  if (hwloc_linux_read_path_as_cpumask(path, set) < 0
86  || hwloc_bitmap_iszero(set))
88  break;
89  }
90  }
91 
92  closedir(sysdir);
93 #else
94  /* Non-Linux systems simply get a full cpuset */
96 #endif
97  return 0;
98 }
99 
113 static __hwloc_inline hwloc_obj_t
115  unsigned idx)
116 {
117  hwloc_obj_t osdev = NULL;
118  while ((osdev = hwloc_get_next_osdev(topology, osdev)) != NULL) {
119  if (HWLOC_OBJ_OSDEV_COPROC == osdev->attr->osdev.type
120  && osdev->name
121  && !strncmp("mic", osdev->name, 3)
122  && atoi(osdev->name + 3) == (int) idx)
123  return osdev;
124  }
125  return NULL;
126 }
127 
131 #ifdef __cplusplus
132 } /* extern "C" */
133 #endif
134 
135 
136 #endif /* HWLOC_INTEL_MIC_H */
hwloc_const_cpuset_t hwloc_topology_get_complete_cpuset(hwloc_topology_t topology)
Get complete CPU set.
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.
struct hwloc_topology * hwloc_topology_t
Topology context.
Definition: hwloc.h:667
static 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:1129
int hwloc_topology_is_thissystem(hwloc_topology_t restrict topology)
Does the topology context come from this system?
char * name
Object-specific name if any. Mostly used for identifying OS devices and Misc objects where a name str...
Definition: hwloc.h:393
hwloc_obj_osdev_type_t type
Definition: hwloc.h:641
union hwloc_obj_attr_u * attr
Object type-specific Attributes, may be NULL if no attribute value was found.
Definition: hwloc.h:400
Structure of a topology object.
Definition: hwloc.h:381
static hwloc_obj_t hwloc_intel_mic_get_device_osdev_by_index(hwloc_topology_t topology, unsigned idx)
Get the hwloc OS device object corresponding to the MIC device for the given index.
Definition: intel-mic.h:114
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:140
Operating system co-processor device. For instance "mic0" for a Xeon Phi (MIC) on Linux...
Definition: hwloc.h:336
static int hwloc_intel_mic_get_device_cpuset(hwloc_topology_t topology, int idx, hwloc_cpuset_t set)
Get the CPU set of logical processors that are physically close to MIC device whose index is idx...
Definition: intel-mic.h:60
struct hwloc_obj_attr_u::hwloc_osdev_attr_s osdev
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_bitmap_iszero(hwloc_const_bitmap_t bitmap)
Test whether bitmap bitmap is empty.