Skip to content

Commit

Permalink
Missing comma in trmm header (#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffburdick authored Aug 25, 2022
1 parent 536b207 commit abafbf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cutlass/gemm/device/trmm.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit abafbf2

Please sign in to comment.