Skip to content

Commit

Permalink
fix typo (NVIDIA#1279)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeejeelee authored Jan 4, 2024
1 parent 5c756eb commit c9591a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/12_gemm_bias_relu/gemm_bias_relu.cu
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ using ShapeMMAThreadBlock =
// This code section describes tile size a warp will compute
using ShapeMMAWarp = cutlass::gemm::GemmShape<64, 64, 32>; // <- warp tile M = 64, N = 64, K = 32
// This code section describes the size of MMA op
using ShapeMMAOp = cutlass::gemm::GemmShape<16, 8, 8>; // <- MMA Op tile M = 8, N = 8, K = 4
using ShapeMMAOp = cutlass::gemm::GemmShape<16, 8, 8>; // <- MMA Op tile M = 16, N = 8, K = 8

// This code section describes how threadblocks are scheduled on GPU
using SwizzleThreadBlock = cutlass::gemm::threadblock::GemmIdentityThreadblockSwizzle<>; // <- ??
Expand Down

0 comments on commit c9591a6

Please sign in to comment.