Skip to content

Commit

Permalink
Add missing comma in cutlass/arch/mma_sm90.h (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
thakkarV authored Mar 14, 2023
1 parent 86cae03 commit af332d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cutlass/arch/mma_sm90.h
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ struct Mma<

asm volatile("mma.sync.aligned.m16n8k16.row.col.f64.f64.f64.f64 {%0, %1, %2, %3}, {%4, %5, %6, %7, %8, %9, %10, %11}, {%12, %13, %14, %15}, {%16, %17, %18, %19};\n"
: "=d"(D[0]), "=d"(D[1]), "=d"(D[2]), "=d"(D[3])
: "d"(A[0]), "d"(A[2]), "d"(A[2]), "d"(A[3]), "d"(A[4]), "d"(A[5]), "d"(A[6]), "d"(A[7])
: "d"(A[0]), "d"(A[2]), "d"(A[2]), "d"(A[3]), "d"(A[4]), "d"(A[5]), "d"(A[6]), "d"(A[7]),
"d"(B[0]), "d"(B[1]), "d"(B[2]), "d"(B[3]),
"d"(C[0]), "d"(C[1]), "d"(C[2]), "d"(C[3]));

Expand Down

0 comments on commit af332d4

Please sign in to comment.