Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/kernels/10_kernel_warptiling.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ __global__ void __launch_bounds__(NUM_THREADS)

// size of the warp subtile
constexpr uint WMITER = (WM * WN) / (WARPSIZE * TM * TN * WNITER);
constexpr uint WSUBM = WM / WMITER; // 64/2=32
constexpr uint WSUBM = WM / WMITER; // 64/1=64
constexpr uint WSUBN = WN / WNITER; // 32/2=16

// Placement of the thread in the warp subtile
Expand Down Expand Up @@ -184,4 +184,4 @@ __global__ void __launch_bounds__(NUM_THREADS)
}
}
}
}
}