Structures

VkDataGraphPipelineSessionCreateInfoARM

Structure specifying parameters of a newly created data graph pipeline session

The VkDataGraphPipelineSessionCreateInfoARM structure is defined as:

typedef struct VkDataGraphPipelineSessionCreateInfoARM {
    VkStructureType sType;
    const void* pNext;
    VkDataGraphPipelineSessionCreateFlagsARM flags;
    VkPipeline dataGraphPipeline;
} VkDataGraphPipelineSessionCreateInfoARM;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • flags is a bitmask of VkDataGraphPipelineSessionCreateFlagBitsARM describing additional parameters of the session.
  • dataGraphPipeline is the VkPipeline handle of the data graph pipeline for which a session is being created.

Valid Usage

VUID-VkDataGraphPipelineSessionCreateInfoARM-protectedMemory-09782

If the protectedMemory feature is not enabled, flags must not contain VK_DATA_GRAPH_PIPELINE_SESSION_CREATE_PROTECTED_BIT_ARM

VUID-VkDataGraphPipelineSessionCreateInfoARM-pNext-09852

A VkDataGraphPipelineSessionNeuralStatisticsCreateInfoARM structure may only be included in the pNext chain if and only if a VkDataGraphPipelineNeuralStatisticsCreateInfoARM structure whose allowNeuralStatistics member was VK_TRUE was included in the pNext chain of the VkDataGraphPipelineCreateInfoARM structure used to create dataGraphPipeline

VUID-VkDataGraphPipelineSessionCreateInfoARM-flags-09853

If flags contains VK_DATA_GRAPH_PIPELINE_SESSION_CREATE_PROTECTED_BIT_ARM then a VkDataGraphPipelineNeuralStatisticsCreateInfoARM structure must not be included in the pNext chain

Valid Usage (Implicit)

VUID-VkDataGraphPipelineSessionCreateInfoARM-sType-sType

sType must be VK_STRUCTURE_TYPE_DATA_GRAPH_PIPELINE_SESSION_CREATE_INFO_ARM

VUID-VkDataGraphPipelineSessionCreateInfoARM-sType-unique

The sType value of each structure in the pNext chain must be unique