Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23825>
*/
bool has_variable_shared_mem:1;
+ /**
+ * If the shader has any use of a cooperative matrix. From
+ * SPV_KHR_cooperative_matrix.
+ */
+ bool has_cooperative_matrix:1;
+
/**
* pointer size is:
* AddressingModelLogical: 0 (default)
{
vtn_assert(opcode == SpvOpTypeCooperativeMatrixKHR);
+ b->shader->info.cs.has_cooperative_matrix = true;
+
struct vtn_type *component_type = vtn_get_type(b, w[2]);
const mesa_scope scope = vtn_translate_scope(b, vtn_constant_uint(b, w[3]));