Enum
VkTensorTilingARM
Specifies the tiling arrangement of data in an tensor
Possible values of VkTensorCreateInfoARM::tiling, specifying the
tiling arrangement of elements in the tensor, are:
typedef enum VkTensorTilingARM {
VK_TENSOR_TILING_OPTIMAL_ARM = 0,
VK_TENSOR_TILING_LINEAR_ARM = 1,
} VkTensorTilingARM;
pub struct TensorTilingARM(u32);
impl TensorTilingARM {
pub const OPTIMAL: Self = 0;
pub const LINEAR: Self = 1;
}
VK_TENSOR_TILING_OPTIMAL_ARMspecifies optimal tiling (elements are laid out in an implementation-dependent arrangement, for more efficient memory access).VK_TENSOR_TILING_LINEAR_ARMspecifies linear tiling (elements are laid out linearly and the offset between each element is determined by the strides of the tensor).
Parent
VK_ARM_tensorsType
Enum