flashinfer-python 0.2.1.post2__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {flashinfer_python-0.2.1.post2/flashinfer_python.egg-info → flashinfer_python-0.2.2}/PKG-INFO +2 -1
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/README.md +1 -0
- flashinfer_python-0.2.2/csrc/aot_default_additional_params.h +45 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_mla_run.cu +1 -1
- flashinfer_python-0.2.2/csrc/batch_mla_sm90_plan.cu +51 -0
- flashinfer_python-0.2.2/csrc/batch_mla_sm90_pybind.cu +37 -0
- flashinfer_python-0.2.2/csrc/batch_mla_sm90_run.cu +122 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/custom_backend.py +1 -0
- flashinfer_python-0.2.2/flashinfer/_build_meta.py +1 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/activation.py +3 -3
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/jit/__init__.py +7 -0
- flashinfer_python-0.2.2/flashinfer/jit/aot_config.py +1 -0
- flashinfer_python-0.2.2/flashinfer/jit/attention/__init__.py +48 -0
- flashinfer_python-0.2.1.post2/flashinfer/jit/attention.py → flashinfer_python-0.2.2/flashinfer/jit/attention/pytorch.py +98 -120
- flashinfer_python-0.2.2/flashinfer/jit/attention/tvm.py +352 -0
- flashinfer_python-0.2.2/flashinfer/jit/attention/utils.py +81 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/jit/env.py +1 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/mla.py +23 -9
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/norm.py +2 -2
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/page.py +4 -4
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/prefill.py +2 -2
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/sampling.py +3 -3
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/utils.py +9 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2/flashinfer_python.egg-info}/PKG-INFO +2 -1
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer_python.egg-info/SOURCES.txt +19 -3
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/epilogue.cuh +13 -13
- flashinfer_python-0.2.2/include/flashinfer/attention/hopper.cuh +278 -0
- flashinfer_python-0.2.1.post2/include/flashinfer/attention/mla_fa2.cuh → flashinfer_python-0.2.2/include/flashinfer/attention/mla.cuh +8 -17
- flashinfer_python-0.2.2/include/flashinfer/attention/mla_hopper.cuh +894 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/scheduler.cuh +4 -2
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/pyproject.toml +1 -0
- flashinfer_python-0.2.2/tests/test_deepseek_mla.py +457 -0
- flashinfer_python-0.2.2/version.txt +1 -0
- flashinfer_python-0.2.1.post2/flashinfer/_build_meta.py +0 -1
- flashinfer_python-0.2.1.post2/tests/test_deepseek_mla.py +0 -253
- flashinfer_python-0.2.1.post2/version.txt +0 -1
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/axpby.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/clear.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/cooperative_copy.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/cooperative_gemm.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/copy.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/fill.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/functional.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/gemm.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/prefer.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/prefetch.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/tensor_algorithms.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/algorithm/tuple_algorithms.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/cluster_sm90.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/config.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/copy.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/copy_sm50.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/copy_sm75.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/copy_sm80.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/copy_sm90.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/copy_sm90_desc.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/copy_sm90_tma.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/mma.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/mma_sm61.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/mma_sm70.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/mma_sm75.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/mma_sm80.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/mma_sm90.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/mma_sm90_desc.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/arch/util.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/copy_atom.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/copy_traits.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm50.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm75.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm80.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_im2col.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma_swizzle.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/mma_atom.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/mma_traits.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm61.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm70.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm75.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm80.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/config.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/container/alignment.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/container/array.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/container/array_aligned.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/container/array_subbyte.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/container/bit_field.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/container/cuda_types.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/container/packed_tuple.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/container/tuple.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/container/type_list.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/int_tuple.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/layout.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/layout_composed.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/numeric/arithmetic_tuple.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/numeric/complex.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/numeric/int.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/numeric/integer_sequence.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/numeric/integral_constant.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/numeric/integral_ratio.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/numeric/math.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/numeric/numeric_types.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/numeric/real.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/pointer.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/pointer_base.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/pointer_flagged.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/pointer_sparse.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/pointer_swizzle.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/stride.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/swizzle.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/swizzle_layout.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/tensor.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/tensor_impl.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/tensor_predicate.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/tensor_zip.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/underscore.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/util/debug.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/util/print.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cute/util/type_traits.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/aligned_buffer.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/arch.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/barrier.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/cache_operation.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/config.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/memory.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/memory_sm75.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/memory_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sm50.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sm60.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sm61.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sm70.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sm75.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sm89.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sm90.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm89.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/reg_reconfig.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/simd.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/simd_sm60.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/simd_sm61.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/synclog.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/wmma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/wmma_sm70.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/wmma_sm72.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/arch/wmma_sm75.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/array.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/array_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/array_subbyte.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/barrier.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/bfloat16.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/blas3.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/blas3_types.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/block_striped.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/cluster_launch.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/constants.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/collective/collective_conv.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/collective/detail.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/collective/sm90_implicit_gemm_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/conv2d_problem_size.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/conv3d_problem_size.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/convnd_problem_shape.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/convolution.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/detail.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/device/conv_universal_adapter.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/device/direct_convolution.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/conv_universal.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_dgrad.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_group_fprop.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_dgrad.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_wgrad.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_depthwise_fprop.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/direct_convolution.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_strided_dgrad.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/kernel/sm90_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/thread/depthwise_mma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_params.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_tile_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_params.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_direct_conv_params.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_fixed_stride_dilation.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_direct_conv_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_filter_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_pipelined.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_base.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_core_with_lane_access_size.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_fprop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_pipelined.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_wgrad_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/conv/warp/scale_bias_relu_transform.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/coord.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/core_io.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/cuda_host_adapter.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/cutlass.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/detail/collective.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/detail/dependent_false.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/detail/helper_macros.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/detail/layout.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/detail/mma.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/device_kernel.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_builder.inl +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_epilogue.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue_array.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/detail.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/epilogue_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized_array.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized_bias_elementwise.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/callbacks.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/operations.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_topk_softmax.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/activation.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/conversion_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/detail.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_elementwise.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_relu.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_clamp.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_dgelu.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_drelu.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_gelu.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic_with_scaling.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_hardswish.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_leaky_relu.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_params.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu0.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_residual_block.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_sigmoid.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_silu.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_with_elementwise.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/reduction_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/thread/scale_type.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_direct_store.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_simt.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_simt.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/direct_store_epilogue_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base_streamk.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_depthwise.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_direct_store.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_gemm_k_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_smem_accumulator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_visitor_with_softmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor_callbacks.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_workspace.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_2x.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_compute.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_load.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_store.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitors.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/interleaved_epilogue.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_iterator_parameter.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_tile_thread_map.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine_layout_params.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_blas3.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_conv.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_direct_conv.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_params.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_predicates.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_strided_dgrad.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_mixed.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_simt.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/simt_policy.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_simt.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op_mixed.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/volta_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/epilogue/warp/wmma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/fast_math.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/float8.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/floating_point_nvrtc.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/functional.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_config.inl +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder_decl.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma_decl.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/fp8_accumulation.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm70_mma_twostage.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_multistage.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/base_grouped.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/default_gemm_configuration.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/ell_gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_array.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_batched.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_grouped.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_base.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/gemv.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/rank_k.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/symm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/device/trmm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/gemm_enumerated_types.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/group_array_problem_shape.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_ell_gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_planar_complex_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_broadcast.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemv.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/ell_gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_array.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_batched.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_params.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_pipelined.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex_array.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_streamk_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_transpose_operands.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_decl.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_streamk.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor_streamk.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_batched_strided.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_sparse_base.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_universal_base.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_transpose_operands.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_k_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_visitor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/symm_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_params.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/kernel/trmm_universal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/thread/mma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm50.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm60.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm61.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_ell_mma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_gemv_core.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_simt.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm70.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm75.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sparse_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_access_size.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_wmma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_with_reduction.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_trmm_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_sparse_mma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_trmm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/gemv.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/index_remat.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_base.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_blas3_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_layernorm_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_pipelined.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_base.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_singlestage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_softmax_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_base.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_with_reduction_multistage.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle_streamk.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/layernorm_scale_bias_transform.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_mixed_input_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_policy.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fragment_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm70.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sparse.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_wmma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_wmma.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/scale_bias_tile_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/softmax_scale_bias_transform.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm/warp/tile_iterator_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm_coord.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/gemm_coord.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/half.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/integer_subbyte.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/kernel_launch.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/layout/layout.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/layout/matrix.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/layout/permute.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/layout/pitch_linear.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/layout/tensor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm70.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm75.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/layout/vector.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/matrix.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/matrix_coord.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/matrix_shape.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/numeric_conversion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/numeric_size.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/numeric_types.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/pipeline/pipeline.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/pipeline/sm90_pipeline.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/pitch_linear_coord.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/platform/platform.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/predicate_vector.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/quaternion.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/real.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/device/reduce_split_k.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_softmax_final.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_split_k.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/thread/reduce.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/thread/reduction_operators.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/reduction/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/relatively_equal.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/semaphore.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/subbyte_reference.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/tensor_coord.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/tensor_ref.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/tensor_ref_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/tensor_view.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/tensor_view_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/tfloat32.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/thread/matrix.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/trace.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/collective/sm90_wgmma_transpose.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/device/transform_universal_adapter.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/kernel/filter_format_transformer.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/kernel/sm90_sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/kernel/sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/pitch_linear_thread_map.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/thread/transpose.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/thread/unary_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_params.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear_direct_conv.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/threadblock/vector_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/transform/warp/vector_fragment_iterator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/uint128.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/version.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/wmma_array.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/include/cutlass/workspace.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/GPU_Clock.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/command_line.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/cublas_wrappers.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/debug.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_dump.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_groupnorm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_layernorm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_memory.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nchw_to_nhwc.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_padding.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_pooling.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_to_nchw.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_rmsnorm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_utils.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/distribution.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/exceptions.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/gett_commandline.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/helper_cuda.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/host_reorder.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/host_uncompress.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/index_sequence.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/packed_stride.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/print_error.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/inner_product.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/linear_to_coordinate.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/convolution.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gett.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_elementwise.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_compare.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_fill.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_relu.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/thread/gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/conv.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/convolution.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/error_metrics.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gett.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_k_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_copy.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_elementwise.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_norm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.hpp +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm_complex.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/tensor_view_io.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/3rdparty/cutlass/tools/util/include/cutlass/util/type_traits.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/LICENSE +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/activation.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/aot_extension_utils.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode_config.inc +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode_mla_config.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode_mla_cute_sm80.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode_mla_plan.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode_mla_pybind.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_decode_mla_run.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_mla_config.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_mla_plan.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_mla_pybind.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_config.inc +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_ragged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_sm90_config.inc +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/batch_prefill_sm90_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/bmm_fp8.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/cascade.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_cascade_ops.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_gemm_ops.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_gemm_sm90_ops.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_norm_ops.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_ops.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_ops_sm90.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_page_ops.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_quantization_ops.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_rope_ops.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/flashinfer_sampling_ops.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/group_gemm.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/group_gemm_sm90.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/norm.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/page.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/pytorch_conversion_utils.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/pytorch_extension_utils.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/quantization.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/renorm.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/rope.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/runtime_utils.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/sampling.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_decode.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_decode_config.inc +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_decode_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill_config.inc +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill_sm90_config.inc +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill_sm90_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/csrc/single_prefill_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/__init__.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/cascade.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/decode.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/gemm.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/jit/activation.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/jit/core.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/jit/utils.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/py.typed +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/quantization.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/rope.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/sparse.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/triton/__init__.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/triton/activation.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/triton/cascade.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/triton/kernels/__init__.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/triton/kernels/activation.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/triton/kernels/cascade.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/triton/kernels/quant.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer/triton/utils.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer_python.egg-info/dependency_links.txt +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer_python.egg-info/requires.txt +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/flashinfer_python.egg-info/top_level.txt +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/activation.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/allocator.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/cascade.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/decode.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/decode_mla_cute_sm80.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/default_decode_params.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/default_prefill_params.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/heap.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/attention_updater.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/block_sparse_gather.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/default_params.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/mainloop.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/named_barrier.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/sparse_mainloop.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/tile_scheduler.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/utils.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/variant_helper.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/hopper/variants.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/mask.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/mla_params.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/prefill.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/state.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/variant_helper.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention/variants.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/attention_impl.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/cp_async.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/cutlass_utils.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/distributed/all_reduce.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/exception.h +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/fastdiv.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/frag_layout_swizzle.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/gemm/bmm_fp8.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/gemm/group_gemm.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/gemm/group_gemm_lora.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/gemm/group_gemm_sm90.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/gemm/group_gemv.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/layout.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/math.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/mma.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/norm.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/page.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/permuted_smem.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/pos_enc.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/quantization.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/sampling.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/utils.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/include/flashinfer/vec_dtypes.cuh +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/setup.cfg +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/setup.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_activation.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_alibi.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_batch_decode_kernels.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_batch_prefill_kernels.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_block_sparse.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_block_sparse_indices_to_vector_sparse_offsets.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_bmm_fp8.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_decode_fp8_calibration_scale.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_decode_prefill_lse.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_fp8_prefill.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_group_gemm.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_hopper.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_jit_example.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_jit_warmup.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_logits_cap.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_mla_decode_kernel.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_non_contiguous_decode.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_non_contiguous_prefill.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_norm.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_page.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_quantization.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_rope.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_sampling.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_shared_prefix_kernels.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_sliding_window.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_tensor_cores_decode.py +0 -0
- {flashinfer_python-0.2.1.post2 → flashinfer_python-0.2.2}/tests/test_triton_cascade.py +0 -0
{flashinfer_python-0.2.1.post2/flashinfer_python.egg-info → flashinfer_python-0.2.2}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: flashinfer-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: FlashInfer: Kernel Library for LLM Serving
|
|
5
5
|
Author: FlashInfer team
|
|
6
6
|
License: Apache License 2.0
|
|
@@ -165,6 +165,7 @@ We are thrilled to share that FlashInfer is being adopted by many cutting-edge p
|
|
|
165
165
|
- [TGI](https://github.com/huggingface/text-generation-inference)
|
|
166
166
|
- [lorax](https://github.com/predibase/lorax)
|
|
167
167
|
- [TensorRT-LLM](https://github.com/NVIDIA/TensorRT-LLM)
|
|
168
|
+
- [LightLLM](https://github.com/ModelTC/lightllm)
|
|
168
169
|
|
|
169
170
|
## Acknowledgement
|
|
170
171
|
|
|
@@ -150,6 +150,7 @@ We are thrilled to share that FlashInfer is being adopted by many cutting-edge p
|
|
|
150
150
|
- [TGI](https://github.com/huggingface/text-generation-inference)
|
|
151
151
|
- [lorax](https://github.com/predibase/lorax)
|
|
152
152
|
- [TensorRT-LLM](https://github.com/NVIDIA/TensorRT-LLM)
|
|
153
|
+
- [LightLLM](https://github.com/ModelTC/lightllm)
|
|
153
154
|
|
|
154
155
|
## Acknowledgement
|
|
155
156
|
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
#define SINGLE_DECODE_ADDITIONAL_FUNC_PARAMS , std::optional<at::Tensor> maybe_alibi_slopes, double logits_soft_cap, double sm_scale, double rope_rcp_scale, double rope_rcp_theta
|
|
2
|
+
|
|
3
|
+
#define SINGLE_DECODE_ADDITIONAL_PARAMS_SETTER params.maybe_alibi_slopes = maybe_alibi_slopes ? static_cast<float*>(maybe_alibi_slopes->data_ptr()): nullptr; \
|
|
4
|
+
params.logits_soft_cap = logits_soft_cap; \
|
|
5
|
+
params.sm_scale = sm_scale; \
|
|
6
|
+
params.rope_rcp_scale = rope_rcp_scale; \
|
|
7
|
+
params.rope_rcp_theta = rope_rcp_theta;
|
|
8
|
+
|
|
9
|
+
#define SINGLE_PREFILL_ADDITIONAL_FUNC_PARAMS , std::optional<at::Tensor> maybe_custom_mask, std::optional<at::Tensor> maybe_alibi_slopes, double logits_soft_cap, double sm_scale, double rope_rcp_scale, double rope_rcp_theta
|
|
10
|
+
|
|
11
|
+
#define SINGLE_PREFILL_ADDITIONAL_PARAMS_SETTER params.maybe_custom_mask = maybe_custom_mask ? static_cast<uint8_t*>(maybe_custom_mask->data_ptr()): nullptr; \
|
|
12
|
+
params.maybe_alibi_slopes = maybe_alibi_slopes ? static_cast<float*>(maybe_alibi_slopes->data_ptr()): nullptr; \
|
|
13
|
+
params.logits_soft_cap = logits_soft_cap; \
|
|
14
|
+
params.sm_scale = sm_scale; \
|
|
15
|
+
params.rope_rcp_scale = rope_rcp_scale; \
|
|
16
|
+
params.rope_rcp_theta = rope_rcp_theta;
|
|
17
|
+
|
|
18
|
+
#define SINGLE_PREFILL_SM90_ADDITIONAL_FUNC_PARAMS , double logits_soft_cap, double sm_scale
|
|
19
|
+
|
|
20
|
+
#define SINGLE_PREFILL_SM90_ADDITIONAL_PARAMS_SETTER params.additional_params.logits_soft_cap = logits_soft_cap; \
|
|
21
|
+
params.additional_params.sm_scale = sm_scale;
|
|
22
|
+
|
|
23
|
+
#define BATCH_DECODE_ADDITIONAL_FUNC_PARAMS , std::optional<at::Tensor> maybe_alibi_slopes, double logits_soft_cap, double sm_scale, double rope_rcp_scale, double rope_rcp_theta
|
|
24
|
+
|
|
25
|
+
#define BATCH_DECODE_ADDITIONAL_PARAMS_SETTER params.maybe_alibi_slopes = maybe_alibi_slopes ? static_cast<float*>(maybe_alibi_slopes->data_ptr()): nullptr; \
|
|
26
|
+
params.logits_soft_cap = logits_soft_cap; \
|
|
27
|
+
params.sm_scale = sm_scale; \
|
|
28
|
+
params.rope_rcp_scale = rope_rcp_scale; \
|
|
29
|
+
params.rope_rcp_theta = rope_rcp_theta;
|
|
30
|
+
|
|
31
|
+
#define BATCH_PREFILL_ADDITIONAL_FUNC_PARAMS , std::optional<at::Tensor> maybe_custom_mask, std::optional<at::Tensor> maybe_mask_indptr, std::optional<at::Tensor> maybe_alibi_slopes, double logits_soft_cap, double sm_scale, double rope_rcp_scale, double rope_rcp_theta
|
|
32
|
+
|
|
33
|
+
#define BATCH_PREFILL_ADDITIONAL_PARAMS_SETTER params.maybe_custom_mask = maybe_custom_mask ? static_cast<uint8_t*>(maybe_custom_mask->data_ptr()): nullptr; \
|
|
34
|
+
params.maybe_mask_indptr = maybe_mask_indptr ? static_cast<int32_t*>(maybe_mask_indptr->data_ptr()): nullptr; \
|
|
35
|
+
params.maybe_alibi_slopes = maybe_alibi_slopes ? static_cast<float*>(maybe_alibi_slopes->data_ptr()): nullptr; \
|
|
36
|
+
params.logits_soft_cap = logits_soft_cap; \
|
|
37
|
+
params.sm_scale = sm_scale; \
|
|
38
|
+
params.rope_rcp_scale = rope_rcp_scale; \
|
|
39
|
+
params.rope_rcp_theta = rope_rcp_theta;
|
|
40
|
+
|
|
41
|
+
#define BATCH_PREFILL_SM90_ADDITIONAL_FUNC_PARAMS , double logits_soft_cap, double sm_scale
|
|
42
|
+
|
|
43
|
+
#define BATCH_PREFILL_SM90_ADDITIONAL_PARAMS_SETTER params.additional_params.logits_soft_cap = logits_soft_cap; \
|
|
44
|
+
params.additional_params.sm_scale = sm_scale;
|
|
45
|
+
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
#include <flashinfer/attention/
|
|
16
|
+
#include <flashinfer/attention/mla.cuh>
|
|
17
17
|
#include <flashinfer/attention/scheduler.cuh>
|
|
18
18
|
#include <flashinfer/fastdiv.cuh>
|
|
19
19
|
#include <optional>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2025 by FlashInfer team.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
#include <flashinfer/attention/scheduler.cuh>
|
|
17
|
+
#include <optional>
|
|
18
|
+
|
|
19
|
+
#include "batch_mla_sm90_config.inc"
|
|
20
|
+
#include "pytorch_conversion_utils.h"
|
|
21
|
+
#include "pytorch_extension_utils.h"
|
|
22
|
+
|
|
23
|
+
using namespace flashinfer;
|
|
24
|
+
|
|
25
|
+
at::Tensor BatchMLAPagedAttentionSM90Plan(at::Tensor float_workspace_buffer,
|
|
26
|
+
at::Tensor int_workspace_buffer,
|
|
27
|
+
at::Tensor page_locked_int_workspace_buffer,
|
|
28
|
+
at::Tensor qo_indptr, at::Tensor kv_indptr,
|
|
29
|
+
at::Tensor kv_len, int64_t num_heads, int64_t head_dim_o,
|
|
30
|
+
bool causal, int64_t cuda_stream) {
|
|
31
|
+
size_t float_workspace_size_in_bytes =
|
|
32
|
+
float_workspace_buffer.size(0) * float_workspace_buffer.element_size();
|
|
33
|
+
size_t int_workspace_size_in_bytes =
|
|
34
|
+
int_workspace_buffer.size(0) * int_workspace_buffer.element_size();
|
|
35
|
+
|
|
36
|
+
MLAPlanInfo plan_info;
|
|
37
|
+
|
|
38
|
+
int batch_size = kv_len.size(0);
|
|
39
|
+
|
|
40
|
+
cudaStream_t stream = reinterpret_cast<cudaStream_t>(cuda_stream);
|
|
41
|
+
cudaError_t status =
|
|
42
|
+
MLAPlan(float_workspace_buffer.data_ptr(), float_workspace_size_in_bytes,
|
|
43
|
+
int_workspace_buffer.data_ptr(), page_locked_int_workspace_buffer.data_ptr(),
|
|
44
|
+
int_workspace_size_in_bytes, plan_info, static_cast<IdType*>(qo_indptr.data_ptr()),
|
|
45
|
+
static_cast<IdType*>(kv_indptr.data_ptr()), static_cast<IdType*>(kv_len.data_ptr()),
|
|
46
|
+
batch_size, num_heads, head_dim_o, causal, stream);
|
|
47
|
+
|
|
48
|
+
TORCH_CHECK(status == cudaSuccess, "Failed to plan MLA, error: ", cudaGetErrorString(status));
|
|
49
|
+
|
|
50
|
+
return vec_to_tensor(plan_info.ToVector());
|
|
51
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2025 by FlashInfer team.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
#include "batch_mla_sm90_config.inc"
|
|
17
|
+
#include "pytorch_extension_utils.h"
|
|
18
|
+
|
|
19
|
+
at::Tensor BatchMLAPagedAttentionSM90Plan(at::Tensor float_workspace_buffer,
|
|
20
|
+
at::Tensor int_workspace_buffer,
|
|
21
|
+
at::Tensor page_locked_int_workspace_buffer,
|
|
22
|
+
at::Tensor qo_indptr, at::Tensor kv_indptr,
|
|
23
|
+
at::Tensor kv_len, int64_t num_heads, int64_t head_dim_o,
|
|
24
|
+
bool causal, int64_t cuda_stream);
|
|
25
|
+
|
|
26
|
+
void BatchMLAPagedAttentionSM90Run(at::Tensor float_workspace_buffer,
|
|
27
|
+
at::Tensor int_workspace_buffer, at::Tensor plan_info_vec,
|
|
28
|
+
at::Tensor q_nope, at::Tensor q_pe, at::Tensor ckv_cache,
|
|
29
|
+
at::Tensor kpe_cache, at::Tensor kv_indices, at::Tensor o,
|
|
30
|
+
std::optional<at::Tensor> maybe_lse, int64_t mask_mode_code,
|
|
31
|
+
int64_t num_heads, int64_t page_size, double sm_scale,
|
|
32
|
+
int64_t cuda_stream);
|
|
33
|
+
|
|
34
|
+
TORCH_LIBRARY_FRAGMENT(TORCH_EXTENSION_NAME, m) {
|
|
35
|
+
m.def("plan", &BatchMLAPagedAttentionSM90Plan);
|
|
36
|
+
m.def("run", &BatchMLAPagedAttentionSM90Run);
|
|
37
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2025 by FlashInfer team.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
#include <flashinfer/attention/mla_hopper.cuh>
|
|
17
|
+
#include <flashinfer/attention/scheduler.cuh>
|
|
18
|
+
#include <flashinfer/fastdiv.cuh>
|
|
19
|
+
#include <optional>
|
|
20
|
+
|
|
21
|
+
#include "batch_mla_sm90_config.inc"
|
|
22
|
+
#include "pytorch_conversion_utils.h"
|
|
23
|
+
#include "pytorch_extension_utils.h"
|
|
24
|
+
|
|
25
|
+
using namespace flashinfer;
|
|
26
|
+
|
|
27
|
+
void BatchMLAPagedAttentionSM90Run(at::Tensor float_workspace_buffer,
|
|
28
|
+
at::Tensor int_workspace_buffer, at::Tensor plan_info_vec,
|
|
29
|
+
at::Tensor q_nope, at::Tensor q_pe, at::Tensor ckv_cache,
|
|
30
|
+
at::Tensor kpe_cache, at::Tensor kv_indices, at::Tensor o,
|
|
31
|
+
std::optional<at::Tensor> maybe_lse, int64_t mask_mode_code,
|
|
32
|
+
int64_t num_heads, int64_t page_size, double sm_scale,
|
|
33
|
+
int64_t cuda_stream) {
|
|
34
|
+
// q_nope: [n, num_heads, head_dim_ckv]
|
|
35
|
+
// q_pe: [n, num_heads, head_dim_kpe]
|
|
36
|
+
// ckv_cache: [num_pages, page_size, head_dim_ckv]
|
|
37
|
+
// kpe_cache: [num_pages, page_size, head_dim_kpe]
|
|
38
|
+
MLAPlanInfo plan_info;
|
|
39
|
+
plan_info.FromVector(tensor_to_vec(plan_info_vec));
|
|
40
|
+
|
|
41
|
+
auto device = q_nope.device();
|
|
42
|
+
|
|
43
|
+
void* float_buffer_ptr = float_workspace_buffer.data_ptr();
|
|
44
|
+
void* int_buffer_ptr = int_workspace_buffer.data_ptr();
|
|
45
|
+
|
|
46
|
+
const MaskMode mask_mode = static_cast<MaskMode>(mask_mode_code);
|
|
47
|
+
|
|
48
|
+
auto q_scalar_type = q_nope.scalar_type();
|
|
49
|
+
auto kv_scalar_type = ckv_cache.scalar_type();
|
|
50
|
+
|
|
51
|
+
unsigned int q_nope_stride_n = q_nope.stride(0);
|
|
52
|
+
unsigned int q_nope_stride_h = q_nope.stride(1);
|
|
53
|
+
unsigned int q_pe_stride_n = q_pe.stride(0);
|
|
54
|
+
unsigned int q_pe_stride_h = q_pe.stride(1);
|
|
55
|
+
unsigned int ckv_stride_page = ckv_cache.stride(0);
|
|
56
|
+
unsigned int ckv_stride_n = ckv_cache.stride(1);
|
|
57
|
+
unsigned int kpe_stride_page = kpe_cache.stride(0);
|
|
58
|
+
unsigned int kpe_stride_n = kpe_cache.stride(1);
|
|
59
|
+
unsigned int o_stride_n = o.stride(0);
|
|
60
|
+
unsigned int o_stride_h = o.stride(1);
|
|
61
|
+
|
|
62
|
+
cudaStream_t stream = reinterpret_cast<cudaStream_t>(cuda_stream);
|
|
63
|
+
|
|
64
|
+
DISPATCH_context(
|
|
65
|
+
DTypeQ, DTypeKV, DTypeO, IdType, MASK_MODE, HEAD_DIM_CKV, HEAD_DIM_KPE, Params, [&] {
|
|
66
|
+
Params params;
|
|
67
|
+
|
|
68
|
+
params.q_nope = static_cast<DTypeQ*>(q_nope.data_ptr());
|
|
69
|
+
params.q_pe = static_cast<DTypeQ*>(q_pe.data_ptr());
|
|
70
|
+
params.ckv = static_cast<DTypeKV*>(ckv_cache.data_ptr());
|
|
71
|
+
params.kpe = static_cast<DTypeKV*>(kpe_cache.data_ptr());
|
|
72
|
+
|
|
73
|
+
params.q_indptr = GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.q_indptr_offset);
|
|
74
|
+
params.kv_indptr = GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.kv_indptr_offset);
|
|
75
|
+
params.partial_indptr =
|
|
76
|
+
GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.partial_indptr_offset);
|
|
77
|
+
params.kv_indices = static_cast<IdType*>(kv_indices.data_ptr());
|
|
78
|
+
params.q_len = GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.q_len_offset);
|
|
79
|
+
params.kv_len = GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.kv_len_offset);
|
|
80
|
+
params.q_start = GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.q_start_offset);
|
|
81
|
+
params.kv_start = GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.kv_start_offset);
|
|
82
|
+
params.kv_end = GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.kv_end_offset);
|
|
83
|
+
params.work_indptr =
|
|
84
|
+
GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.work_indptr_offset);
|
|
85
|
+
params.merge_packed_offset_start = GetPtrFromBaseOffset<IdType>(
|
|
86
|
+
int_buffer_ptr, plan_info.merge_packed_offset_start_offset);
|
|
87
|
+
params.merge_packed_offset_end =
|
|
88
|
+
GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.merge_packed_offset_end_offset);
|
|
89
|
+
params.merge_indptr =
|
|
90
|
+
GetPtrFromBaseOffset<IdType>(int_buffer_ptr, plan_info.merge_indptr_offset);
|
|
91
|
+
params.final_o = static_cast<DTypeO*>(o.data_ptr());
|
|
92
|
+
params.final_lse =
|
|
93
|
+
maybe_lse.has_value() ? static_cast<float*>(maybe_lse->data_ptr()) : nullptr;
|
|
94
|
+
params.partial_o =
|
|
95
|
+
GetPtrFromBaseOffset<float>(float_buffer_ptr, plan_info.partial_o_offset);
|
|
96
|
+
params.partial_lse =
|
|
97
|
+
GetPtrFromBaseOffset<float>(float_buffer_ptr, plan_info.partial_lse_offset);
|
|
98
|
+
|
|
99
|
+
params.num_heads = uint_fastdiv(num_heads);
|
|
100
|
+
params.block_size = uint_fastdiv(page_size);
|
|
101
|
+
|
|
102
|
+
params.q_nope_stride_n = q_nope_stride_n;
|
|
103
|
+
params.q_nope_stride_h = q_nope_stride_h;
|
|
104
|
+
params.q_pe_stride_n = q_pe_stride_n;
|
|
105
|
+
params.q_pe_stride_h = q_pe_stride_h;
|
|
106
|
+
params.ckv_stride_page = ckv_stride_page;
|
|
107
|
+
params.ckv_stride_n = ckv_stride_n;
|
|
108
|
+
params.kpe_stride_page = kpe_stride_page;
|
|
109
|
+
params.kpe_stride_n = kpe_stride_n;
|
|
110
|
+
params.o_stride_n = o_stride_n;
|
|
111
|
+
params.o_stride_h = o_stride_h;
|
|
112
|
+
|
|
113
|
+
params.sm_scale = sm_scale;
|
|
114
|
+
|
|
115
|
+
cudaError_t status =
|
|
116
|
+
mla::BatchMLAPageAttentionHopper<MASK_MODE, HEAD_DIM_CKV, HEAD_DIM_KPE>(
|
|
117
|
+
params, plan_info.num_blks_x, plan_info.num_blks_y, stream);
|
|
118
|
+
|
|
119
|
+
TORCH_CHECK(status == cudaSuccess,
|
|
120
|
+
"Failed to run MLA, error: ", cudaGetErrorString(status));
|
|
121
|
+
});
|
|
122
|
+
}
|
|
@@ -38,4 +38,5 @@ def build_editable(wheel_directory, config_settings=None, metadata_directory=Non
|
|
|
38
38
|
ln("3rdparty/cutlass", "cutlass")
|
|
39
39
|
ln("csrc", "csrc")
|
|
40
40
|
ln("include", "include")
|
|
41
|
+
ln("tvm_binding", "tvm_binding")
|
|
41
42
|
return orig.build_editable(wheel_directory, config_settings, metadata_directory)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.2.2'
|
|
@@ -104,7 +104,7 @@ def silu_and_mul(input: torch.Tensor, out: torch.Tensor = None) -> torch.Tensor:
|
|
|
104
104
|
Input tensor, shape (..., 2 * hidden_size).
|
|
105
105
|
|
|
106
106
|
out: Optional[torch.Tensor]
|
|
107
|
-
The
|
|
107
|
+
The output tensor, if specified, the kernel will update this tensor inplace.
|
|
108
108
|
|
|
109
109
|
Returns
|
|
110
110
|
-------
|
|
@@ -139,7 +139,7 @@ def gelu_tanh_and_mul(input: torch.Tensor, out: torch.Tensor = None) -> torch.Te
|
|
|
139
139
|
Input tensor, shape (..., 2 * hidden_size).
|
|
140
140
|
|
|
141
141
|
out: Optional[torch.Tensor]
|
|
142
|
-
The
|
|
142
|
+
The output tensor, if specified, the kernel will update this tensor inplace.
|
|
143
143
|
|
|
144
144
|
Returns
|
|
145
145
|
-------
|
|
@@ -171,7 +171,7 @@ def gelu_and_mul(input: torch.Tensor, out: torch.Tensor = None) -> torch.Tensor:
|
|
|
171
171
|
Input tensor, shape (..., 2 * hidden_size).
|
|
172
172
|
|
|
173
173
|
out: Optional[torch.Tensor]
|
|
174
|
-
The
|
|
174
|
+
The output tensor, if specified, the kernel will update this tensor inplace.
|
|
175
175
|
|
|
176
176
|
Returns
|
|
177
177
|
-------
|
|
@@ -20,13 +20,20 @@ from .activation import get_act_and_mul_cu_str as get_act_and_mul_cu_str
|
|
|
20
20
|
from .attention import gen_batch_decode_mla_module as gen_batch_decode_mla_module
|
|
21
21
|
from .attention import gen_batch_decode_module as gen_batch_decode_module
|
|
22
22
|
from .attention import gen_batch_mla_module as gen_batch_mla_module
|
|
23
|
+
from .attention import gen_batch_mla_tvm_binding as gen_batch_mla_tvm_binding
|
|
23
24
|
from .attention import gen_batch_prefill_module as gen_batch_prefill_module
|
|
24
25
|
from .attention import (
|
|
25
26
|
gen_customize_batch_decode_module as gen_customize_batch_decode_module,
|
|
26
27
|
)
|
|
28
|
+
from .attention import (
|
|
29
|
+
gen_customize_batch_decode_tvm_binding as gen_customize_batch_decode_tvm_binding,
|
|
30
|
+
)
|
|
27
31
|
from .attention import (
|
|
28
32
|
gen_customize_batch_prefill_module as gen_customize_batch_prefill_module,
|
|
29
33
|
)
|
|
34
|
+
from .attention import (
|
|
35
|
+
gen_customize_batch_prefill_tvm_binding as gen_customize_batch_prefill_tvm_binding,
|
|
36
|
+
)
|
|
30
37
|
from .attention import (
|
|
31
38
|
gen_customize_single_decode_module as gen_customize_single_decode_module,
|
|
32
39
|
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
prebuilt_ops_uri = set(['single_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'single_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_e4m3_dtype_kv_e4m3_dtype_o_e4m3_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_e5m2_dtype_kv_e5m2_dtype_o_e5m2_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True', 'batch_decode_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e4m3_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_e5m2_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e4m3_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_e5m2_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'single_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_128_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_256_head_dim_vo_256_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_f16_dtype_kv_f16_dtype_o_f16_dtype_idx_i32_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_True_use_logits_cap_False_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_True_f16qk_False_sm90', 'batch_prefill_with_kv_cache_dtype_q_bf16_dtype_kv_bf16_dtype_o_bf16_dtype_idx_i32_head_dim_qk_192_head_dim_vo_128_posenc_0_use_swa_False_use_logits_cap_False_f16qk_False_sm90'])
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Copyright (c) 2025 by FlashInfer team.
|
|
3
|
+
|
|
4
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
you may not use this file except in compliance with the License.
|
|
6
|
+
You may obtain a copy of the License at
|
|
7
|
+
|
|
8
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
|
|
10
|
+
Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
See the License for the specific language governing permissions and
|
|
14
|
+
limitations under the License.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
from . import pytorch, tvm
|
|
18
|
+
from .pytorch import gen_batch_decode_mla_module as gen_batch_decode_mla_module
|
|
19
|
+
from .pytorch import gen_batch_decode_module as gen_batch_decode_module
|
|
20
|
+
from .pytorch import gen_batch_mla_module as gen_batch_mla_module
|
|
21
|
+
from .pytorch import gen_batch_prefill_module as gen_batch_prefill_module
|
|
22
|
+
from .pytorch import (
|
|
23
|
+
gen_customize_batch_decode_module as gen_customize_batch_decode_module,
|
|
24
|
+
)
|
|
25
|
+
from .pytorch import (
|
|
26
|
+
gen_customize_batch_prefill_module as gen_customize_batch_prefill_module,
|
|
27
|
+
)
|
|
28
|
+
from .pytorch import (
|
|
29
|
+
gen_customize_single_decode_module as gen_customize_single_decode_module,
|
|
30
|
+
)
|
|
31
|
+
from .pytorch import (
|
|
32
|
+
gen_customize_single_prefill_module as gen_customize_single_prefill_module,
|
|
33
|
+
)
|
|
34
|
+
from .pytorch import gen_single_decode_module as gen_single_decode_module
|
|
35
|
+
from .pytorch import gen_single_prefill_module as gen_single_prefill_module
|
|
36
|
+
from .pytorch import get_batch_decode_mla_uri as get_batch_decode_mla_uri
|
|
37
|
+
from .pytorch import get_batch_decode_uri as get_batch_decode_uri
|
|
38
|
+
from .pytorch import get_batch_mla_uri as get_batch_mla_uri
|
|
39
|
+
from .pytorch import get_batch_prefill_uri as get_batch_prefill_uri
|
|
40
|
+
from .pytorch import get_single_decode_uri as get_single_decode_uri
|
|
41
|
+
from .pytorch import get_single_prefill_uri as get_single_prefill_uri
|
|
42
|
+
from .tvm import gen_batch_mla_tvm_binding as gen_batch_mla_tvm_binding
|
|
43
|
+
from .tvm import (
|
|
44
|
+
gen_customize_batch_decode_tvm_binding as gen_customize_batch_decode_tvm_binding,
|
|
45
|
+
)
|
|
46
|
+
from .tvm import (
|
|
47
|
+
gen_customize_batch_prefill_tvm_binding as gen_customize_batch_prefill_tvm_binding,
|
|
48
|
+
)
|