Home
last modified time | relevance | path

Searched refs:physicalDeviceProperties (Results 1 - 25 of 33) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/tests/VulkanUnitTests/
H A DBasicTests.cpp95 VkPhysicalDeviceProperties physicalDeviceProperties; in TEST_F() local
96 driver.vkGetPhysicalDeviceProperties(pPhysicalDevice, &physicalDeviceProperties); in TEST_F()
97 EXPECT_EQ(physicalDeviceProperties.apiVersion, expectedVersion); in TEST_F()
98 EXPECT_EQ(physicalDeviceProperties.deviceID, 0xC0DEU); in TEST_F()
99 EXPECT_EQ(physicalDeviceProperties.deviceType, VK_PHYSICAL_DEVICE_TYPE_CPU); in TEST_F()
101 EXPECT_NE(strstr(physicalDeviceProperties.deviceName, "SwiftShader Device"), nullptr); in TEST_F()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsSizeControlTests.cpp633 const auto& physicalDeviceProperties = context.getDeviceProperties(); in test() local
634 const auto& maxWorkGroupSize = physicalDeviceProperties.limits.maxComputeWorkGroupSize; in test()
635 const auto& maxInvocations = physicalDeviceProperties.limits.maxComputeWorkGroupInvocations; in test()
801 const VkPhysicalDeviceProperties& physicalDeviceProperties = context.getDeviceProperties(); in testRequireFullSubgroups() local
803 const auto& maxWorkGroupSize = physicalDeviceProperties.limits.maxComputeWorkGroupSize; in testRequireFullSubgroups()
804 const auto& maxInvocations = physicalDeviceProperties.limits.maxComputeWorkGroupInvocations; in testRequireFullSubgroups()
854 const VkPhysicalDeviceProperties& physicalDeviceProperties = context.getDeviceProperties(); in testRequireSubgroupSize() local
857 const deUint32 maxTotalLocalSize = (deUint32)min<deUint64>(maxSubgroupLimitSize, physicalDeviceProperties.limits.maxComputeWorkGroupInvocations); in testRequireSubgroupSize()
858 const auto& maxWorkGroupSize = physicalDeviceProperties.limits.maxComputeWorkGroupSize; in testRequireSubgroupSize()
859 const auto& maxInvocations = physicalDeviceProperties in testRequireSubgroupSize()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/subgroups/
H A DvktSubgroupsSizeControlTests.cpp635 const auto& physicalDeviceProperties = context.getDeviceProperties(); in test() local
636 const auto& maxWorkGroupSize = physicalDeviceProperties.limits.maxComputeWorkGroupSize; in test()
637 const auto& maxInvocations = physicalDeviceProperties.limits.maxComputeWorkGroupInvocations; in test()
799 const VkPhysicalDeviceProperties& physicalDeviceProperties = context.getDeviceProperties(); in testRequireFullSubgroups() local
801 const auto& maxWorkGroupSize = physicalDeviceProperties.limits.maxComputeWorkGroupSize; in testRequireFullSubgroups()
802 const auto& maxInvocations = physicalDeviceProperties.limits.maxComputeWorkGroupInvocations; in testRequireFullSubgroups()
849 const VkPhysicalDeviceProperties& physicalDeviceProperties = context.getDeviceProperties(); in testRequireSubgroupSize() local
852 const deUint32 maxTotalLocalSize = (deUint32)min<deUint64>(maxSubgroupLimitSize, physicalDeviceProperties.limits.maxComputeWorkGroupInvocations); in testRequireSubgroupSize()
853 const auto& maxWorkGroupSize = physicalDeviceProperties.limits.maxComputeWorkGroupSize; in testRequireSubgroupSize()
854 const auto& maxInvocations = physicalDeviceProperties in testRequireSubgroupSize()
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_caps_utils.cpp1136 EGLint ComputeMaximumPBufferPixels(const VkPhysicalDeviceProperties &physicalDeviceProperties)
1150 static_assert(std::is_same<decltype(physicalDeviceProperties.limits.maxImageDimension2D),
1152 "physicalDeviceProperties.limits.maxImageDimension2D expected to be a uint32_t.");
1154 static_cast<uint64_t>(physicalDeviceProperties.limits.maxImageDimension2D) *
1155 static_cast<uint64_t>(physicalDeviceProperties.limits.maxImageDimension2D);
1169 const VkPhysicalDeviceProperties &physicalDeviceProperties =
1197 config.maxPBufferWidth = physicalDeviceProperties.limits.maxImageDimension2D;
1198 config.maxPBufferHeight = physicalDeviceProperties.limits.maxImageDimension2D;
1199 config.maxPBufferPixels = ComputeMaximumPBufferPixels(physicalDeviceProperties);
H A DRendererVk.cpp728 void ComputePipelineCacheVkChunkKey(VkPhysicalDeviceProperties physicalDeviceProperties, in ComputePipelineCacheVkChunkKey() argument
736 for (const uint32_t c : physicalDeviceProperties.pipelineCacheUUID) in ComputePipelineCacheVkChunkKey()
741 hashStream << std::hex << physicalDeviceProperties.vendorID; in ComputePipelineCacheVkChunkKey()
742 hashStream << std::hex << physicalDeviceProperties.deviceID; in ComputePipelineCacheVkChunkKey()
752 bool CompressAndStorePipelineCacheVk(VkPhysicalDeviceProperties physicalDeviceProperties, in CompressAndStorePipelineCacheVk() argument
815 ComputePipelineCacheVkChunkKey(physicalDeviceProperties, chunkIndex, &chunkCacheHash); in CompressAndStorePipelineCacheVk()
869 angle::Result GetAndDecompressPipelineCacheVk(VkPhysicalDeviceProperties physicalDeviceProperties, in GetAndDecompressPipelineCacheVk() argument
876 ComputePipelineCacheVkChunkKey(physicalDeviceProperties, 0, &chunkCacheHash); in GetAndDecompressPipelineCacheVk()
903 ComputePipelineCacheVkChunkKey(physicalDeviceProperties, chunkIndex, &chunkCacheHash); in GetAndDecompressPipelineCacheVk()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesBufferSparseResidency.cpp159 const VkPhysicalDeviceProperties physicalDeviceProperties = getPhysicalDeviceProperties(instance, physicalDevice); in iterate() local
205 if (bufferMemRequirements.size > physicalDeviceProperties.limits.sparseAddressSpaceSize) in iterate()
403 else if (physicalDeviceProperties.sparseProperties.residencyNonResidentStrict) in iterate()
H A DvktSparseResourcesImageAlignedMipSize.cpp142 const VkPhysicalDeviceProperties physicalDeviceProperties = getPhysicalDeviceProperties(instance, physicalDevice); in iterate() local
146 const VkPhysicalDeviceSparseProperties sparseProperties = physicalDeviceProperties.sparseProperties; in iterate()
H A DvktSparseResourcesImageBlockShapes.cpp150 const VkPhysicalDeviceProperties physicalDeviceProperties = getPhysicalDeviceProperties(instance, physicalDevice); in iterate() local
153 const VkPhysicalDeviceSparseProperties sparseProperties = physicalDeviceProperties.sparseProperties; in iterate()
H A DvktSparseResourcesImageSparseResidency.cpp358 const VkPhysicalDeviceProperties physicalDeviceProperties = getPhysicalDeviceProperties(instance, physicalDevice); in iterate() local
405 if (imageMemoryRequirements.size > physicalDeviceProperties.limits.sparseAddressSpaceSize) in iterate()
909 else if (physicalDeviceProperties.sparseProperties.residencyNonResidentStrict) in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sparse_resources/
H A DvktSparseResourcesBufferSparseResidency.cpp161 const VkPhysicalDeviceProperties physicalDeviceProperties = getPhysicalDeviceProperties(instance, physicalDevice); in iterate() local
207 if (bufferMemRequirements.size > physicalDeviceProperties.limits.sparseAddressSpaceSize) in iterate()
405 else if (physicalDeviceProperties.sparseProperties.residencyNonResidentStrict) in iterate()
H A DvktSparseResourcesImageAlignedMipSize.cpp144 const VkPhysicalDeviceProperties physicalDeviceProperties = getPhysicalDeviceProperties(instance, physicalDevice); in iterate() local
148 const VkPhysicalDeviceSparseProperties sparseProperties = physicalDeviceProperties.sparseProperties; in iterate()
H A DvktSparseResourcesImageBlockShapes.cpp152 const VkPhysicalDeviceProperties physicalDeviceProperties = getPhysicalDeviceProperties(instance, physicalDevice); in iterate() local
155 const VkPhysicalDeviceSparseProperties sparseProperties = physicalDeviceProperties.sparseProperties; in iterate()
H A DvktSparseResourcesImageSparseResidency.cpp343 const VkPhysicalDeviceProperties physicalDeviceProperties = getPhysicalDeviceProperties(instance, physicalDevice); in iterate() local
390 if (imageMemoryRequirements.size > physicalDeviceProperties.limits.sparseAddressSpaceSize) in iterate()
893 else if (physicalDeviceProperties.sparseProperties.residencyNonResidentStrict) in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTests.hpp206 inline const VkPhysicalDeviceProperties& physicalDeviceProperties (void) const;
220 inline const VkPhysicalDeviceProperties& DeviceProperties::physicalDeviceProperties (void) const in physicalDeviceProperties() function in vkt::DescriptorIndexing::ut::DeviceProperties
H A DvktDescriptorSetsIndexingTestsUtils.cpp697 const VkPhysicalDeviceProperties& deviceProps = physicalDeviceProperties(); in computeMaxPerStageDescriptorCount()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTests.hpp206 inline const VkPhysicalDeviceProperties& physicalDeviceProperties (void) const;
220 inline const VkPhysicalDeviceProperties& DeviceProperties::physicalDeviceProperties (void) const in physicalDeviceProperties() function in vkt::DescriptorIndexing::ut::DeviceProperties
H A DvktDescriptorSetsIndexingTestsUtils.cpp697 const VkPhysicalDeviceProperties& deviceProps = physicalDeviceProperties(); in computeMaxPerStageDescriptorCount()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawDiscardRectanglesTests.cpp515 VkPhysicalDeviceProperties2 physicalDeviceProperties; in iterate() local
516 physicalDeviceProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in iterate()
517 physicalDeviceProperties.pNext = &discardRectangleProperties; in iterate()
519 vki.getPhysicalDeviceProperties2(physicalDevice, &physicalDeviceProperties); in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
H A DvktDrawDiscardRectanglesTests.cpp515 VkPhysicalDeviceProperties2 physicalDeviceProperties; in iterate() local
516 physicalDeviceProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in iterate()
517 physicalDeviceProperties.pNext = &discardRectangleProperties; in iterate()
519 vki.getPhysicalDeviceProperties2(physicalDevice, &physicalDeviceProperties); in iterate()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
H A DVulkanHelper.cpp262 VkPhysicalDeviceProperties physicalDeviceProperties; local
264 &physicalDeviceProperties);
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineImageSamplingInstance.cpp407 VkPhysicalDeviceProperties2 physicalDeviceProperties; in setup() local
408 physicalDeviceProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in setup()
409 physicalDeviceProperties.pNext = &physicalDeviceSamplerMinMaxProperties; in setup()
411 vki.getPhysicalDeviceProperties2(m_context.getPhysicalDevice(), &physicalDeviceProperties); in setup()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineImageSamplingInstance.cpp405 VkPhysicalDeviceProperties2 physicalDeviceProperties; in setup() local
406 physicalDeviceProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2; in setup()
407 physicalDeviceProperties.pNext = &physicalDeviceSamplerMinMaxProperties; in setup()
409 vki.getPhysicalDeviceProperties2(m_context.getPhysicalDevice(), &physicalDeviceProperties); in setup()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkPlatform.hpp164 const VkPhysicalDeviceProperties& physicalDeviceProperties,
H A DvkPlatform.cpp188 const VkPhysicalDeviceProperties& physicalDeviceProperties, in DeviceDriverSC()
194 , m_physicalDeviceProperties(physicalDeviceProperties) in DeviceDriverSC()
182 DeviceDriverSC(const PlatformInterface& platformInterface, VkInstance instance, VkDevice device, const tcu::CommandLine& cmdLine, de::SharedPtr<vk::ResourceInterface> resourceInterface, const VkPhysicalDeviceVulkanSC10Properties& physicalDeviceVulkanSC10Properties, const VkPhysicalDeviceProperties& physicalDeviceProperties, const uint32_t usedApiVersion) DeviceDriverSC() argument
/third_party/skia/src/gpu/vk/
H A DGrVkGpu.h71 const VkPhysicalDeviceProperties& physicalDeviceProperties() const { in physicalDeviceProperties() function in GrVkGpu

Completed in 34 milliseconds

12