From abafbf2afd0cd63b05f233ebce4dc6e2a809cb4a Mon Sep 17 00:00:00 2001 From: Cliff Burdick <30670611+cliffburdick@users.noreply.github.com> Date: Thu, 25 Aug 2022 13:07:33 -0700 Subject: [PATCH] Missing comma in trmm header (#604) --- include/cutlass/gemm/device/trmm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cutlass/gemm/device/trmm.h b/include/cutlass/gemm/device/trmm.h index 28a18250..4447cccc 100644 --- a/include/cutlass/gemm/device/trmm.h +++ b/include/cutlass/gemm/device/trmm.h @@ -110,7 +110,7 @@ namespace device { cutlass::gemm::GemmUniversalMode, // Trmm Problem Mode {m, n, m/n}, // GemmCoord problem_size (k is based on left- or right-side mode) batch_count, - {alpha} // EpilogueOutputOp::Params epilogue_op_params + {alpha}, // EpilogueOutputOp::Params epilogue_op_params void const * ptr_A, void const * ptr_B, void const * ptr_C,