From 4559cdb94b2ac7df776e76efbf67891cf7ebe188 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 24 Jan 2025 11:09:28 -0500 Subject: [PATCH] hk: fix increment CS invs Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/vulkan/hk_cmd_dispatch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asahi/vulkan/hk_cmd_dispatch.c b/src/asahi/vulkan/hk_cmd_dispatch.c index 2d49def6fa0..4214fca38ba 100644 --- a/src/asahi/vulkan/hk_cmd_dispatch.c +++ b/src/asahi/vulkan/hk_cmd_dispatch.c @@ -103,7 +103,7 @@ dispatch(struct hk_cmd_buffer *cmd, struct agx_grid grid) perf_debug(dev, "CS invocation statistic"); uint64_t grid = cmd->state.cs.descriptors.root.cs.group_count_addr; - libagx_increment_cs_invocations(cs, agx_1d(1), grid, AGX_BARRIER_ALL, + libagx_increment_cs_invocations(cs, agx_1d(1), AGX_BARRIER_ALL, grid, stat, agx_workgroup_threads(local_size)); }