Module: Mesa Branch: master Commit: f105b69464d908ee8b54c0bddb51909ebde4d686 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f105b69464d908ee8b54c0bddb51909ebde4d686
Author: Samuel Pitoiset <[email protected]> Date: Wed May 6 09:38:17 2020 +0200 radv: report correct backend IR in hang reports when ACO is used Trivial. Signed-off-by: Samuel Pitoiset <[email protected]> Acked-by: Daniel Schürmann <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4911> --- src/amd/vulkan/radv_debug.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_debug.c b/src/amd/vulkan/radv_debug.c index 5508243bad8..77a136f94a1 100644 --- a/src/amd/vulkan/radv_debug.c +++ b/src/amd/vulkan/radv_debug.c @@ -432,7 +432,9 @@ radv_dump_shader(struct radv_pipeline *pipeline, fprintf(f, "NIR:\n%s\n", shader->nir_string); } - fprintf(f, "LLVM IR:\n%s\n", shader->ir_string); + fprintf(f, "%s IR:\n%s\n", + pipeline->device->physical_device->use_aco ? "ACO" : "LLVM", + shader->ir_string); fprintf(f, "DISASM:\n%s\n", shader->disasm_string); radv_shader_dump_stats(pipeline->device, shader, stage, f); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
