Commit 0c07b792 authored by ljss's avatar ljss Committed by skrider
Browse files

Minor fix in compute_attn_1rowblock_splitkv (#900)

parent 79681482
......@@ -492,8 +492,8 @@ inline __device__ void compute_attn_1rowblock_splitkv(const Params &params, cons
using GmemTiledCopyO = std::conditional_t<
!Split,
typename Kernel_traits::GmemTiledCopyOaccum,
typename Kernel_traits::GmemTiledCopyO
typename Kernel_traits::GmemTiledCopyO,
typename Kernel_traits::GmemTiledCopyOaccum
>;
using ElementO = std::conditional_t<!Split, Element, ElementAccum>;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment