It turns out we do need this explicit coherency dance for G14,
but only on G14D.
Signed-off-by: Asahi Lina <lina@asahilina.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24635>
}
struct agx_shader_key base_key = {
- .needs_g13x_coherency =
- dev->params.gpu_generation == 13 && dev->params.num_clusters_total > 1,
+ .needs_g13x_coherency = (dev->params.gpu_generation == 13 &&
+ dev->params.num_clusters_total > 1) ||
+ dev->params.num_dies > 1,
};
if (nir->info.stage == MESA_SHADER_FRAGMENT)