#version 450 core #extension GL_KHR_memory_scope_semantics : enable #extension GL_KHR_cooperative_matrix : enable #extension GL_EXT_shader_explicit_arithmetic_types : enable layout (local_size_x = 64, local_size_y = 1, local_size_z = 1) in; void main() { // Test each kind of shape mismatch coopmat(coopmat(0.0)); coopmat(coopmat(0.0)); coopmat(coopmat(0.0)); coopmat(coopmat(0.0)); }