radeonsi: remove incorrect comment about hangs in gfx10_ngg_gs_emit_epilogue
authorMarek Olšák <marek.olsak@amd.com>
Thu, 17 Jun 2021 15:26:25 +0000 (11:26 -0400)
committerMarek Olšák <marek.olsak@amd.com>
Thu, 24 Jun 2021 02:37:29 +0000 (22:37 -0400)
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11509>

src/gallium/drivers/radeonsi/gfx10_shader_ngg.c

index ca88581..edfe0ee 100644 (file)
@@ -1878,9 +1878,7 @@ void gfx10_ngg_gs_emit_epilogue(struct si_shader_context *ctx)
 
    ac_build_wg_scan(&ctx->ac, &vertlive_scan);
 
-   /* Skip all exports (including index exports) when possible. At least on
-    * early gfx10 revisions this is also to avoid hangs.
-    */
+   /* Skip all exports (including index exports) when possible. */
    LLVMValueRef have_exports =
       LLVMBuildICmp(builder, LLVMIntNE, vertlive_scan.result_reduce, ctx->ac.i32_0, "");
    num_emit_threads = LLVMBuildSelect(builder, have_exports, num_emit_threads, ctx->ac.i32_0, "");