From f73374a1eba14e6de72a60ad0173af2bf07effa2 Mon Sep 17 00:00:00 2001 From: Wenzhuo Liu Date: Mon, 19 Sep 2022 21:54:14 +0800 Subject: [PATCH] fix:comment typo in example 23 (#633) --- .../ampere_gemm_operand_reduction_fusion.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/23_ampere_gemm_operand_reduction_fusion/ampere_gemm_operand_reduction_fusion.cu b/examples/23_ampere_gemm_operand_reduction_fusion/ampere_gemm_operand_reduction_fusion.cu index a6958b8f..4a95717d 100644 --- a/examples/23_ampere_gemm_operand_reduction_fusion/ampere_gemm_operand_reduction_fusion.cu +++ b/examples/23_ampere_gemm_operand_reduction_fusion/ampere_gemm_operand_reduction_fusion.cu @@ -561,7 +561,7 @@ Result profile(Options const &options) { tensor_reduction.sync_host(); - // Compute bias + relu in host code + // ReduceK in host code if (ReduceKForA) { for (int m = 0; m < options.problem_size.m(); ++m) { for (int k = 0; k < options.problem_size.k(); ++k) {