Function Prototype
vkDestroyTensorViewARM
Destroy a tensor view object
To destroy a tensor view, call:
void vkDestroyTensorViewARM(
VkDevice device,
VkTensorViewARM tensorView,
const VkAllocationCallbacks* pAllocator);
pub fn destroy_tensor_view_arm(
device: vk::Device,
tensor_view: vk::TensorViewARM,
p_allocator: *const vk::AllocationCallbacks,
);
deviceis the logical device that destroys the tensor view.tensorViewis the tensor view to destroy.pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter.
Valid Usage
VUID-vkDestroyTensorViewARM-tensorView-09750
All submitted commands that refer to tensorView must have
completed execution
VUID-vkDestroyTensorViewARM-tensorView-09751
If VkAllocationCallbacks were provided when tensorView was
created, a compatible set of callbacks must be provided here
VUID-vkDestroyTensorViewARM-tensorView-09752
If no VkAllocationCallbacks were provided when tensorView
was created, pAllocator must be NULL
Valid Usage (Implicit)
VUID-vkDestroyTensorViewARM-device-parameter
device must be a valid VkDevice handle
VUID-vkDestroyTensorViewARM-tensorView-parameter
If tensorView is not VK_NULL_HANDLE, tensorView must be a valid VkTensorViewARM handle
VUID-vkDestroyTensorViewARM-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkDestroyTensorViewARM-tensorView-parent
If tensorView is a valid handle, it must have been created, allocated, or retrieved from device
Host Synchronization
- Host access to
tensorViewmust be externally synchronized
Parent
VK_ARM_tensorsType
Function Prototype