Home
last modified time | relevance | path

Searched refs:queryPoolCreateInfo (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/mlir/tools/mlir-vulkan-runner/
H A DVulkanRuntime.cpp788 VkQueryPoolCreateInfo queryPoolCreateInfo = {}; in createQueryPool() local
789 queryPoolCreateInfo.sType = VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO; in createQueryPool()
790 queryPoolCreateInfo.pNext = nullptr; in createQueryPool()
791 queryPoolCreateInfo.flags = 0; in createQueryPool()
792 queryPoolCreateInfo.queryType = VK_QUERY_TYPE_TIMESTAMP; in createQueryPool()
793 queryPoolCreateInfo.queryCount = 2; in createQueryPool()
794 queryPoolCreateInfo.pipelineStatistics = 0; in createQueryPool()
795 RETURN_ON_VULKAN_ERROR(vkCreateQueryPool(device, &queryPoolCreateInfo, in createQueryPool()