Instructions to use replicate/flashinfer-draft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Kernels
How to use replicate/flashinfer-draft with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("replicate/flashinfer-draft") - Notebooks
- Google Colab
- Kaggle
File size: 11,333 Bytes
57c3a10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | /*
* Copyright (c) 2024, Jay Shah, Ganesh Bikshandi, Ying Zhang, Vijay Thakkar, Pradeep Ramani, Tri
* Dao. Licensed under the BSD 3-Clause.
*
* Modified by the FlashInfer team.
*/
#ifndef FLASHINFER_ATTENTION_HOPPER_FP8_KERNEL_TRAITS_CUH_
#define FLASHINFER_ATTENTION_HOPPER_FP8_KERNEL_TRAITS_CUH_
#include <type_traits>
#include "../../../cutlass_utils.cuh"
#include "cute/algorithm/copy.hpp"
#include "cute/atom/mma_atom.hpp"
#include "cutlass/cutlass.h"
#include "cutlass/gemm/collective/collective_builder.hpp"
#include "cutlass/layout/layout.h"
#include "cutlass/numeric_types.h"
#include "cutlass/pipeline/pipeline.hpp"
namespace flashinfer {
using namespace cute;
/*
Add additional smem for Vt
NOTE(Yilong): Should modify the mainloop to leverage the smem_v_read's early release
*/
template <typename MainloopPipeline, class DTypeQ, class DTypeKV, class DTypeOut, class IdType,
int CTA_KV, class SmemLayoutQ, class SmemLayoutK, class SmemLayoutV, class SmemLayoutO>
struct SharedStorageQKVOVt {
cute::array_aligned<DTypeQ, cute::cosize_v<SmemLayoutQ>> smem_q;
cute::array_aligned<DTypeKV, cute::cosize_v<SmemLayoutK>> smem_k;
cute::array_aligned<DTypeKV, cute::cosize_v<SmemLayoutV>> smem_v;
union {
cute::array_aligned<DTypeKV, cute::cosize_v<SmemLayoutV>> smem_vt;
cute::array_aligned<DTypeOut, cute::cosize_v<SmemLayoutO>> smem_o;
};
struct {
cutlass::arch::ClusterTransactionBarrier barrier_Q;
cutlass::arch::ClusterBarrier barrier_O;
typename MainloopPipeline::SharedStorage pipeline_k;
typename MainloopPipeline::SharedStorage pipeline_v;
// vt only use ldmatrix, which do not need TMA Pipeline
typename cutlass::PipelineAsync<MainloopPipeline::Stages>::SharedStorage pipeline_vt;
};
};
/*
In-kernel FP8 transpose adopted from FlashAttention-3 template
https://github.com/Dao-AILab/flash-attention/blob/c7f32a8409e52a84bd8046afe7060da33036f9a5/hopper/kernel_traits.h#L217
*/
template <typename TileShape_QKD, typename Element, int NUM_STAGES>
struct TranposeTraits_64x64 {
using TransposeShapeAtom_ = Shape<_64, _64>;
using TransElement = Element;
static_assert(cutlass::sizeof_bits_v<TransElement> == 8);
using SmemShapeLDSM = Shape<Shape<_8, _8>, Shape<_16, _4>>;
using SmemShapeSTSM = Shape<Shape<_16, _4>, Shape<_16, _4>>;
using SmemLayoutAtomV =
decltype(tile_to_shape(GMMA::Layout_K_SW64_Atom<TransElement>{}, TransposeShapeAtom_{}));
using SmemLayoutV = decltype(tile_to_shape(
SmemLayoutAtomV{},
make_shape(get<1>(TileShape_QKD{}), get<2>(TileShape_QKD{}), Int<NUM_STAGES>{})));
using SmemLayoutDivideV = decltype(tiled_divide(SmemLayoutV{}, TransposeShapeAtom_{}));
using FactoringShapeV =
decltype(make_shape(SmemShapeLDSM{}, shape<1>(SmemLayoutDivideV{}),
shape<2>(SmemLayoutDivideV{}), shape<3>(SmemLayoutDivideV{})));
using SmemLayoutVTransposeSrc =
decltype(composition(SmemLayoutDivideV{}, make_layout(FactoringShapeV{})));
using SmemLayoutAtomVt =
decltype(tile_to_shape(GMMA::Layout_K_SW64_Atom<Element>{}, TransposeShapeAtom_{}));
// k-major Vt as target layout. this changes the memory
using SmemLayoutVt = decltype(tile_to_shape(
SmemLayoutAtomVt{},
make_shape(get<2>(TileShape_QKD{}), get<1>(TileShape_QKD{}), Int<NUM_STAGES>{})));
using SmemLayoutVtTrans = decltype(composition(
SmemLayoutVt{}, make_ordered_layout(product_each(shape(SmemLayoutV{})), Step<_2, _1, _3>{})));
using SmemLayoutDivideVt = decltype(tiled_divide(SmemLayoutVtTrans{}, TransposeShapeAtom_{}));
using FactoringShapeVt =
decltype(make_shape(SmemShapeSTSM{}, shape<1>(SmemLayoutDivideVt{}),
shape<2>(SmemLayoutDivideVt{}), shape<3>(SmemLayoutDivideVt{})));
using SmemLayoutVtTransposeTgt =
decltype(composition(SmemLayoutDivideVt{}, make_layout(FactoringShapeVt{})));
};
/*
In-kernel Transpose of smemV into smemVt with ldmatrix.trans & stmatrix.
Note that all magic number corresponds to the /quantization/kernel_traits.cuh setup.
This transpose is not a general transpose, but a specific one for the FP8 MMA_PV:
1. K-dimension: (2,2,4,4):(1,8,2,16), which adheres to the accum_P's layout
2. N-dimension: (8,2,4):(2,1,16), which needs repermutation when rmemO -> smemO
*/
template <typename Ktraits>
struct SmemTransposeFP8_64x64 {
using Element = typename Ktraits::DTypeKV;
using SmemLayoutVTransposeSrc = typename Ktraits::SmemLayoutVTransposeSrc;
using SmemLayoutVtTransposeTgt = typename Ktraits::SmemLayoutVtTransposeTgt;
static_assert(cutlass::sizeof_bits_v<Element> == 8);
using ldsm_thread_shape = Shape<_4, _1, _8, _4>;
using ldsm_value_shape = Shape<_2, _8, _2, _1>;
using ldsm_value_stride = Stride<_2, _4, _1, _0>;
// use trans to do 16bits transpose
// which needs permutation to separate 8bits row and column
using TiledCopyLDSM =
decltype(make_tiled_copy(Copy_Atom<SM75_U16x8_LDSM_T, Element>{}, Layout<ldsm_thread_shape>{},
Layout<ldsm_value_shape, ldsm_value_stride>{}));
TiledCopyLDSM tiled_copy_ldsm;
using stsm_thread_shape = Shape<_4, _1, _8, _4>;
using stsm_value_shape = Shape<_4, _4, _2, _1>;
using stsm_value_stride = Stride<_1, _8, _4, _0>;
using TiledCopySTSM =
decltype(make_tiled_copy(Copy_Atom<SM90_U32x4_STSM_N, Element>{}, Layout<stsm_thread_shape>{},
Layout<stsm_value_shape, stsm_value_stride>{}));
TiledCopySTSM tiled_copy_stsm;
template <class SmemTensor, class SmemTensorOut>
CUTLASS_DEVICE void _tranpose(SmemTensor&& s_in, SmemTensorOut&& s_out) {
using namespace cute;
auto tid = threadIdx.x;
auto thr_copy_ldsm = tiled_copy_ldsm.get_thread_slice(tid);
auto thr_copy_stsm = tiled_copy_stsm.get_thread_slice(tid);
auto tXsX = thr_copy_ldsm.partition_S(s_in);
auto tXrX = make_tensor<Element>(shape(tXsX));
auto tXsX_out = thr_copy_stsm.partition_D(s_out);
cute::copy(tiled_copy_ldsm, tXsX, tXrX);
auto data = tXrX.data();
CUTLASS_PRAGMA_UNROLL
for (int n = 0; n < size(tXrX); n += 8) {
uint32_t* data_32bit = reinterpret_cast<uint32_t*>(&data[n]);
auto upper = data_32bit[0];
auto lower = data_32bit[1];
// select row-major elements.
// from (0 1 16 17) (128 129 144 145) to (0 16 128 144) (1 17 129 145)
// which is (0 1 8 9)
data_32bit[0] = __byte_perm(upper, lower, 0x6420);
data_32bit[1] = __byte_perm(upper, lower, 0x7531);
}
cute::copy(tiled_copy_stsm, tXrX, tXsX_out);
}
template <class SmemTensor, class SmemTensorOut>
CUTLASS_DEVICE void do_transpose(SmemTensor& s_in, SmemTensorOut& s_out, int stage_idx) {
CUTLASS_PRAGMA_UNROLL
for (int j = 0; j < shape<2>(SmemLayoutVTransposeSrc{}); ++j) {
CUTLASS_PRAGMA_UNROLL
for (int i = 0; i < shape<1>(SmemLayoutVTransposeSrc{}); ++i) {
this->_tranpose(flatten(s_in(_, i, j, stage_idx)), flatten(s_out(_, i, j, stage_idx)));
}
}
// For FP8 kernel, all WG threads will arrive for issuing ldmatrix
cutlass::arch::NamedBarrier::sync(Ktraits::NUM_PRODUCER_THREADS,
static_cast<int>(NamedBarriers::kProducerWG) /*id*/);
}
};
template <bool USE_TMA_LOAD_KV, int HEAD_DIM_, int CTA_Q_, int CTA_KV_, int NUM_STAGES_,
typename DTypeQ_, typename DTypeKV_, typename DTypeO_, typename IdType_,
typename AttentionVariant_>
struct FP8AttentionKernelTraits {
using AttentionVariant = AttentionVariant_;
using DTypeQ = DTypeQ_;
using DTypeKV = DTypeKV_;
using DTypeO = DTypeO_;
using IdType = IdType_;
using DTypeQKAccum = float;
static constexpr int CTA_Q = CTA_Q_;
static_assert(CTA_Q % 64 == 0);
static constexpr int CTA_KV = CTA_KV_;
static constexpr int HEAD_DIM = HEAD_DIM_;
static_assert(HEAD_DIM % 32 == 0);
static constexpr int NUM_WARPS = ((CTA_Q / 64) + 1) * 4;
static constexpr int NUM_THREADS = NUM_WARPS * cutlass::NumThreadsPerWarp;
// NOTE(Zihao): the following constant should only be used when TMA is enabled,
// where only one warp inside a warp group is used for TMA.
// In FP16 kernel, only one thread of single warp within the producer WG is working
// For FP8, we use the entire WG for tranposing V
static constexpr int NUM_PRODUCER_THREADS = cutlass::NumThreadsPerWarpGroup;
using TileShape_QKD = Shape<Int<CTA_Q>, Int<CTA_KV>, Int<HEAD_DIM>>;
static constexpr int NUM_STAGES = NUM_STAGES_;
using AtomLayoutQKD = Layout<Shape<Int<CTA_Q / 64>, _1, _1>>;
using TiledMmaQK = decltype(cute::make_tiled_mma(
cute::GMMA::ss_op_selector<DTypeQ, DTypeKV, DTypeQKAccum, TileShape_QKD>(), AtomLayoutQKD{}));
// FP8 needs K-major for both P / V
using TiledMmaPV = decltype(cute::make_tiled_mma(
cute::GMMA::rs_op_selector<DTypeKV, DTypeKV, /*ElementAccum=*/float,
decltype(select<0, 2, 1>(TileShape_QKD{})), GMMA::Major::K,
GMMA::Major::K>(),
AtomLayoutQKD{}));
static constexpr int NUM_MMA_THREADS = size(TiledMmaQK{});
using SmemLayoutAtomQ = decltype(cutlass::gemm::collective::detail::ss_smem_selector<
GMMA::Major::K, DTypeQ, decltype(cute::get<0>(TileShape_QKD{})),
decltype(cute::get<2>(TileShape_QKD{}))>());
using SmemLayoutQ = decltype(tile_to_shape(SmemLayoutAtomQ{}, select<0, 2>(TileShape_QKD{})));
using SmemLayoutAtomK = decltype(cutlass::gemm::collective::detail::ss_smem_selector<
GMMA::Major::K, DTypeKV, decltype(cute::get<1>(TileShape_QKD{})),
decltype(cute::get<2>(TileShape_QKD{}))>());
using SmemLayoutK = decltype(tile_to_shape(
SmemLayoutAtomK{},
make_shape(shape<1>(TileShape_QKD{}), shape<2>(TileShape_QKD{}), Int<NUM_STAGES>{})));
using VTranposeTraits = TranposeTraits_64x64<TileShape_QKD, DTypeKV, NUM_STAGES>;
using SmemLayoutV = typename VTranposeTraits::SmemLayoutV;
using SmemLayoutVt = typename VTranposeTraits::SmemLayoutVt;
using SmemLayoutVTransposeSrc = typename VTranposeTraits::SmemLayoutVTransposeSrc;
using SmemLayoutVtTransposeTgt = typename VTranposeTraits::SmemLayoutVtTransposeTgt;
using SmemLayoutAtomO = decltype(cutlass::gemm::collective::detail::ss_smem_selector<
GMMA::Major::K, DTypeO, decltype(cute::get<0>(TileShape_QKD{})),
decltype(cute::get<2>(TileShape_QKD{}))>());
using SmemLayoutO = decltype(tile_to_shape(SmemLayoutAtomO{}, select<0, 2>(TileShape_QKD{})));
using MainloopPipeline =
std::conditional_t<USE_TMA_LOAD_KV, typename cutlass::PipelineTmaAsync<NUM_STAGES>,
typename cutlass::PipelineAsync<NUM_STAGES>>;
using MainloopPipelineNoTMA = typename cutlass::PipelineAsync<NUM_STAGES>;
using PipelineState = typename cutlass::PipelineState<NUM_STAGES>;
// Modify SharedStorage
using SharedStorage =
SharedStorageQKVOVt<MainloopPipeline, DTypeQ, DTypeKV, DTypeO, IdType, CTA_KV, SmemLayoutQ,
SmemLayoutK, SmemLayoutV, SmemLayoutO>;
};
} // namespace flashinfer
#endif // FLASHINFER_ATTENTION_HOPPER_FP8_KERNEL_TRAITS_CUH_
|