From e69df55ed766b01f35e44442c725be36d2161077 Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Thu, 9 Apr 2026 13:32:27 -0700 Subject: [PATCH] intel/executor: Map the DPAS check to has_systolic Part-of: --- src/intel/executor/executor_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/executor/executor_main.c b/src/intel/executor/executor_main.c index 31b2e4acc88..c24322dbd7a 100644 --- a/src/intel/executor/executor_main.c +++ b/src/intel/executor/executor_main.c @@ -1000,7 +1000,7 @@ main(int argc, char *argv[]) lua_pushinteger(L, E.devinfo.verx10); lua_setfield(L, -2, "verx10"); - lua_pushboolean(L, E.devinfo.cooperative_matrix_configurations[0].scope != INTEL_CMAT_SCOPE_NONE); + lua_pushboolean(L, E.devinfo.has_systolic); lua_setfield(L, -2, "has_dpas"); lua_pushboolean(L, E.devinfo.has_bfloat16);