Files
filament/third_party/glslang/Test/spv.tensorARM.array.comp
Mathias Agopian 538f497d4d update glslang to version 15.4.0
add a nicer script to update
2025-08-11 15:44:28 -07:00

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);
}