Unverified Commit 3e9414f1 authored by ljss's avatar ljss Committed by GitHub
Browse files

Minor fix in compute_attn_1rowblock_splitkv (#900)

parent 36587c01
......@@ -491,8 +491,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