1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
use libc::{c_int, c_uint, c_ulonglong, c_char, c_void, c_float, c_ushort, c_uchar};
use std::ffi::CString;
use std::fmt;
use ffi::ObjectType;
use ffi;
use bitmap::{IntHwlocBitmap, CpuSet, NodeSet};
#[repr(C)]
pub struct TopologyObject {
object_type: ObjectType,
os_index: c_uint,
name: *mut c_char,
memory: TopologyObjectMemory,
attr: *mut TopologyObjectAttributes,
depth: c_uint,
logical_index: c_uint,
os_level: c_int,
next_cousin: *mut TopologyObject,
prev_cousin: *mut TopologyObject,
parent: *mut TopologyObject,
sibling_rank: c_uint,
next_sibling: *mut TopologyObject,
prev_sibling: *mut TopologyObject,
arity: c_uint,
children: *mut *mut TopologyObject,
first_child: *mut TopologyObject,
last_child: *mut TopologyObject,
userdata: *mut c_void,
cpuset: *mut IntHwlocBitmap,
complete_cpuset: *mut IntHwlocBitmap,
online_cpuset: *mut IntHwlocBitmap,
allowed_cpuset: *mut IntHwlocBitmap,
nodeset: *mut IntHwlocBitmap,
complete_nodeset: *mut IntHwlocBitmap,
allowed_nodeset: *mut IntHwlocBitmap,
distances: *mut *mut TopologyObjectDistances,
distances_count: c_uint,
infos: *mut TopologyObjectInfo,
infos_count: c_uint,
symmetric_subtree: c_int,
}
impl TopologyObject {
pub fn object_type(&self) -> ObjectType {
self.object_type.clone()
}
pub fn memory(&self) -> &TopologyObjectMemory {
&self.memory
}
pub fn os_index(&self) -> u32 {
self.os_index
}
pub fn name(&self) -> String {
let c_str = unsafe { CString::from_raw(self.name) };
c_str.to_str().unwrap().to_string()
}
pub fn depth(&self) -> u32 {
self.depth
}
pub fn logical_index(&self) -> u32 {
self.logical_index
}
pub fn sibling_rank(&self) -> u32 {
self.sibling_rank
}
pub fn arity(&self) -> u32 {
self.arity
}
pub fn symmetric_subtree(&self) -> bool {
self.symmetric_subtree == 1
}
pub fn children(&self) -> Vec<&TopologyObject> {
(0..self.arity())
.map(|i| unsafe { &**self.children.offset(i as isize) })
.collect::<Vec<&TopologyObject>>()
}
pub fn next_cousin(&self) -> Option<&TopologyObject> {
self.deref_topology(&self.next_cousin)
}
pub fn prev_cousin(&self) -> Option<&TopologyObject> {
self.deref_topology(&self.prev_cousin)
}
pub fn first_child(&self) -> Option<&TopologyObject> {
self.deref_topology(&self.first_child)
}
pub fn last_child(&self) -> Option<&TopologyObject> {
self.deref_topology(&self.last_child)
}
pub fn parent(&self) -> Option<&TopologyObject> {
self.deref_topology(&self.parent)
}
pub fn prev_sibling(&self) -> Option<&TopologyObject> {
self.deref_topology(&self.prev_sibling)
}
pub fn next_sibling(&self) -> Option<&TopologyObject> {
self.deref_topology(&self.next_sibling)
}
pub fn cpuset(&self) -> Option<CpuSet> {
self.deref_cpuset(self.cpuset)
}
pub fn complete_cpuset(&self) -> Option<CpuSet> {
self.deref_cpuset(self.complete_cpuset)
}
pub fn online_cpuset(&self) -> Option<CpuSet> {
self.deref_cpuset(self.online_cpuset)
}
pub fn allowed_cpuset(&self) -> Option<CpuSet> {
self.deref_cpuset(self.allowed_cpuset)
}
pub fn nodeset(&self) -> Option<NodeSet> {
self.deref_nodeset(self.nodeset)
}
pub fn complete_nodeset(&self) -> Option<NodeSet> {
self.deref_nodeset(self.complete_nodeset)
}
pub fn allowed_nodeset(&self) -> Option<NodeSet> {
self.deref_nodeset(self.allowed_nodeset)
}
fn deref_topology(&self, p: &*mut TopologyObject) -> Option<&TopologyObject> {
unsafe {
if p.is_null() {
None
} else {
Some(&**p)
}
}
}
fn deref_cpuset(&self, p: *mut IntHwlocBitmap) -> Option<CpuSet> {
if p.is_null() {
None
} else {
Some(CpuSet::from_raw(p, false))
}
}
fn deref_nodeset(&self, p: *mut IntHwlocBitmap) -> Option<NodeSet> {
if p.is_null() {
None
} else {
Some(NodeSet::from_raw(p, false))
}
}
pub fn cache_attributes(&self) -> Option<&TopologyObjectCacheAttributes> {
let cache_ptr = unsafe { (*self.attr).cache() };
if cache_ptr.is_null() {
None
} else {
unsafe { Some(&*cache_ptr) }
}
}
}
impl fmt::Display for TopologyObject {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let type_str = CString::new("").unwrap();
let type_str_ptr = type_str.into_raw();
let attr_str = CString::new("").unwrap();
let attr_str_ptr = attr_str.into_raw();
let separator = CString::new(" ").unwrap();
let separator_ptr = separator.into_raw();
unsafe {
ffi::hwloc_obj_type_snprintf(type_str_ptr, 64, &*self as *const TopologyObject, false);
ffi::hwloc_obj_attr_snprintf(attr_str_ptr,
2048,
&*self as *const TopologyObject,
separator_ptr,
false);
CString::from_raw(separator_ptr);
write!(f,
"{} ({})",
CString::from_raw(type_str_ptr).to_str().unwrap(),
CString::from_raw(attr_str_ptr).to_str().unwrap())
}
}
}
#[repr(C)]
pub struct TopologyObjectMemory {
total_memory: c_ulonglong,
local_memory: c_ulonglong,
page_types_len: c_uint,
page_types: *mut TopologyObjectMemoryPageType,
}
impl TopologyObjectMemory {
pub fn total_memory(&self) -> u64 {
self.total_memory
}
pub fn local_memory(&self) -> u64 {
self.local_memory
}
}
#[repr(C)]
pub struct TopologyObjectMemoryPageType {
size: c_ulonglong,
count: c_ulonglong,
}
#[repr(C)]
pub struct TopologyObjectInfo {
name: *mut c_char,
value: *mut c_char,
}
#[repr(C)]
pub struct TopologyObjectDistances {
relative_depth: c_uint,
nbobjs: c_uint,
latency: *mut c_float,
latency_max: c_float,
latency_base: c_float,
}
impl TopologyObjectDistances {
pub fn relative_depth(&self) -> u32 {
self.relative_depth
}
pub fn number_of_objects(&self) -> u32 {
self.nbobjs
}
pub fn max_latency(&self) -> f32 {
self.latency_max
}
pub fn base_latency(&self) -> f32 {
self.latency_base
}
}
#[repr(C)]
struct TopologyObjectAttributes {
_bindgen_data_: [u64; 5usize],
}
impl TopologyObjectAttributes {
pub unsafe fn cache(&mut self) -> *mut TopologyObjectCacheAttributes {
let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_);
::std::mem::transmute(raw.offset(0))
}
pub unsafe fn group(&mut self) -> *mut TopologyObjectGroupAttributes {
let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_);
::std::mem::transmute(raw.offset(0))
}
pub unsafe fn pcidev(&mut self) -> *mut TopologyObjectPCIDevAttributes {
let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_);
::std::mem::transmute(raw.offset(0))
}
pub unsafe fn bridge(&mut self) -> *mut TopologyObjectBridgeAttributes {
let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_);
::std::mem::transmute(raw.offset(0))
}
pub unsafe fn osdev(&mut self) -> *mut TopologyObjectOSDevAttributes {
let raw: *mut u8 = ::std::mem::transmute(&self._bindgen_data_);
::std::mem::transmute(raw.offset(0))
}
}
#[repr(C)]
pub struct TopologyObjectCacheAttributes {
pub size: c_ulonglong,
pub depth: c_uint,
pub linesize: c_uint,
pub associativity: c_int,
pub _type: TopologyObjectCacheType,
}
impl TopologyObjectCacheAttributes {
pub fn size(&self) -> u64 {
self.size
}
pub fn depth(&self) -> u32 {
self.depth
}
}
#[repr(C)]
pub enum TopologyObjectCacheType {
Unified = 0,
Data = 1,
Instruction = 2,
}
#[repr(C)]
pub struct TopologyObjectGroupAttributes {
depth: c_uint,
}
#[repr(C)]
pub struct TopologyObjectPCIDevAttributes {
domain: c_ushort,
bus: c_uchar,
dev: c_uchar,
func: c_uchar,
class_id: c_ushort,
vendor_id: c_ushort,
device_id: c_ushort,
subvendor_id: c_ushort,
subdevice_id: c_ushort,
revision: c_uchar,
linkspeed: c_float,
}
#[repr(C)]
pub struct TopologyObjectBridgeAttributes {
upstream_type: TopologyObjectBridgeType,
downstream_type: TopologyObjectBridgeType,
depth: c_uint,
}
#[repr(C)]
pub enum TopologyObjectBridgeType {
Host = 0,
PCI = 1,
}
#[repr(C)]
pub struct TopologyObjectOSDevAttributes {
_type: TopologyObjectOSDevType,
}
#[repr(C)]
pub enum TopologyObjectOSDevType {
Block = 0,
GPU = 1,
Network = 2,
OpenFabrics = 3,
DMA = 4,
COPROC = 5,
}