diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-08-16 16:21:45 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-08-21 08:40:51 -0700 |
commit | fb56a162a960b070c1007b2257fdf8277793b586 (patch) | |
tree | 968d3e262f85088e1b297b54898127fb7e52077e /src/gallium/drivers/panfrost | |
parent | 39b226cfb33d55c809066e6b013ea3a6365b2d5a (diff) |
panfrost: Set workgroups z to 32 for non-instanced graphics
This is a blob quirk; in so much as I know, the hardware doesn't care.
But we're trying to be bit-identical to take as much entropy out of
traces as possible, so let's introduce the quirk.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Diffstat (limited to 'src/gallium/drivers/panfrost')
-rw-r--r-- | src/gallium/drivers/panfrost/pan_compute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/panfrost/pan_compute.c b/src/gallium/drivers/panfrost/pan_compute.c index d0b2e132295..50e70cd8298 100644 --- a/src/gallium/drivers/panfrost/pan_compute.c +++ b/src/gallium/drivers/panfrost/pan_compute.c @@ -119,7 +119,7 @@ panfrost_launch_grid(struct pipe_context *pipe, panfrost_pack_work_groups_compute(&payload->prefix, info->grid[0], info->grid[1], info->grid[2], - info->block[0], info->block[1], info->block[2]); + info->block[0], info->block[1], info->block[2], false); /* Upload the payload */ |