xemu/subprojects/glslang/Test/spv.tensorARM.array.comp

10 lines
192 B
Plaintext

#version 460 core
#extension GL_ARM_tensors : enable
layout(set=0, binding=0) uniform tensorARM<int, 2> ta[2];
void main() {
uint x = tensorSizeARM(ta[0], 0) + tensorSizeARM(ta[1], 1);
}