Structures
VkDataGraphPipelineNeuralStatisticsCreateInfoARM
Structure specifying neural statistics parameters of a newly created graph pipeline
The VkDataGraphPipelineNeuralStatisticsCreateInfoARM structure is
defined as:
typedef struct VkDataGraphPipelineNeuralStatisticsCreateInfoARM {
VkStructureType sType;
const void* pNext;
VkBool32 allowNeuralStatistics;
} VkDataGraphPipelineNeuralStatisticsCreateInfoARM;
pub struct DataGraphPipelineNeuralStatisticsCreateInfoARM {
s_type: vk::StructureType,
p_next: *const c_void,
allow_neural_statistics: vk::Bool32,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.allowNeuralStatisticsspecifies whether sessions for the newly created pipeline may enable neural statistics reporting.
Valid Usage (Implicit)
VUID-VkDataGraphPipelineNeuralStatisticsCreateInfoARM-sType-sType
sType must be VK_STRUCTURE_TYPE_DATA_GRAPH_PIPELINE_NEURAL_STATISTICS_CREATE_INFO_ARM
Type
Structures