flashinfer-python 0.5.0rc3__tar.gz → 0.5.1__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.5.0rc3 → flashinfer_python-0.5.1}/PKG-INFO +1 -1
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_xqa_binding.cu +8 -17
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fused_moe/cutlass_backend/flashinfer_cutlass_fused_moe_sm100_binding.cu +36 -19
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_fmha_kernel_launcher.cu +7 -4
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/defines.h +10 -17
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/mha.cu +45 -173
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/mha.h +20 -51
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/mhaUtils.cuh +20 -30
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/mha_sm90.cu +42 -212
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/mla_sm120.cu +30 -149
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/tensorMap.cpp +6 -15
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/tensorMap.h +2 -1
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/utils.cuh +1 -1
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/xqa_wrapper.cu +22 -27
- flashinfer_python-0.5.1/flashinfer/_build_meta.py +3 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/decode.py +310 -89
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/gemm.py +1 -1
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/xqa.py +0 -4
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/prefill.py +24 -3
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/utils.py +25 -10
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/xqa.py +35 -2
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer_python.egg-info/PKG-INFO +1 -1
- flashinfer_python-0.5.0rc3/flashinfer/_build_meta.py +0 -3
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/40_cutlass_py/conv2d.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/40_cutlass_py/customizable/conv2d.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/40_cutlass_py/customizable/gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/40_cutlass_py/customizable/gemm_grouped.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/40_cutlass_py/gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/40_cutlass_py/gemm_grouped.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/41_fused_multi_head_attention/fmha_backward_test.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/41_fused_multi_head_attention/piped_subprocess.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_all_code.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_cmake.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_customized_epilogue.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_device.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_ir.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_kernel.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_sample.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_threadblock.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_turing_and_volta.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_verify.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/helper.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/replace_fix_impl_header.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/call_bypass_dlpack.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/call_from_jit.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/dynamic_smem_size.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/elementwise_add.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/elementwise_apply.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/flash_attention_v2.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/sgemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/smem_allocator.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/tensorop_gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/dense_blockscaled_gemm_persistent.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/dense_gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/dense_gemm_persistent.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/dense_gemm_software_pipeline.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/fmha.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/grouped_gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/mamba2_ssd/mamba2_ssd.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/mamba2_ssd/mamba2_ssd_reference.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/mamba2_ssd/mamba2_ssd_tile_scheduler.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/cute/ffi/jit_argument.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/examples/python/CuTeDSL/hopper/dense_gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/axpby.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/clear.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/cooperative_copy.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/cooperative_gemm.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/copy.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/fill.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/functional.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/gemm.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/prefer.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/prefetch.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/tensor_algorithms.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/tensor_reduce.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/algorithm/tuple_algorithms.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/cluster_sm100.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/cluster_sm90.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/config.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/copy.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/copy_sm100.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/copy_sm100_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/copy_sm50.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/copy_sm75.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/copy_sm80.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/copy_sm90.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/copy_sm90_desc.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/copy_sm90_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm100.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm100_desc.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm100_umma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm120.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm61.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm70.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm75.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm80.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm89.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm90.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm90_desc.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/simd_sm100.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/tmem_allocator_sm100.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/arch/util.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_atom.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_im2col.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm50.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm75.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm80.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_im2col.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma_swizzle.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_atom.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm100.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm61.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm70.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm75.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm80.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm89.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/atom/partitioner.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/config.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/container/alignment.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/container/array.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/container/array_aligned.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/container/array_subbyte.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/container/bit_field.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/container/cuda_types.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/container/tuple.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/container/type_list.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/int_tuple.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/layout.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/layout_composed.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/numeric/arithmetic_tuple.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/numeric/complex.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/numeric/int.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/numeric/integer_sequence.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/numeric/integral_constant.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/numeric/integral_ratio.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/numeric/math.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/numeric/numeric_types.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/numeric/real.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/pointer.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/pointer_base.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/pointer_flagged.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/pointer_sparse.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/pointer_swizzle.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/stride.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/swizzle.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/swizzle_layout.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/tensor.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/tensor_impl.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/tensor_zip.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/underscore.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/util/debug.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/util/print.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/util/print_latex.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/util/print_svg.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/util/print_tensor.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cute/util/type_traits.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/aligned_buffer.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/arch.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/barrier.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/cache_operation.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/config.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/memory.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/memory_sm75.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/memory_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sm100.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sm50.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sm60.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sm61.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sm70.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sm75.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sm89.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sm90.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm89.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/reg_reconfig.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/simd.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/simd_sm60.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/simd_sm61.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/synclog.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/wmma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/wmma_sm70.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/wmma_sm72.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/arch/wmma_sm75.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/array.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/array_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/array_subbyte.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/barrier.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/bfloat16.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/blas3.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/blas3_types.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/block_striped.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/cluster_launch.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/constants.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/collective/collective_conv.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/collective/detail.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/collective/sm100_implicit_gemm_umma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/collective/sm90_implicit_gemm_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/conv2d_problem_size.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/conv3d_problem_size.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/convnd_problem_shape.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/convolution.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/detail.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/device/conv_universal_adapter.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/device/direct_convolution.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/conv_universal.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_dgrad.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_group_fprop.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_dgrad.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_wgrad.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_depthwise_fprop.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/direct_convolution.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_strided_dgrad.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/sm100_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/kernel/sm90_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/thread/depthwise_mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_tile_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_direct_conv_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_fixed_stride_dilation.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_direct_conv_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_filter_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_pipelined.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_core_with_lane_access_size.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_fprop_fusion_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_pipelined.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_wgrad_fusion_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/conv/warp/scale_bias_relu_transform.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/coord.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/core_io.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/cuda_host_adapter.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/cutlass.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/blockwise_scale_layout.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/cluster.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/collective/mixed_input_utils.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/collective/sm103_kernel_type.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/collective.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/dependent_false.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/helper_macros.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/layout.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/mainloop_fusion_helper_scale_factor.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/mma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/sm100_blockscaled_layout.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/sm100_mixed_dtype_blockwise_layout.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/sm100_tmem_helper.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/detail/sm103_blockscaled_layout.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/device_kernel.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm100_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm103_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_epilogue.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue_array.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/detail.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/epilogue_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_nosmem.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_nosmem.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized_array.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized_bias_elementwise.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/callbacks.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/operations.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_topk_softmax.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/activation.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/conversion_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/detail.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_elementwise.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_relu.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_clamp.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_dgelu.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_drelu.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_gelu.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic_with_scaling.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_hardswish.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_leaky_relu.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu0.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_residual_block.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_sigmoid.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_silu.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_with_elementwise.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/reduction_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/thread/scale_type.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_direct_store.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_simt.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_volta_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_simt.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_volta_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/direct_store_epilogue_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base_streamk.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_depthwise.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_direct_store.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_gemm_k_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_smem_accumulator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_visitor_with_softmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_scaling_factor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor_callbacks.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_workspace.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_2x.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_compute.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_load.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_store.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitors.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/interleaved_epilogue.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_iterator_parameter.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_tile_thread_map.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine_layout_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_blas3.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_conv.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_direct_conv.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_predicates.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_strided_dgrad.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_mixed.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_complex_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_simt.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/simt_policy.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tensor_op_policy.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_simt.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op_mixed.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/volta_tensor_op_policy.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/epilogue/warp/wmma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/exmy_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/detail.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/dist_gemm_universal_wrapper.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/full_barrier.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/detail.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/dist_gemm_kernel_wrapper.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/full_barrier.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_1d_schedules.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_base_schedule.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/fast_math.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/float8.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/float_subbyte.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/floating_point_nvrtc.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/functional.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_9xBF16_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_mixed_tma_cpasync_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockwise_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_cpasync_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_mixed_input_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_mixed_tma_cpasync_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_pipeline_carveout.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_simt_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm103_blockscaled_umma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_mma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockwise_mma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_mma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_common.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_sparse_config.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_config.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_gmma_builder.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder_decl.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma_decl.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/fp8_accumulation.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_mixed_tma_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_mixed_tma_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm103_blockscaled_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm103_blockscaled_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_array_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_array_tma_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm70_mma_twostage.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_array_multistage.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_multistage.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/base_grouped.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/default_gemm_configuration.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/ell_gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_array.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_batched.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_grouped.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemv.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/gemv_blockscaled.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/rank_k.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/symm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/device/trmm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/gemm_enumerated_types.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/group_array_problem_shape.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_ell_gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_planar_complex_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_broadcast.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemv.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_grouped.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/ell_gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_array.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_batched.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_pipelined.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex_array.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_streamk_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_transpose_operands.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_decl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_streamk.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor_streamk.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_batched_strided.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_blockscaled.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_sparse_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_universal_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_transpose_operands.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_k_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_mma_transform.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_mixed_tma_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mixed_input_transform.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mma_transform.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_sparse_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm103_blockscaled_gemm_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm103_blockscaled_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm120_gemm_tma_warpspecialized_cooperative_asymmetric_dma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm_array.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/symm_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_detail.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/kernel/trmm_universal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm50.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm60.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm61.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_ell_mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_gemv_core.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_simt.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm70.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm75.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sparse_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_access_size.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_wmma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_with_reduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_trmm_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_sparse_mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_trmm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_pipelined.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/gemv.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/index_remat.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_blas3_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_layernorm_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_pipelined.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_singlestage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_softmax_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_with_reduction_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle_streamk.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/layernorm_scale_bias_transform.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_mixed_input_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_policy.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fragment_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_access_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm70.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sparse.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_wmma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_wmma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/scale_bias_tile_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/softmax_scale_bias_transform.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm/warp/tile_iterator_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm_coord.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/gemm_coord.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/half.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/integer_subbyte.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/kernel_launch.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/layout/layout.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/layout/matrix.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/layout/permute.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/layout/pitch_linear.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/layout/tensor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm70.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm75.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/layout/vector.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/matrix.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/matrix_coord.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/matrix_shape.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/numeric_conversion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/numeric_size.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/numeric_types.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/pipeline/pipeline.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/pipeline/sm100_pipeline.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/pipeline/sm90_pipeline.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/pitch_linear_coord.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/platform/platform.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/predicate_vector.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/quaternion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/real.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/device/reduce_split_k.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_softmax_final.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_split_k.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/thread/reduce.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/thread/reduction_operators.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/reduction/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/relatively_equal.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/semaphore.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/subbyte_reference.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/tensor_coord.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/tensor_ref.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/tensor_ref_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/tensor_view.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/tensor_view_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/tfloat32.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/thread/matrix.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/trace.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/collective/sm90_wgmma_transpose.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/device/transform_universal_adapter.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/kernel/filter_format_transformer.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/kernel/sm90_sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/kernel/sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/pitch_linear_thread_map.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/thread/transpose.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/thread/unary_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_vector_access_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear_direct_conv.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear_2dthreadtile.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/threadblock/vector_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/transform/warp/vector_fragment_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/uint128.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/uint256.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/version.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/wmma_array.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/include/cutlass/workspace.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/arith.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/gpu.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/lru_cache_ir.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/op.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/ast_helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/ast_preprocessor.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/cache_helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/common.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/compiler.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/dsl.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/env_manager.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/jit_executor.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/cuda.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/device_tensor.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/dlpack_types.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/jit_arg_adapters.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/tensor_descriptor.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/typing.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/utils/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/utils/logger.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/utils/stacktrace.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/utils/timer.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/elect.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/mbar.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/nvvm_wrappers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/smem.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/tmem.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/core.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/math.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/common.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/cpasync/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/cpasync/copy.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/cpasync/helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/tcgen05/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/tcgen05/copy.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/tcgen05/helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/tcgen05/mma.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warp/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warp/copy.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warp/mma.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warpgroup/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warpgroup/helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warpgroup/mma.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/runtime.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/testing.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/typing.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/impl_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/pipeline/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/pipeline/helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/pipeline/sm100.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/pipeline/sm90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/torch.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/ampere_helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/blackwell_helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/blockscaled_layout.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/distributed_helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/grouped_gemm_tile_scheduler_helper.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/hardware_info.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/hopper_helpers.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/layout.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/smem_allocator.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/smem_capacity.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/static_persistent_tile_scheduler.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/tensormap_manager.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass_dsl/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass_dsl/cutlass.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass_dsl/cutlass_ast_decorators.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/CuTeDSL/cutlass_dsl/tree_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/arguments.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/c_types.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/compiler.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/conv2d_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/epilogue.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/emitter_base.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm100_emitter.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm100_nodes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm80_emitter.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm80_nodes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm90_emitter.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm90_nodes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/epilogue.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/frontend/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/frontend/frontend_base.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/frontend/python_ast.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/compute_nodes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/dag_ir.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/layout_algorithm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/layout_nodes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/load_nodes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/node.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/store_nodes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/tensor.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/graph_drawer.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_argument_type.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_dag_2_tree.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_fix_element_d.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_get_impl.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_layout_elimination.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_manager.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_no_op_elimination.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_preprocess_red.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_shape_type_propagation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/smem_size_calculator.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/util.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/frontend.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/gemm_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/library.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/memory_manager.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/reduction_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/type_hint.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/utils/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/backend/utils/device.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/emit/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/emit/common.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/emit/pytorch.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/epilogue/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/epilogue/epilogue.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/epilogue/evt_ops.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/library_defaults.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/op/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/op/conv.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/op/gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/op/gemm_grouped.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/op/op.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/shape.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/swizzle.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/utils/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/utils/check.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/utils/datatypes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/utils/lazy_import.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_cppgen/utils/profiler.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/conv2d_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/conv3d_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/conv3x_emitter.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/emit_kernel_listing.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/gemm_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/generator.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/heuristics.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/heuristics_provider.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/library.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/manifest.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/rank_2k_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/rank_k_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/sm100_shapes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/sm100_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/sm90_shapes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/sm90_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/symm_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/cutlass_library/trmm_operation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/docs_src/source/conf.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/pycute/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/pycute/int_tuple.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/pycute/layout.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/pycute/swizzle.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/pycute/typing.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/setup_cutlass.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/setup_library.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/python/setup_pycute.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/conv2d/conv2d_problem_sizes.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/conv2d/conv2d_sm80.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/conv2d/conv2d_test_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/conv2d/run_all_tests.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/emit/pytorch.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/evt/evt_compute_sm80_90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/evt/evt_layout_sm80_90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/evt/evt_load_sm80_90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/evt/evt_mixed_sm80_90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/evt/evt_store_sm80_90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/evt/run_all_tests.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/evt/utils/evt_testbed.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_batched.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f16_sm80.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f16_sm90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f32_sm80.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f64_sm80.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f64_sm90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f8_sm90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_mixed_sm80.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_s8_sm80.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_s8_sm90.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_testbed.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/run_all_tests.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/gemm/utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/installation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/interface/conv2d_interface.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/interface/evt_interface.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/interface/gemm_interface.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/cutlass/interface/utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/pycute/run_all_tests.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/pycute/test_coalesce.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/pycute/test_complement.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/pycute/test_composition.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/pycute/test_int_tuple.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/pycute/test_left_inverse.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/pycute/test_right_inverse.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/python/pycute/test_typing.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/test/unit/gemm/device/simt_sm50.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/GPU_Clock.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/command_line.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/cublas_wrappers.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/debug.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_dump.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_groupnorm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_layernorm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_memory.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nchw_to_nhwc.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_padding.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_pooling.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_to_nchw.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_rmsnorm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_utils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/distribution.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/exceptions.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/gett_commandline.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/helper_cuda.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_reorder.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_uncompress.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/index_sequence.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/mixed_dtype_utils.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/packed_stride.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/print_error.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/inner_product.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/linear_to_coordinate.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/convolution.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gett.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_elementwise.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_foreach.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/rank_2k_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_compare.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_fill.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_foreach.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_relu.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/thread/gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/conv.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/convolution.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/error_metrics.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gett.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_k_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_copy.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_elementwise.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_foreach.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_norm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm_complex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/tensor_view_io.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/include/cutlass/util/type_traits.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/cutlass/tools/util/scripts/split_test_cmake.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/async.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/async_logger-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/async_logger.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/cfg/argv.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/cfg/env.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/cfg/helpers-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/cfg/helpers.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/common-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/common.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/backtracer-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/backtracer.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/circular_q.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/console_globals.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/file_helper-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/file_helper.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/fmt_helper.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/log_msg-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/log_msg.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/mpmc_blocking_q.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/null_mutex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/os-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/os.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/periodic_worker-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/periodic_worker.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/registry-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/registry.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/synchronous_factory.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/tcp_client-windows.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/tcp_client.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/thread_pool-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/thread_pool.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/udp_client-windows.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/udp_client.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/details/windows_include.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bin_to_hex.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/args.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/chrono.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/color.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/compile.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/core.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/fmt.license.rst +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/format-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/format.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/locale.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/os.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/ostream.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/printf.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/ranges.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/std.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/bundled/xchar.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/chrono.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/compile.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/fmt.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/ostr.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/ranges.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/std.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fmt/xchar.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/formatter.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/fwd.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/logger-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/logger.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/mdc.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/pattern_formatter-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/pattern_formatter.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/android_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/base_sink-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/base_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/callback_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/daily_file_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/dist_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/dup_filter_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/hourly_file_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/kafka_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/mongo_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/msvc_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/null_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/ostream_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/qt_sinks.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/ringbuffer_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/sink-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/syslog_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/systemd_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/tcp_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/udp_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/win_eventlog_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/spdlog-inl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/spdlog.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/stopwatch.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/tweakme.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/include/spdlog/version.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/3rdparty/spdlog/scripts/extract_version.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/LICENSE +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/README.md +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/build_backend.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/build_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_attention.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_attention_customize_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_attention_jit_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_attention_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_decode.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_decode_jit_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_decode_mla_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_decode_mla_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_decode_mla_cute_sm80.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_decode_mla_plan.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_decode_mla_run.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_mla_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_mla_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_mla_plan.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_mla_run.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_mla_sm90_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_mla_sm90_plan.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_mla_sm90_run.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_fp8_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_fp8_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_fp8_sm90.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_jit_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_ragged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_sm90.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/batch_prefill_sm90_jit_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/blackwell_fmha_plan.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/bmm_fp8.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/cascade.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/cudnn_sdpa_kernel_launcher.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/cudnn_sdpa_utils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/cutlass_mla.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_cascade_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_gemm_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_gemm_sm90_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_mla_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_norm_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_page_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_quantization_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_rope_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/flashinfer_sampling_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fmhaReduction.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fmha_cutlass_sm100.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fmha_cutlass_sm100_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fp4_gemm_cutlass.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fp4_gemm_cutlass.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fp4_gemm_cutlass_sm120.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fp4_gemm_cutlass_sm120.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fp8_gemm_cutlass.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fp8_gemm_cutlass.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_instantiation.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_kernels.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/gemm_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/gemm_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/gemm_groupwise_sm120.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/gemm_groupwise_sm120_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/gemm_sm100_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/gemm_sm120_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_fp8_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_fp8_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_fp8_groupwise_sm120.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_fp8_groupwise_sm120_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_mxfp4_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_mxfp4_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_sm100_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_sm120_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_sm90.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/group_gemm_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/logging.cc +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/norm.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/cpp/common/envUtils.cpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/cpp/common/logger.cpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/cpp/common/memoryUtils.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/cpp/common/stringUtils.cpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/cpp/common/tllmException.cpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/cpp/kernels/quantization.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/NvInferRuntime.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/assert.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/cudaBf16Wrapper.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/cudaFp8Utils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/cudaUtils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/dataType.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/logger.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/quantization.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/stringUtils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/include/tensorrt_llm/common/tllmException.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/common/cublasMMWrapper.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/common/cudaBf16Fallbacks.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/common/cudaDriverWrapper.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/common/cudaTypeUtils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/common/envUtils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/common/memoryUtils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/common/quantTypeUtils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/common/reduceKernelUtils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/common/workspace.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_red_global.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_traits_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/communication/collective/sm90_allreduce_nvls_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/compute_occupancy.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/detail/collective/mixed_input_utils.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/collective/epilogue_moe_finalize.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/fusion/sm90_visitor_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/thread/fused_activations.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue_helpers.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_gated.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_interleaved.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_mixed_input.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_gated.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_interleaved.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_mixed_input.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_array_mixed_input.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_gated.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_interleaved.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input_.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_gated_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_gated_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_interleaved_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/default_fpA_intB_traits.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_routine.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_traits.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_moe_problem_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_universal_allreduce.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/mixed_gemm_B_layout.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cute_util.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cutlass_kernel.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_problem_visitor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma_bf16.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_base.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_finegrained.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_percol.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_finegrained.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_percol.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_compute_B_with_f16.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_dequantizer.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm_configs.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/interleaved_numeric_conversion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/system_barrier.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/tile_interleaved_layout.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/transform/threadblock/fine_grained_scale_zero_iterator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/util/gather_tensor.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/weight_only_quant_op.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/compiler.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/fp8_gemm.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/fp8_gemm_impl.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/jit_utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/mma_utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/nvrtc_cutlass.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/nvrtc_std.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/runtime.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/scheduler.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/tma_utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/deep_gemm/utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.cpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_type_conversion.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/ada_blockwise_gemm/sm89_fp8_gemm_1d1d.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/ada_blockwise_gemm/sm89_utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm_kernel.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_mma_utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_tma_utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_fg_scalebias.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_fg_scaleonly.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_per_col.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_fg_scalebias.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_fg_scaleonly.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_per_col.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scalebias_bf16_out_bf16.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scalebias_f16_out_f16.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scaleonly_bf16_out_bf16.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scaleonly_f16_out_f16.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_per_col_f16_out_f16.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_fg_scalebias.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_fg_scaleonly.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_per_col.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_fg_scalebias.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_fg_scaleonly.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_per_col.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm_template.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm_template_sm90.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/launchers/fpA_intB_launcher_sm90.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/launchers/fpA_intB_launcher_sm90.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/common.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/cutlass_kernel_selector.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_gemm_kernels.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_kernels.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_util_kernels.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.inl +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_bf16.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_fp4.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_fp8.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint4.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint8.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_fp16.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_fp4.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint4.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint8.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp32_fp32.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp4_fp4.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp4.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp8.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_uint4.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws_mixed_dtype.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_tma_warp_specialized_input.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_tma_warp_specialized_traits.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.cpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/quantization.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/kernels/quantization.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/thop/fp4Op.cpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.cpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.cpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nv_internal/tensorrt_llm/thop/utils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/nvshmem_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/page.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/pod.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/pod_customize_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/pod_jit_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/pod_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/quantization.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/renorm.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/rope.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/runtime_utils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/sampling.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_decode.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_decode_jit_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill_fp8_sm90.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill_fp8_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill_jit_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill_sm90.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill_sm90_jit_binding.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/single_prefill_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/tgv_gemm.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/tgv_gemm.jinja +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_allreduce.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_allreduce_fusion.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_alltoall.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_alltoall_prepare.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_batched_gemm_runner.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_fused_moe_dev_kernel.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_fused_moe_kernel_launcher.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_fused_moe_routing_deepseek.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_fused_moe_routing_llama4.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_fused_moe_routing_renormalize.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_fused_moe_runner.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_gemm_runner.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_low_latency_gemm_runner.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_mnnvl_allreduce.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/trtllm_moe_allreduce_fusion.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/tvm_ffi_utils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/vllm_custom_all_reduce.cu +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/barriers.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/cuda_hint.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/gmma.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/gmma_impl.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/hostUtils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/ldgsts.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/mha_components.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/mha_stdheaders.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/mla_sm120.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/mma.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/platform.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/specDec.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/tma.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/csrc/xqa/utils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/__main__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/activation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/aot.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/artifacts.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/attention.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/autotuner.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/cascade.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/cuda_ipc.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/dlpack_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/mapping.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/mnnvl.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/nvshmem.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/nvshmem_allreduce.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/trtllm_alltoall.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/trtllm_ar.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/trtllm_mnnvl_ar.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/comm/vllm_ar.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/compilation_context.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/cuda_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/cudnn/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/cudnn/decode.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/cudnn/prefill.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/cudnn/utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/cute_dsl/blockscaled_gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/cute_dsl/gemm_allreduce_two_shot.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/cute_dsl/utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/deep_gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/fp4_quantization.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/fp8_quantization.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/fused_moe/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/fused_moe/core.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/fused_moe/utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/green_ctx.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/activation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/attention/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/attention/modules.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/attention/utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/attention/variants.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/cascade.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/comm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/core.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/cpp_ext.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/cubin_loader.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/env.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/fp4_quantization.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/fp8_quantization.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/fused_moe.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/gemm/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/gemm/core.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/gemm/cutlass/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/gemm/cutlass/cutlass_library.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/gemm/cutlass/generate_kernels.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/gemm/deepgemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/mla.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/norm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/page.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/quantization.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/rope.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/sampling.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/spdlog.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/tllm_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/jit/utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/compiler.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/fusion_rules.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/legalization.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/op.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/operators.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/pipeline.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/processors.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/types.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/logits_processor/validators.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/mla.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/norm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/page.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/pod.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/profiler/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/py.typed +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/quantization.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/rope.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/sampling.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/sparse.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/testing/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/testing/utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/tllm_utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/activation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/cascade.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/kernels/__init__.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/kernels/activation.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/kernels/cascade.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/kernels/norm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/kernels/quant.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/kernels/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/norm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/page.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/triton/utils.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/trtllm_low_latency_gemm.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/tuning_configs/v0_1_trtllm_fused_moe_NVIDIA_B200.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/tuning_configs/v0_1_trtllm_fused_moe_NVIDIA_GB200.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer/version.py +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer_python.egg-info/SOURCES.txt +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer_python.egg-info/dependency_links.txt +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer_python.egg-info/entry_points.txt +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer_python.egg-info/requires.txt +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/flashinfer_python.egg-info/top_level.txt +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/activation.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/allocator.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/arch_condition.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/collective/fmha_common.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/collective/fmha_fusion.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_mainloop_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_epilogue_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_mainloop_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/common/pow_2.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/device/fmha.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/device/sm100_mla.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/fmha_cutlass_sm100.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/kernel/fmha_options.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/kernel/fmha_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/kernel/gather_tensor.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_fwd_kernel_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_gen_kernel_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_reduction.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/kernel/sm100_mla_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/blackwell/plan.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/cascade.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/cutlass_mla.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/decode.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/decode_mla_cute_sm80.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/default_decode_params.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/default_prefill_params.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/heap.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/attention_updater.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/block_sparse_gather.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/default_params.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/epilogue.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/kernel_traits.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/mainloop.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/named_barrier.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/quantization/epilogue.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/quantization/kernel_traits.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/quantization/mainloop_load.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/quantization/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/quantization/mainloop_sparse_load.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/quantization/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/sparse_mainloop.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/tile_scheduler.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/variant_helper.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper/variants.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/hopper.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/mask.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/mla.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/mla_hopper.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/mla_params.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/persistent.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/persistent_template.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/pod.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/prefill.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/scheduler.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/state.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/variant_helper.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention/variants.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/attention_impl.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/comm/trtllm_allreduce.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/comm/trtllm_allreduce_fusion.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/comm/trtllm_alltoall.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/comm/trtllm_alltoall_prepare.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/comm/trtllm_mnnvl_allreduce.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/comm/trtllm_moe_allreduce_fusion.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/comm/vllm_custom_all_reduce.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/cp_async.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/cubin_loader.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/cutlass_utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/exception.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/fastdiv.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/fp16.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/fp4_layout.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/frag_layout_swizzle.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/bmm_fp8.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/cutlass_gemm_configs.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/fp4_gemm_cutlass.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/fp4_gemm_cutlass_template.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/fp4_gemm_cutlass_template_sm120.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/fp4_gemm_template_sm100.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/fp4_gemm_template_sm120.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/fp8_gemm_cutlass.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/fp8_gemm_cutlass_template.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/fp8_gemm_template_sm100.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/gemm_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/gemm_groupwise_sm120.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/group_gemm.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/group_gemm_fp8_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/group_gemm_fp8_groupwise_sm120.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/group_gemm_lora.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/group_gemm_mxfp4_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/group_gemm_sm90.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/group_gemv.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/tgv_gemm.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/tgv_gemm_configs.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/gemm/tgv_gemm_template.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/layout.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/logging.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/math.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/mma.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/norm.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/page.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/permuted_smem.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/pos_enc.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/profiler.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/quantization.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/sampling.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/KernelRunner.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmEnums.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmInterface.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmOptions.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/Enums.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmGatedActOptions.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmOptions.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParams.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParamsDecl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelTraits.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/TmaDescriptor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CommonUtils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CudaKernelLauncher.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/DtypeDecl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/MmaDecl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/SfLayoutDecl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/common/cudaBf16Fallbacks.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/common/cudaBf16Wrapper.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/common/cudaFp8Utils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/common/cudaTypeUtils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/common/cudaUtils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/common/reduceKernelUtils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/common.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fmha/decoder_impl_common.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fmha/decoder_params.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fmha/fmhaKernels.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fmha/fmhaReduction.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fmha/fmhaRunner.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fmha/fmhaRunnerParams.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fmha/kernelParams.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fmha/kernelUtils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fmha/lse.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fused_moe/DevKernel.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fused_moe/IntFastDiv.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fused_moe/RoutingKernel.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fused_moe/RoutingKernel.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fused_moe/RoutingKernelTopK.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/fused_moe/runner.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/Enums.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/GemmInterface.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/GemmOptions.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelParams.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelParamsDecl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelTraits.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/TmaDescriptor.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/CommonUtils.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/CudaKernelLauncher.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/DtypeDecl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/MmaDecl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/SfLayoutDecl.h +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/utils.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/include/flashinfer/vec_dtypes.cuh +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/pyproject.toml +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/requirements.txt +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/setup.cfg +0 -0
- {flashinfer_python-0.5.0rc3 → flashinfer_python-0.5.1}/tests/test_artifacts.py +0 -0
|
@@ -18,14 +18,10 @@
|
|
|
18
18
|
|
|
19
19
|
#if MLA_WRAPPER
|
|
20
20
|
void xqa_wrapper_mla(int64_t multiProcessorCount, double qScale, TensorView output, TensorView q,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
#endif
|
|
26
|
-
TensorView kvCachePageList, int64_t maxSeqLen, TensorView seqLen,
|
|
27
|
-
int64_t batchSize, TensorView kvCacheScale, TensorView semaphores,
|
|
28
|
-
TensorView scratch);
|
|
21
|
+
TensorView kCacheVLLM, TensorView vCacheVLLM, TensorView kvCachePageList,
|
|
22
|
+
int64_t maxSeqLen, TensorView seqLen, int64_t batchSize,
|
|
23
|
+
TensorView kvCacheScale, TensorView semaphores, TensorView scratch,
|
|
24
|
+
bool enable_pdl);
|
|
29
25
|
|
|
30
26
|
TVM_FFI_DLL_EXPORT_TYPED_FUNC(xqa_wrapper_mla, xqa_wrapper_mla);
|
|
31
27
|
|
|
@@ -36,18 +32,13 @@ void xqa_wrapper(bool run_sm90_fp8_mha, int64_t multiProcessorCount, int64_t nbK
|
|
|
36
32
|
#if LOW_PREC_OUTPUT
|
|
37
33
|
TensorView rcpOutScale,
|
|
38
34
|
#endif
|
|
39
|
-
TensorView q, tvm::ffi::Optional<TensorView> attentionSinks,
|
|
40
|
-
|
|
41
|
-
TensorView
|
|
42
|
-
#else
|
|
43
|
-
TensorView pool,
|
|
44
|
-
#endif
|
|
45
|
-
TensorView kvCachePageList, int64_t maxSeqLen, TensorView seqLen,
|
|
46
|
-
int64_t batchSize, TensorView kvCacheScale,
|
|
35
|
+
TensorView q, tvm::ffi::Optional<TensorView> attentionSinks, TensorView kCacheVLLM,
|
|
36
|
+
TensorView vCacheVLLM, TensorView kvCachePageList, int64_t maxSeqLen,
|
|
37
|
+
TensorView seqLen, int64_t batchSize, TensorView kvCacheScale,
|
|
47
38
|
#if SPEC_DEC
|
|
48
39
|
int64_t qSeqLen, TensorView qCuSeqLens, TensorView mask,
|
|
49
40
|
#endif
|
|
50
|
-
TensorView semaphores, TensorView scratch);
|
|
41
|
+
TensorView semaphores, TensorView scratch, bool enable_pdl);
|
|
51
42
|
|
|
52
43
|
TVM_FFI_DLL_EXPORT_TYPED_FUNC(xqa_wrapper, xqa_wrapper);
|
|
53
44
|
|
|
@@ -361,8 +361,8 @@ class FusedMoeRunner : public tvm::ffi::ModuleObj {
|
|
|
361
361
|
num_rows, hidden_size, inter_size, num_experts_total, static_cast<int>(experts_per_token),
|
|
362
362
|
base_activation_type, parallelism_config, min_latency_mode);
|
|
363
363
|
|
|
364
|
-
auto const quant_params =
|
|
365
|
-
|
|
364
|
+
auto const quant_params = getQuantParams(num_experts_on_rank, hidden_size, inter_size,
|
|
365
|
+
quant_scales, base_activation_type);
|
|
366
366
|
kernels::MoeMinLatencyParams min_latency_params{};
|
|
367
367
|
|
|
368
368
|
// TODO: support lora in the future
|
|
@@ -542,8 +542,8 @@ class FusedMoeRunner : public tvm::ffi::ModuleObj {
|
|
|
542
542
|
num_rows, hidden_size, inter_size, num_experts_total, static_cast<int>(experts_per_token),
|
|
543
543
|
base_activation_type, parallelism_config, min_latency_mode);
|
|
544
544
|
|
|
545
|
-
auto const quant_params =
|
|
546
|
-
|
|
545
|
+
auto const quant_params = getQuantParams(num_experts_on_rank, hidden_size, inter_size,
|
|
546
|
+
quant_scales, base_activation_type);
|
|
547
547
|
|
|
548
548
|
// TODO: support lora in the future
|
|
549
549
|
::tensorrt_llm::kernels::LoraParams lora_params{};
|
|
@@ -809,9 +809,10 @@ class FusedMoeRunner : public tvm::ffi::ModuleObj {
|
|
|
809
809
|
return info;
|
|
810
810
|
}
|
|
811
811
|
|
|
812
|
-
kernels::QuantParams getQuantParams(
|
|
813
|
-
|
|
814
|
-
|
|
812
|
+
kernels::QuantParams getQuantParams(
|
|
813
|
+
int64_t num_experts_on_rank, int64_t hidden_size, int64_t inter_size,
|
|
814
|
+
Optional<Array<Tensor>> quant_scales,
|
|
815
|
+
ActivationType base_activation_type = ActivationType::Swiglu) const {
|
|
815
816
|
if (isFp8Quant()) {
|
|
816
817
|
TVM_FFI_ICHECK(quant_scales.has_value()) << "Expecting quant scales for fp8 quantization";
|
|
817
818
|
TVM_FFI_ICHECK_EQ(quant_scales.value().size(), 4)
|
|
@@ -1013,18 +1014,34 @@ class FusedMoeRunner : public tvm::ffi::ModuleObj {
|
|
|
1013
1014
|
// Check shapes
|
|
1014
1015
|
TVM_FFI_ICHECK(fc1_act_global.ndim() == 0 || fc1_act_global.size(0) == num_experts_on_rank)
|
|
1015
1016
|
<< "fc1 act global must be scalar or (num_experts_on_rank,)";
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1017
|
+
if (isGatedActivation(base_activation_type)) {
|
|
1018
|
+
TVM_FFI_ICHECK(
|
|
1019
|
+
fc1_weight_block.size(0) == num_experts_on_rank &&
|
|
1020
|
+
fc1_weight_block.size(1) ==
|
|
1021
|
+
TmaWarpSpecializedGroupedGemmInput::alignToSfDim(
|
|
1022
|
+
inter_size, TmaWarpSpecializedGroupedGemmInput::MinKDimAlignmentNVFP4) *
|
|
1023
|
+
2 &&
|
|
1024
|
+
fc1_weight_block.size(2) * FP8_PER_INT32 *
|
|
1025
|
+
TmaWarpSpecializedGroupedGemmInput::NVFP4BlockScaleVectorSize ==
|
|
1026
|
+
TmaWarpSpecializedGroupedGemmInput::alignToSfDim(
|
|
1027
|
+
hidden_size, TmaWarpSpecializedGroupedGemmInput::MinKDimAlignmentNVFP4))
|
|
1028
|
+
<< "fc1 weight block size must be (num_experts_on_rank, inter_size * 2, hidden_size // "
|
|
1029
|
+
"4 "
|
|
1030
|
+
"// block_scale_vector_size)";
|
|
1031
|
+
} else {
|
|
1032
|
+
TVM_FFI_ICHECK(
|
|
1033
|
+
fc1_weight_block.size(0) == num_experts_on_rank &&
|
|
1034
|
+
fc1_weight_block.size(1) ==
|
|
1035
|
+
TmaWarpSpecializedGroupedGemmInput::alignToSfDim(
|
|
1036
|
+
inter_size, TmaWarpSpecializedGroupedGemmInput::MinKDimAlignmentNVFP4) &&
|
|
1037
|
+
fc1_weight_block.size(2) * FP8_PER_INT32 *
|
|
1038
|
+
TmaWarpSpecializedGroupedGemmInput::NVFP4BlockScaleVectorSize ==
|
|
1039
|
+
TmaWarpSpecializedGroupedGemmInput::alignToSfDim(
|
|
1040
|
+
hidden_size, TmaWarpSpecializedGroupedGemmInput::MinKDimAlignmentNVFP4))
|
|
1041
|
+
<< "fc1 weight block size must be (num_experts_on_rank, inter_size, hidden_size // 4 "
|
|
1042
|
+
"// block_scale_vector_size)";
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1028
1045
|
TVM_FFI_ICHECK_EQ(fc1_global.size(0), num_experts_on_rank)
|
|
1029
1046
|
<< "fc1 global size must be (num_experts_on_rank,)";
|
|
1030
1047
|
TVM_FFI_ICHECK(fc2_act_global.ndim() == 0 || fc2_act_global.size(0) == num_experts_on_rank)
|
|
@@ -228,15 +228,17 @@ void trtllm_paged_attention_decode(TensorView out, Optional<TensorView> out_scal
|
|
|
228
228
|
TVM_FFI_ICHECK((head_dim_v == 576 && head_dim_o == 512) || head_dim_v == head_dim_o)
|
|
229
229
|
<< "head_dim_v and head_dim_o must be the same for non-MLA attention, got "
|
|
230
230
|
<< std::to_string(head_dim_v) << " and " << std::to_string(head_dim_o);
|
|
231
|
-
int page_size = key_cache.size(-2);
|
|
232
|
-
int num_kv_heads = key_cache.size(-3);
|
|
233
231
|
int max_num_blocks_per_seq = block_tables.size(-1);
|
|
234
232
|
bool is_shared_kv = key_cache.data_ptr() == value_cache.data_ptr();
|
|
235
233
|
int num_pages_in_mem_pool = is_shared_kv ? key_cache.size(0) : key_cache.size(0) * 2;
|
|
236
234
|
|
|
235
|
+
// Assume NHD layout: [..., H, N, D]
|
|
236
|
+
int page_size = key_cache.size(-2);
|
|
237
|
+
int num_kv_heads = key_cache.size(-3);
|
|
237
238
|
int kv_stride_keys_values = key_cache.stride(-2); // key/values
|
|
238
239
|
int kv_stride_heads = key_cache.stride(-3); // head
|
|
239
|
-
|
|
240
|
+
|
|
241
|
+
int kv_stride_batch = key_cache.stride(0); // batch
|
|
240
242
|
|
|
241
243
|
const auto stream = get_stream(query.device());
|
|
242
244
|
void* output_sf_ptr =
|
|
@@ -291,9 +293,10 @@ void trtllm_paged_attention_context(TensorView out, Optional<TensorView> out_sca
|
|
|
291
293
|
int max_num_blocks_per_seq = block_tables.size(-1);
|
|
292
294
|
bool is_shared_kv = key_cache.data_ptr() == value_cache.data_ptr();
|
|
293
295
|
int num_pages_in_mem_pool = is_shared_kv ? key_cache.size(0) : key_cache.size(0) * 2;
|
|
296
|
+
|
|
297
|
+
// Assume NHD layout: [..., H, N, D]
|
|
294
298
|
int page_size = key_cache.size(-2);
|
|
295
299
|
int num_kv_heads = key_cache.size(-3);
|
|
296
|
-
|
|
297
300
|
int kv_stride_keys_values = key_cache.stride(-2); // key/values
|
|
298
301
|
int kv_stride_heads = key_cache.stride(-3); // head
|
|
299
302
|
int kv_stride_batch = key_cache.stride(0); // batch
|
|
@@ -92,21 +92,6 @@ static_assert(SPEC_DEC, "SPEC_Q_SEQ_LEN should only be used when SPEC_DEC is ena
|
|
|
92
92
|
#define TOKENS_PER_PAGE 32
|
|
93
93
|
#endif
|
|
94
94
|
|
|
95
|
-
// don't modify
|
|
96
|
-
#ifndef USE_PAGED_KV_CACHE
|
|
97
|
-
#define USE_PAGED_KV_CACHE (TOKENS_PER_PAGE > 0)
|
|
98
|
-
#endif
|
|
99
|
-
|
|
100
|
-
// Paged KV Cache Format
|
|
101
|
-
// 0 - XQA Original
|
|
102
|
-
// 1 - separate K and V cache pools, each with layout (batch, seq_len, head, head_elem) for
|
|
103
|
-
// VLLM/SGLang
|
|
104
|
-
#ifdef USE_PAGED_KV_CACHE
|
|
105
|
-
#ifndef PAGED_KV_CACHE_LAYOUT
|
|
106
|
-
#define PAGED_KV_CACHE_LAYOUT 0
|
|
107
|
-
#endif
|
|
108
|
-
#endif
|
|
109
|
-
|
|
110
95
|
// don't modify
|
|
111
96
|
#define USE_BEAM_SEARCH (BEAM_WIDTH > 1)
|
|
112
97
|
|
|
@@ -129,7 +114,16 @@ static_assert(SPEC_DEC, "SPEC_Q_SEQ_LEN should only be used when SPEC_DEC is ena
|
|
|
129
114
|
// 1 - naive PDL
|
|
130
115
|
// 2 - aggressive PDL (implemented only in mha_sm90.cu for now)
|
|
131
116
|
#ifndef ENABLE_PDL
|
|
117
|
+
#if defined(__CUDA_ARCH__) && __CUDA_ARCH__ >= 900
|
|
118
|
+
#if __CUDA_ARCH__ == 900
|
|
132
119
|
#define ENABLE_PDL 2
|
|
120
|
+
#else
|
|
121
|
+
#define ENABLE_PDL 1
|
|
122
|
+
#endif
|
|
123
|
+
#else
|
|
124
|
+
/* default for host or older architectures */
|
|
125
|
+
#define ENABLE_PDL 0
|
|
126
|
+
#endif
|
|
133
127
|
#endif
|
|
134
128
|
|
|
135
129
|
#ifndef USE_INPUT_KV
|
|
@@ -161,8 +155,7 @@ static_assert(CACHE_ELEM_ENUM != 0);
|
|
|
161
155
|
#endif
|
|
162
156
|
|
|
163
157
|
// true should be better if warpTile.x * cacheElemSize < 128. otherwise use false.
|
|
164
|
-
#define GRP_LOAD_V
|
|
165
|
-
(CACHE_ELEM_ENUM != 0) || (HEAD_ELEMS == 256 && USE_PAGED_KV_CACHE && BEAM_WIDTH > 1)
|
|
158
|
+
#define GRP_LOAD_V (CACHE_ELEM_ENUM != 0) || (HEAD_ELEMS == 256 && BEAM_WIDTH > 1)
|
|
166
159
|
|
|
167
160
|
// use custom barrier for NVRTC to avoid pulling in many headers
|
|
168
161
|
#ifndef USE_CUSTOM_BARRIER
|
|
@@ -89,7 +89,7 @@ constexpr uint32_t cvtExpansion = exactDiv(inputElemSize, cacheElemSize);
|
|
|
89
89
|
constexpr uint32_t preferedKHeadPartBytes = 64;
|
|
90
90
|
__constant__ constexpr uint32_t cacheVTileSeqLen = 32;
|
|
91
91
|
#else
|
|
92
|
-
#if __CUDA_ARCH__ == 860 || __CUDA_ARCH__ == 890 || __CUDA_ARCH__ == 1200
|
|
92
|
+
#if __CUDA_ARCH__ == 860 || __CUDA_ARCH__ == 890 || __CUDA_ARCH__ == 1200 || __CUDA_ARCH__ == 1210
|
|
93
93
|
constexpr uint32_t preferedKHeadPartBytes = 64;
|
|
94
94
|
__constant__ constexpr uint32_t cacheVTileSeqLen = 32;
|
|
95
95
|
#elif __CUDA_ARCH__ == 800 || __CUDA_ARCH__ == 870 || __CUDA_ARCH__ == 900 || \
|
|
@@ -293,14 +293,12 @@ constexpr uint32_t nbCacheVTilesPerXTile = exactDiv(warpTile.x, cacheVTileSeqLen
|
|
|
293
293
|
|
|
294
294
|
constexpr uint32_t nbWarpGrpsPerXTile = mha::min(nbCacheVTilesPerXTile, gemm1NbWarpGrps);
|
|
295
295
|
|
|
296
|
-
#if USE_PAGED_KV_CACHE
|
|
297
296
|
constexpr uint32_t nbPagesPerWarpTile =
|
|
298
297
|
(warpTile.x <= tokensPerPage ? 1U : exactDiv(warpTile.x, tokensPerPage));
|
|
299
298
|
using KCachePageIndices = Vec<KVCachePageIndex, nbPagesPerWarpTile>;
|
|
300
299
|
constexpr uint32_t nbPagesPerVTile =
|
|
301
300
|
(cacheVTileSeqLen <= tokensPerPage ? 1 : exactDiv(cacheVTileSeqLen, tokensPerPage));
|
|
302
301
|
using VCachePageIndices = Vec<KVCachePageIndex, nbPagesPerVTile>;
|
|
303
|
-
#endif
|
|
304
302
|
|
|
305
303
|
static_assert(ctaShapeInWarps.y == 1);
|
|
306
304
|
|
|
@@ -336,10 +334,8 @@ struct alignas(128) SharedMem {
|
|
|
336
334
|
#if BEAM_WIDTH > 1
|
|
337
335
|
Vec<uint32_t, warpTile.x> gemm0CacheIndir[ctaShapeInWarps.x];
|
|
338
336
|
Vec<uint32_t, cacheVTileSeqLen> gemm1CacheIndir[grpLoadV ? gemm1NbWarpGrps : ctaShapeInWarps.x];
|
|
339
|
-
#if USE_PAGED_KV_CACHE
|
|
340
337
|
Vec<KCachePageIndices, beamWidth> kCachePages[ctaShapeInWarps.x];
|
|
341
338
|
Vec<VCachePageIndices, beamWidth> vCachePages[grpLoadV ? gemm1NbWarpGrps : ctaShapeInWarps.x];
|
|
342
|
-
#endif
|
|
343
339
|
#endif
|
|
344
340
|
|
|
345
341
|
using Barrier = CtaBarrier;
|
|
@@ -1307,6 +1303,7 @@ CUBIN_EXPORT __global__
|
|
|
1307
1303
|
uint32_t const batchSize,
|
|
1308
1304
|
float const* __restrict__ kvCacheScale, // Device memory scalar. Same scale for K and V
|
|
1309
1305
|
// cache. Used only for int8/fp8 KV cache.
|
|
1306
|
+
uint32_t kv_stride_page, uint32_t kv_stride_token, uint32_t kv_stride_head,
|
|
1310
1307
|
uint32_t* __restrict__ semaphores = nullptr, void* __restrict__ scratch = nullptr) {
|
|
1311
1308
|
assert(allowMultiBlockMode || gridDim.x == 1);
|
|
1312
1309
|
bool const isMultiBlock = allowMultiBlockMode && (gridDim.x != 1);
|
|
@@ -1483,10 +1480,8 @@ CUBIN_EXPORT __global__
|
|
|
1483
1480
|
#endif
|
|
1484
1481
|
uint32_t const nbSkipLeadingTiles = nbTotalSkipTokens / ctaTile.x;
|
|
1485
1482
|
uint32_t const tile0NbSkipTokens = nbTotalSkipTokens % ctaTile.x;
|
|
1486
|
-
#if USE_PAGED_KV_CACHE
|
|
1487
1483
|
uint32_t const nbPages = divUp(cacheSeqLen, tokensPerPage);
|
|
1488
1484
|
constexpr uint32_t nbPagesPerCtaTile = exactDiv(ctaTile.x, tokensPerPage);
|
|
1489
|
-
#endif
|
|
1490
1485
|
|
|
1491
1486
|
uint32_t const nbSeqIters = useKVCache ? divUp(cacheSeqLen, ctaTile.x) : 0;
|
|
1492
1487
|
#if SPEC_DEC
|
|
@@ -1523,7 +1518,6 @@ CUBIN_EXPORT __global__
|
|
|
1523
1518
|
};
|
|
1524
1519
|
loadCacheIndir(seqIterInit, 0U);
|
|
1525
1520
|
#endif
|
|
1526
|
-
#if USE_PAGED_KV_CACHE
|
|
1527
1521
|
#if BEAM_WIDTH == 1
|
|
1528
1522
|
KCachePageIndices pageIdx = KCachePageIndices::filled(kBAD_PAGE_INDEX);
|
|
1529
1523
|
#endif
|
|
@@ -1539,11 +1533,6 @@ CUBIN_EXPORT __global__
|
|
|
1539
1533
|
};
|
|
1540
1534
|
uint32_t idxPageBeg = nbPagesPerCtaTile * seqIterInit + warpIdx.x * warpTile.x / tokensPerPage;
|
|
1541
1535
|
loadPages(idxPageBeg);
|
|
1542
|
-
#else
|
|
1543
|
-
constexpr uint32_t idxBeamBase = 0U;
|
|
1544
|
-
uint32_t const cacheKSeqBaseOffset =
|
|
1545
|
-
cacheList.capacity * (idxHeadGrp + nbKHeads * 2 * (idxBeamBase + beamWidth * idxReq));
|
|
1546
|
-
#endif
|
|
1547
1536
|
auto loadKTilePart = [&](uint32_t seqIter, uint32_t idxBeam, uint32_t idxPart) mutable {
|
|
1548
1537
|
assert(idxBeam < beamWidth);
|
|
1549
1538
|
assert(seqIter % nbSubSeqPerSeq == seqIterInit % nbSubSeqPerSeq);
|
|
@@ -1551,46 +1540,22 @@ CUBIN_EXPORT __global__
|
|
|
1551
1540
|
auto& dst = getSMemKTile(idxNextSMemKBuf);
|
|
1552
1541
|
uint32_t const dstHeadOffset = 0;
|
|
1553
1542
|
uint32_t const seqOffset = ctaTile.x * seqIter + warpTile.x * warpIdx.x;
|
|
1554
|
-
|
|
1555
|
-
#if PAGED_KV_CACHE_LAYOUT == 1
|
|
1556
|
-
uint32_t const idxHeadBeg = (seqOffset % tokensPerPage) * nbKHeads + idxHeadGrp;
|
|
1543
|
+
uint32_t const tokenOffset = seqOffset % tokensPerPage;
|
|
1557
1544
|
|
|
1558
|
-
#else
|
|
1559
|
-
uint32_t const idxHeadBeg = tokensPerPage * idxHeadGrp + seqOffset % tokensPerPage;
|
|
1560
|
-
#endif
|
|
1561
1545
|
#if BEAM_WIDTH == 1
|
|
1562
|
-
#if PAGED_KV_CACHE_LAYOUT == 1
|
|
1563
1546
|
HeadPtr<GMemCacheHead const, tokensPerPage, nbPagesPerWarpTile> const src{
|
|
1564
|
-
cacheList.kCacheVLLM, pageIdx,
|
|
1565
|
-
|
|
1566
|
-
HeadPtr<GMemCacheHead const, tokensPerPage, nbPagesPerWarpTile> const src{
|
|
1567
|
-
cacheList.pool, pageIdx, nbKHeads, idxHeadBeg};
|
|
1568
|
-
#endif
|
|
1547
|
+
cacheList.kCacheVLLM, pageIdx, tokenOffset, idxHeadGrp,
|
|
1548
|
+
kv_stride_page, kv_stride_token, kv_stride_head};
|
|
1569
1549
|
#else
|
|
1570
1550
|
IndexedHeadPtr<GMemCacheHead const, tokensPerPage, nbPagesPerWarpTile> const src{
|
|
1571
1551
|
/*indices=*/smem.gemm0CacheIndir[warpIdx.x].data,
|
|
1572
|
-
#if PAGED_KV_CACHE_LAYOUT == 1
|
|
1573
1552
|
/*pool=*/cacheList.kCacheVLLM,
|
|
1574
|
-
#else
|
|
1575
|
-
/*pool=*/cacheList.pool,
|
|
1576
|
-
#endif
|
|
1577
1553
|
/*pageIndices=*/smem.kCachePages[warpIdx.x].data,
|
|
1578
|
-
/*
|
|
1579
|
-
/*
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
#if BEAM_WIDTH == 1
|
|
1584
|
-
TinyPtr<GMemCacheHead const> const src{cacheList.data, idxHeadBeg};
|
|
1585
|
-
#else
|
|
1586
|
-
IndexedHeadPtr<GMemCacheHead const, 0, 0> const src{
|
|
1587
|
-
/*indices=*/smem.gemm0CacheIndir[warpIdx.x].data,
|
|
1588
|
-
/*pointer=*/cacheList.data,
|
|
1589
|
-
/*offset=*/idxHeadBeg,
|
|
1590
|
-
/*beamStride=*/cacheList.capacity * nbKHeads * 2};
|
|
1591
|
-
// trap();
|
|
1592
|
-
// assert("not implemented");
|
|
1593
|
-
#endif
|
|
1554
|
+
/*tokenOffset=*/tokenOffset,
|
|
1555
|
+
/*headIdx=*/idxHeadGrp,
|
|
1556
|
+
/*stride_page=*/kv_stride_page,
|
|
1557
|
+
/*stride_token=*/kv_stride_token,
|
|
1558
|
+
/*stride_head=*/kv_stride_head};
|
|
1594
1559
|
#endif
|
|
1595
1560
|
// if (threadIdx.x == dbgPrintTid) {
|
|
1596
1561
|
// printf("K: seqIter=%u, idxBeam=%u, idxPart=%u: pointers={%p, %p}, indices={", seqIter,
|
|
@@ -1618,13 +1583,11 @@ CUBIN_EXPORT __global__
|
|
|
1618
1583
|
__syncwarp();
|
|
1619
1584
|
#endif
|
|
1620
1585
|
if (idxPart + 1 == nbPartsPerCacheKHead) {
|
|
1621
|
-
#if USE_PAGED_KV_CACHE
|
|
1622
1586
|
bool const isForNextSeqIter = isConvergedTile(seqIter) || idxBeam == beamWidth - 1;
|
|
1623
1587
|
if (isForNextSeqIter) {
|
|
1624
1588
|
idxPageBeg += nbPagesPerCtaTile * nbSubSeqPerSeq;
|
|
1625
1589
|
loadPages(idxPageBeg);
|
|
1626
1590
|
}
|
|
1627
|
-
#endif
|
|
1628
1591
|
#if BEAM_WIDTH > 1
|
|
1629
1592
|
uint32_t idxBeamNext, seqIterDelta;
|
|
1630
1593
|
mha::tie(idxBeamNext, seqIterDelta) =
|
|
@@ -1831,7 +1794,6 @@ CUBIN_EXPORT __global__
|
|
|
1831
1794
|
auto const getSmemVBar = [&](uint32_t idx) -> SharedMem::Barrier* {
|
|
1832
1795
|
return smem.vBarrier(warpGrpIdx, idx);
|
|
1833
1796
|
};
|
|
1834
|
-
#if USE_PAGED_KV_CACHE
|
|
1835
1797
|
#if BEAM_WIDTH == 1
|
|
1836
1798
|
VCachePageIndices pageIdx = VCachePageIndices::filled(kBAD_PAGE_INDEX);
|
|
1837
1799
|
#endif
|
|
@@ -1849,12 +1811,6 @@ CUBIN_EXPORT __global__
|
|
|
1849
1811
|
uint32_t idxPageBeg =
|
|
1850
1812
|
nbPagesPerCtaTile * seqIterInit + cacheVTileSeqLen * warpGrpIdx / tokensPerPage;
|
|
1851
1813
|
loadPages(idxPageBeg);
|
|
1852
|
-
#else
|
|
1853
|
-
uint32_t const idxBeamBase = 0;
|
|
1854
|
-
uint32_t const cacheVSeqBaseOffset =
|
|
1855
|
-
cacheList.capacity *
|
|
1856
|
-
(nbKHeads + idxHeadGrp + nbKHeads * 2 * (idxBeamBase + beamWidth * idxReq));
|
|
1857
|
-
#endif
|
|
1858
1814
|
auto nextStep = [&](uint32_t seqIter, uint32_t xIter, uint32_t vIter, uint32_t idxBeam) {
|
|
1859
1815
|
uint32_t vIterNext, isNextBeam;
|
|
1860
1816
|
mha::tie(vIterNext, isNextBeam) = carryLE<nbVItersPerXIter>(vIter + 1, 0);
|
|
@@ -1881,44 +1837,22 @@ CUBIN_EXPORT __global__
|
|
|
1881
1837
|
|
|
1882
1838
|
uint32_t const seqOffset = ctaTile.x * seqIter + warpTile.x * nbXTilesPerXIter * xIter +
|
|
1883
1839
|
cacheVTileSeqStride * vIter + cacheVTileSeqLen * warpGrpIdx;
|
|
1884
|
-
|
|
1885
|
-
#if PAGED_KV_CACHE_LAYOUT == 1
|
|
1886
|
-
uint32_t const idxHeadBeg = (seqOffset % tokensPerPage) * nbKHeads + idxHeadGrp;
|
|
1840
|
+
uint32_t const tokenOffset = seqOffset % tokensPerPage;
|
|
1887
1841
|
|
|
1888
|
-
#else
|
|
1889
|
-
uint32_t const idxHeadBeg = tokensPerPage * idxHeadGrp + seqOffset % tokensPerPage;
|
|
1890
|
-
#endif
|
|
1891
1842
|
#if BEAM_WIDTH == 1
|
|
1892
|
-
#if PAGED_KV_CACHE_LAYOUT == 1
|
|
1893
|
-
HeadPtr<GMemCacheHead const, tokensPerPage, nbPagesPerVTile> const src{
|
|
1894
|
-
cacheList.vCacheVLLM, pageIdx, nbKHeads, idxHeadBeg};
|
|
1895
|
-
#else
|
|
1896
1843
|
HeadPtr<GMemCacheHead const, tokensPerPage, nbPagesPerVTile> const src{
|
|
1897
|
-
cacheList.
|
|
1898
|
-
|
|
1844
|
+
cacheList.vCacheVLLM, pageIdx, tokenOffset, idxHeadGrp,
|
|
1845
|
+
kv_stride_page, kv_stride_token, kv_stride_head};
|
|
1899
1846
|
#else
|
|
1900
1847
|
IndexedHeadPtr<GMemCacheHead const, tokensPerPage, nbPagesPerVTile> const src{
|
|
1901
1848
|
/*indices=*/smem.gemm1CacheIndir[grpLoadV ? warpGrpIdx : warpIdx.x].data,
|
|
1902
|
-
#if PAGED_KV_CACHE_LAYOUT == 1
|
|
1903
1849
|
/*pool=*/cacheList.vCacheVLLM,
|
|
1904
|
-
#else
|
|
1905
|
-
/*pool=*/cacheList.pool,
|
|
1906
|
-
#endif
|
|
1907
1850
|
/*pageIndices=*/smem.vCachePages[grpLoadV ? warpGrpIdx : warpIdx.x].data,
|
|
1908
|
-
/*
|
|
1909
|
-
/*
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
#if BEAM_WIDTH == 1
|
|
1914
|
-
TinyPtr<GMemCacheHead const> const src{cacheList.data, idxHeadBeg};
|
|
1915
|
-
#else
|
|
1916
|
-
IndexedHeadPtr<GMemCacheHead const, 0, 0> const src{
|
|
1917
|
-
/*indices=*/smem.gemm1CacheIndir[grpLoadV ? warpGrpIdx : warpIdx.x].data,
|
|
1918
|
-
/*pointer=*/cacheList.data,
|
|
1919
|
-
/*offset=*/idxHeadBeg,
|
|
1920
|
-
/*beamStride=*/cacheList.capacity * nbKHeads * 2};
|
|
1921
|
-
#endif
|
|
1851
|
+
/*tokenOffset=*/tokenOffset,
|
|
1852
|
+
/*headIdx=*/idxHeadGrp,
|
|
1853
|
+
/*stride_page=*/kv_stride_page,
|
|
1854
|
+
/*stride_token=*/kv_stride_token,
|
|
1855
|
+
/*stride_head=*/kv_stride_head};
|
|
1922
1856
|
#endif
|
|
1923
1857
|
// if (threadIdx.x == dbgPrintTid) {
|
|
1924
1858
|
// printf("V: seqIter=%u, xIter=%u, idxBeam=%u, vIter=%u: pointers={%p, %p}, indices={",
|
|
@@ -1963,7 +1897,6 @@ CUBIN_EXPORT __global__
|
|
|
1963
1897
|
unused(arrive<grpLoadV>(pWarpGrpBar));
|
|
1964
1898
|
wait_parity<grpLoadV>(pWarpGrpBar, getAndFlip<grpLoadV>(warpGrpBarParityNext));
|
|
1965
1899
|
#endif
|
|
1966
|
-
#if USE_PAGED_KV_CACHE
|
|
1967
1900
|
constexpr uint32_t xIterSeqStride = cacheVTileSeqStride * nbVItersPerXIter;
|
|
1968
1901
|
if constexpr (xIterSeqStride <= tokensPerPage) {
|
|
1969
1902
|
uint32_t const nbXItersPerPage = exactDiv(tokensPerPage, xIterSeqStride);
|
|
@@ -1990,7 +1923,6 @@ CUBIN_EXPORT __global__
|
|
|
1990
1923
|
loadPages(idxPageBeg);
|
|
1991
1924
|
}
|
|
1992
1925
|
}
|
|
1993
|
-
#endif
|
|
1994
1926
|
#if BEAM_WIDTH > 1
|
|
1995
1927
|
uint32_t seqIterNext, xIterNext, vIterNext, idxBeamNext;
|
|
1996
1928
|
mha::tie(seqIterNext, xIterNext, vIterNext, idxBeamNext) =
|
|
@@ -2480,6 +2412,7 @@ CUBIN_EXPORT __global__ __launch_bounds__(256, nbCtaPerSM) void kernel_mha(
|
|
|
2480
2412
|
uint32_t const batchSize,
|
|
2481
2413
|
float const* __restrict__ kvCacheScale, // Device memory scalar. Same scale for K and V cache.
|
|
2482
2414
|
// Used only for int8/fp8 KV cache.
|
|
2415
|
+
uint32_t kv_stride_page, uint32_t kv_stride_token, uint32_t kv_stride_head,
|
|
2483
2416
|
uint32_t* __restrict__ semaphores = nullptr, void* __restrict__ scratch = nullptr) {
|
|
2484
2417
|
#if SPEC_DEC
|
|
2485
2418
|
kernel_mha_impl(qSeqLen, nbKHeads, headGrpSize, qCuSeqLens,
|
|
@@ -2501,7 +2434,8 @@ CUBIN_EXPORT __global__ __launch_bounds__(256, nbCtaPerSM) void kernel_mha(
|
|
|
2501
2434
|
#if BEAM_WIDTH > 1
|
|
2502
2435
|
beamSearchParams,
|
|
2503
2436
|
#endif
|
|
2504
|
-
batchSize, kvCacheScale,
|
|
2437
|
+
batchSize, kvCacheScale, kv_stride_page, kv_stride_token, kv_stride_head,
|
|
2438
|
+
semaphores, scratch);
|
|
2505
2439
|
}
|
|
2506
2440
|
#else
|
|
2507
2441
|
static constexpr auto kernel_mha = kernel_mha_impl;
|
|
@@ -2526,18 +2460,10 @@ void launchMHA(
|
|
|
2526
2460
|
InputHead const* q,
|
|
2527
2461
|
#endif
|
|
2528
2462
|
float const* attentionSinks, // [headGrpSize]
|
|
2529
|
-
#if USE_PAGED_KV_CACHE
|
|
2530
|
-
#if PAGED_KV_CACHE_LAYOUT == 1
|
|
2531
2463
|
GMemCacheHead* kCacheVLLM, GMemCacheHead* vCacheVLLM,
|
|
2532
|
-
#else
|
|
2533
|
-
GMemCacheHead* pool, // global pool of pages
|
|
2534
|
-
#endif
|
|
2535
2464
|
KVCachePageIndex const*
|
|
2536
2465
|
kvCachePageList, // device pointer. shape:
|
|
2537
2466
|
// KVCachePageIndex[batchSize][beamWidth][2][maxNbPagesPerSeq].
|
|
2538
|
-
#else
|
|
2539
|
-
GMemKVCacheHead* kvCacheData,
|
|
2540
|
-
#endif
|
|
2541
2467
|
uint32_t maxSeqLen, uint32_t const* seqLen,
|
|
2542
2468
|
#if BEAM_WIDTH > 1
|
|
2543
2469
|
BeamSearchParams const& beamSearchParams,
|
|
@@ -2548,7 +2474,8 @@ void launchMHA(
|
|
|
2548
2474
|
#if SPEC_DEC
|
|
2549
2475
|
SpecDecParams const& specDecParams,
|
|
2550
2476
|
#endif
|
|
2551
|
-
uint32_t* semaphores, void* scratch,
|
|
2477
|
+
uint32_t* semaphores, void* scratch, bool enable_pdl, uint64_t kv_stride_page,
|
|
2478
|
+
uint64_t kv_stride_token, uint64_t kv_stride_head, cudaStream_t stream) {
|
|
2552
2479
|
#if SPEC_DEC
|
|
2553
2480
|
auto const qSeqLen = specDecParams.qSeqLen;
|
|
2554
2481
|
auto const qCuSeqLens = specDecParams.qCuSeqLens;
|
|
@@ -2590,15 +2517,15 @@ void launchMHA(
|
|
|
2590
2517
|
dim3 const dimGrid{nbSubSeqPerSeq, nbKHeads, batchSize};
|
|
2591
2518
|
#endif
|
|
2592
2519
|
dim3 const dimCta{warp_size * ctaShapeInWarps.x, ctaShapeInWarps.y, ctaShapeInWarps.z};
|
|
2593
|
-
auto const launchCfg = makeLaunchConfig(dimGrid, dimCta, hostSmemSize, stream,
|
|
2594
|
-
#if USE_PAGED_KV_CACHE
|
|
2520
|
+
auto const launchCfg = makeLaunchConfig(dimGrid, dimCta, hostSmemSize, stream, enable_pdl);
|
|
2595
2521
|
uint32_t const maxNbPagesPerSeq = exactDiv(maxSeqLen, tokensPerPage);
|
|
2596
|
-
#if PAGED_KV_CACHE_LAYOUT == 1
|
|
2597
2522
|
KVCacheList<true> const cacheList{kCacheVLLM, vCacheVLLM, kvCachePageList, seqLen,
|
|
2598
2523
|
maxNbPagesPerSeq};
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2524
|
+
// Convert stride from elements to Heads
|
|
2525
|
+
uint32_t const stride_page_in_heads = static_cast<uint32_t>(kv_stride_page / validElemsPerHead);
|
|
2526
|
+
uint32_t const stride_token_in_heads = static_cast<uint32_t>(kv_stride_token / validElemsPerHead);
|
|
2527
|
+
uint32_t const stride_head_in_heads = static_cast<uint32_t>(kv_stride_head / validElemsPerHead);
|
|
2528
|
+
|
|
2602
2529
|
cudaLaunchKernelEx(&launchCfg, kernel_mha,
|
|
2603
2530
|
#if SPEC_DEC
|
|
2604
2531
|
qSeqLen, nbKHeads, headGrpSize, qCuSeqLens,
|
|
@@ -2620,36 +2547,8 @@ void launchMHA(
|
|
|
2620
2547
|
#if BEAM_WIDTH > 1
|
|
2621
2548
|
beamSearchParams,
|
|
2622
2549
|
#endif
|
|
2623
|
-
batchSize, kvCacheScale,
|
|
2624
|
-
|
|
2625
|
-
KVCacheList<false> const cacheList{kvCacheData, seqLen, maxSeqLen};
|
|
2626
|
-
#ifndef NDEBUG
|
|
2627
|
-
kernel_mha<<<dimGrid, dimCta, hostSmemSize, stream>>>(
|
|
2628
|
-
#else
|
|
2629
|
-
cudaLaunchKernelEx(&launchCfg, &kernel_mha,
|
|
2630
|
-
#endif
|
|
2631
|
-
#if SPEC_DEC
|
|
2632
|
-
qSeqLen, nbKHeads, headGrpSize, qCuSeqLens,
|
|
2633
|
-
#else
|
|
2634
|
-
nbKHeads,
|
|
2635
|
-
#endif
|
|
2636
|
-
#if SLIDING_WINDOW
|
|
2637
|
-
slidingWinSize,
|
|
2638
|
-
#endif
|
|
2639
|
-
qScale, output,
|
|
2640
|
-
#if LOW_PREC_OUTPUT
|
|
2641
|
-
rcpOutScale,
|
|
2642
|
-
#endif
|
|
2643
|
-
q,
|
|
2644
|
-
#if SPEC_DEC
|
|
2645
|
-
mask,
|
|
2646
|
-
#endif
|
|
2647
|
-
attentionSinks, cacheList,
|
|
2648
|
-
#if BEAM_WIDTH > 1
|
|
2649
|
-
beamSearchParams,
|
|
2650
|
-
#endif
|
|
2651
|
-
batchSize, kvCacheScale, semaphores, scratch);
|
|
2652
|
-
#endif
|
|
2550
|
+
batchSize, kvCacheScale, stride_page_in_heads, stride_token_in_heads,
|
|
2551
|
+
stride_head_in_heads, semaphores, scratch);
|
|
2653
2552
|
checkCuda(cudaPeekAtLastError());
|
|
2654
2553
|
#endif // USE_INPUT_KV
|
|
2655
2554
|
}
|
|
@@ -2669,19 +2568,16 @@ void launchMHAFlashInfer(uint32_t multiProcessorCount, uint32_t nbKHeads, uint32
|
|
|
2669
2568
|
#if LOW_PREC_OUTPUT
|
|
2670
2569
|
float const* rcpOutScale,
|
|
2671
2570
|
#endif
|
|
2672
|
-
InputHead const* q, float const* attentionSinks,
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
#else
|
|
2676
|
-
GMemCacheHead* pool,
|
|
2677
|
-
#endif
|
|
2678
|
-
KVCachePageIndex const* kvCachePageList, uint32_t maxSeqLen,
|
|
2679
|
-
uint32_t const* seqLen, uint32_t batchSize,
|
|
2571
|
+
InputHead const* q, float const* attentionSinks, GMemCacheHead* kCacheVLLM,
|
|
2572
|
+
GMemCacheHead* vCacheVLLM, KVCachePageIndex const* kvCachePageList,
|
|
2573
|
+
uint32_t maxSeqLen, uint32_t const* seqLen, uint32_t batchSize,
|
|
2680
2574
|
float const* __restrict__ kvCacheScale,
|
|
2681
2575
|
#if SPEC_DEC
|
|
2682
2576
|
uint32_t qSeqLen, uint32_t const* qCuSeqLens, MaskType const* mask,
|
|
2683
2577
|
#endif
|
|
2684
|
-
uint32_t* semaphores, void* scratch,
|
|
2578
|
+
uint32_t* semaphores, void* scratch, bool enable_pdl,
|
|
2579
|
+
uint64_t kv_stride_page, uint64_t kv_stride_token, uint64_t kv_stride_head,
|
|
2580
|
+
cudaStream_t stream) {
|
|
2685
2581
|
uint32_t const nbSubSeqPerSeq = [&]() -> uint32_t {
|
|
2686
2582
|
if (!allowMultiBlockMode) {
|
|
2687
2583
|
return 1;
|
|
@@ -2696,15 +2592,15 @@ void launchMHAFlashInfer(uint32_t multiProcessorCount, uint32_t nbKHeads, uint32
|
|
|
2696
2592
|
dim3 const dimGrid{nbSubSeqPerSeq, nbKHeads, batchSize};
|
|
2697
2593
|
#endif
|
|
2698
2594
|
dim3 const dimCta{warp_size * ctaShapeInWarps.x, ctaShapeInWarps.y, ctaShapeInWarps.z};
|
|
2699
|
-
auto const launchCfg = makeLaunchConfig(dimGrid, dimCta, hostSmemSize, stream,
|
|
2700
|
-
#if USE_PAGED_KV_CACHE
|
|
2595
|
+
auto const launchCfg = makeLaunchConfig(dimGrid, dimCta, hostSmemSize, stream, enable_pdl);
|
|
2701
2596
|
uint32_t const maxNbPagesPerSeq = exactDiv(maxSeqLen, tokensPerPage);
|
|
2702
|
-
#if PAGED_KV_CACHE_LAYOUT == 1
|
|
2703
2597
|
KVCacheList<true> const cacheList{kCacheVLLM, vCacheVLLM, kvCachePageList, seqLen,
|
|
2704
2598
|
maxNbPagesPerSeq};
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2599
|
+
// Convert stride from elements to Heads
|
|
2600
|
+
uint32_t const stride_page_in_heads = static_cast<uint32_t>(kv_stride_page / validElemsPerHead);
|
|
2601
|
+
uint32_t const stride_token_in_heads = static_cast<uint32_t>(kv_stride_token / validElemsPerHead);
|
|
2602
|
+
uint32_t const stride_head_in_heads = static_cast<uint32_t>(kv_stride_head / validElemsPerHead);
|
|
2603
|
+
|
|
2708
2604
|
cudaLaunchKernelEx(&launchCfg, kernel_mha,
|
|
2709
2605
|
#if SPEC_DEC
|
|
2710
2606
|
qSeqLen, nbKHeads, headGrpSize, qCuSeqLens,
|
|
@@ -2722,32 +2618,8 @@ void launchMHAFlashInfer(uint32_t multiProcessorCount, uint32_t nbKHeads, uint32
|
|
|
2722
2618
|
#if SPEC_DEC
|
|
2723
2619
|
mask,
|
|
2724
2620
|
#endif
|
|
2725
|
-
attentionSinks, cacheList, batchSize, kvCacheScale,
|
|
2726
|
-
|
|
2727
|
-
KVCacheList<false> const cacheList{kvCacheData, seqLen, maxSeqLen};
|
|
2728
|
-
#ifndef NDEBUG
|
|
2729
|
-
kernel_mha<<<dimGrid, dimCta, hostSmemSize, stream>>>(
|
|
2730
|
-
#else
|
|
2731
|
-
cudaLaunchKernelEx(&launchCfg, &kernel_mha,
|
|
2732
|
-
#endif
|
|
2733
|
-
#if SPEC_DEC
|
|
2734
|
-
qSeqLen, nbKHeads, headGrpSize, qCuSeqLens,
|
|
2735
|
-
#else
|
|
2736
|
-
nbKHeads,
|
|
2737
|
-
#endif
|
|
2738
|
-
#if SLIDING_WINDOW
|
|
2739
|
-
slidingWinSize,
|
|
2740
|
-
#endif
|
|
2741
|
-
qScale, output,
|
|
2742
|
-
#if LOW_PREC_OUTPUT
|
|
2743
|
-
rcpOutScale,
|
|
2744
|
-
#endif
|
|
2745
|
-
q,
|
|
2746
|
-
#if SPEC_DEC
|
|
2747
|
-
mask,
|
|
2748
|
-
#endif
|
|
2749
|
-
attentionSinks, cacheList, batchSize, kvCacheScale, semaphores, scratch);
|
|
2750
|
-
#endif
|
|
2621
|
+
attentionSinks, cacheList, batchSize, kvCacheScale, stride_page_in_heads,
|
|
2622
|
+
stride_token_in_heads, stride_head_in_heads, semaphores, scratch);
|
|
2751
2623
|
checkCuda(cudaPeekAtLastError());
|
|
2752
2624
|
}
|
|
2753
2625
|
#endif
|