You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`ext::intel::info::device::node_mask`|`unsigned int`| Returns the device node mask. |
672
+
673
+
## Aspects ##
674
+
675
+
A new aspect, `ext_intel_device_info_node_mask`, is added.
676
+
677
+
## Error Condition ##
678
+
679
+
Throws a synchronous `exception` with the `errc::feature_not_supported` error code if the device does not have `aspect::ext_intel_device_info_node_mask`.
680
+
681
+
## Example Usage ##
682
+
683
+
The device node mask can be obtained using the standard `get_info()` interface.
684
+
685
+
```
686
+
if (dev.has(aspect::ext_intel_device_info_node_mask)) {
687
+
auto node_mask = dev.get_info<ext::intel::info::device::node_mask>();
0 commit comments