我正在通过 API 规范 学习 Vulkan,但对 Vulkan 中的物理设备部分有些困惑。我的电脑只有一块 Intel 的物理显卡,但 vkEnumeratePhysicalDevices 返回的结果却显示有 2 个物理设备。这两个设备看起来是相同的,但它们的队列标志(queue flags)似乎有所不同,并且这些标志没有完全文档化(实际上文档中只解释到了标志 8,而在第二个队列中,我看到的标志值是 16 和 32)。
以下是 VkQueueFlagBits 的定义:
typedef enum VkQueueFlagBits {
VK_QUEUE_GRAPHICS_BIT = 0x00000001, // 图形队列
VK_QUEUE_COMPUTE_BIT = 0x00000002, // 计算队列
VK_QUEUE_TRANSFER_BIT = 0x00000004, // 转移队列
VK_QUEUE_SPARSE_BINDING_BIT = 0x00000008, // 稀疏绑定队列
} VkQueueFlagBits;
这是我的 Vulkan 代码输出结果:
GPU count: 2 ( physical devices )
Physical Device 0:
Device API version: 1.0.42 - 4194346
Device Vendor Id: 0x8086
Device Id: 1916
Device Driver version: 0.0.1 - 1
Device type: 1
Device Name: Intel(R) HD Graphics 520 (Skylake GT2)
Device Pipeline UID: f557cfd4
Queue Properties:
Flags: 7
Count: 1
ts Valid Bits: 24
Physical Device 1:
Device API version: 1.0.42 - 4194346
Device Vendor Id: 0x8086
Device Id: 1916
Device Driver version: 0.0.1 - 1
Device type: 1
Device Name: Intel(R) HD Graphics 520 (Skylake GT2)
Device Pipeline UID: f557cfd4
Queue Properties:
Flags: 49
Count: 0
ts Valid Bits: 1
有人可以帮我理解下为什么同一个实际设备会返回两个物理设备,以及那些未记录的标志是什么吗?