flashinfer-python 0.2.7.post1__tar.gz → 0.2.8rc1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {flashinfer_python-0.2.7.post1/flashinfer_python.egg-info → flashinfer_python-0.2.8rc1}/PKG-INFO +4 -1
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/README.md +3 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/cudnn_sdpa_kernel_launcher.cu +102 -62
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/fused_moe/cutlass_backend/flashinfer_cutlass_fused_moe_sm100_ops.cu +4 -8
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/trtllm_fmha_kernel_launcher.cu +29 -34
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/custom_backend.py +24 -7
- flashinfer_python-0.2.8rc1/flashinfer/_build_meta.py +1 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/attention.py +3 -2
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/trtllm_ar.py +184 -5
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/cudnn/decode.py +6 -8
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/cudnn/prefill.py +4 -7
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/fused_moe.py +22 -3
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/__init__.py +34 -0
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/compiler.py +150 -0
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/fusion_rules.py +123 -0
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/legalization.py +118 -0
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/op.py +66 -0
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/operators.py +620 -0
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/pipeline.py +188 -0
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/processors.py +448 -0
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/types.py +139 -0
- flashinfer_python-0.2.8rc1/flashinfer/logits_processor/validators.py +96 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1/flashinfer_python.egg-info}/PKG-INFO +4 -1
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer_python.egg-info/SOURCES.txt +12 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_epilogue_tma_warpspecialized.hpp +1 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_mainloop_tma_warpspecialized.hpp +66 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_fwd_kernel_tma_warpspecialized.hpp +21 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/scheduler.cuh +3 -7
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/comm/trtllm_allreduce_fusion.cuh +591 -41
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/comm/trtllm_moe_allreduce_fusion.cuh +3 -2
- flashinfer_python-0.2.8rc1/include/flashinfer/trtllm/fmha/cubin/kernelMetaInfo.h +288 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/trtllm/fmha/fmhaKernels.cuh +181 -110
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/trtllm/fmha/fmhaRunnerParams.h +53 -10
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/trtllm/fmha/gen_kernel_launcher.cuh +1 -1
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/trtllm/fmha/kernelParams.h +38 -18
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/vec_dtypes.cuh +243 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/pyproject.toml +1 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_batch_attention.py +3 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_blackwell_fmha.py +94 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_cudnn_decode.py +14 -29
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_cudnn_prefill.py +2 -2
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_cudnn_prefill_deepseek.py +2 -1
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_groupwise_scaled_gemm_fp8.py +112 -53
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_trtllm_allreduce_fusion.py +2 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_trtllm_cutlass_fused_moe.py +13 -8
- flashinfer_python-0.2.8rc1/tests/test_trtllm_gen_decode.py +244 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_decode.cu +2 -2
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_decode_jit_tvm_binding.cu +1 -1
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_prefill.cu +12 -10
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_prefill_jit_tvm_binding.cu +17 -13
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_prefill_sm90.cu +5 -5
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_prefill_sm90_jit_tvm_binding.cu +4 -4
- flashinfer_python-0.2.8rc1/version.txt +1 -0
- flashinfer_python-0.2.7.post1/flashinfer/_build_meta.py +0 -1
- flashinfer_python-0.2.7.post1/include/flashinfer/trtllm/fmha/cubin/kernelMetaInfo.h +0 -129
- flashinfer_python-0.2.7.post1/tests/test_trtllm_gen_decode.py +0 -117
- flashinfer_python-0.2.7.post1/version.txt +0 -1
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/axpby.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/clear.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/cooperative_copy.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/cooperative_gemm.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/copy.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/fill.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/functional.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/gemm.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/prefer.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/prefetch.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/tensor_algorithms.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/algorithm/tuple_algorithms.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/cluster_sm100.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/cluster_sm90.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/config.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/copy.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/copy_sm100.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/copy_sm100_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/copy_sm50.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/copy_sm75.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/copy_sm80.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/copy_sm90.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/copy_sm90_desc.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/copy_sm90_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm100.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm100_desc.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm100_umma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm120.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm61.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm70.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm75.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm80.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm89.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_desc.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/simd_sm100.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/tmem_allocator_sm100.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/arch/util.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_atom.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_im2col.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm50.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm75.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm80.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_im2col.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma_swizzle.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_atom.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm100.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm61.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm70.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm75.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm80.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm89.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/atom/partitioner.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/config.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/container/alignment.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/container/array.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/container/array_aligned.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/container/array_subbyte.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/container/bit_field.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/container/cuda_types.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/container/tuple.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/container/type_list.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/int_tuple.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/layout.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/layout_composed.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/numeric/arithmetic_tuple.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/numeric/complex.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/numeric/int.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/numeric/integer_sequence.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/numeric/integral_constant.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/numeric/integral_ratio.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/numeric/math.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/numeric/numeric_types.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/numeric/real.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/pointer.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/pointer_base.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/pointer_flagged.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/pointer_sparse.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/pointer_swizzle.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/stride.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/swizzle.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/swizzle_layout.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/tensor.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/tensor_impl.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/tensor_predicate.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/tensor_zip.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/underscore.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/util/debug.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/util/print.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cute/util/type_traits.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/aligned_buffer.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/arch.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/barrier.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/cache_operation.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/config.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/memory.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/memory_sm75.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/memory_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm50.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm60.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm61.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm70.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm75.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm89.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm90.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm89.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/reg_reconfig.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/simd.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/simd_sm60.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/simd_sm61.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/synclog.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/wmma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/wmma_sm70.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/wmma_sm72.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/arch/wmma_sm75.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/array.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/array_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/array_subbyte.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/barrier.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/bfloat16.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/blas3.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/blas3_types.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/block_striped.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/cluster_launch.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/constants.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_umma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/collective/collective_conv.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/collective/detail.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/collective/sm100_implicit_gemm_umma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/collective/sm90_implicit_gemm_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/conv2d_problem_size.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/conv3d_problem_size.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/convnd_problem_shape.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/convolution.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/detail.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/device/conv_universal_adapter.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/device/direct_convolution.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/conv_universal.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_dgrad.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_group_fprop.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_dgrad.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_wgrad.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_depthwise_fprop.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/direct_convolution.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_strided_dgrad.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/sm100_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/sm90_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/thread/depthwise_mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_tile_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_direct_conv_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_fixed_stride_dilation.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_direct_conv_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_filter_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_pipelined.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_core_with_lane_access_size.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_fprop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_pipelined.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_wgrad_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/conv/warp/scale_bias_relu_transform.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/coord.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/core_io.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/cuda_host_adapter.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/cutlass.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/blockwise_scale_layout.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/cluster.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/collective/mixed_input_utils.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/collective.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/dependent_false.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/helper_macros.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/layout.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/mainloop_fusion_helper_scale_factor.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/mma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/sm100_blockscaled_layout.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/detail/sm100_tmem_helper.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/device_kernel.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm100_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_epilogue.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue_array.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/detail.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/epilogue_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_nosmem.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_nosmem.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized_array.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized_bias_elementwise.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/callbacks.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/operations.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_topk_softmax.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/activation.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/conversion_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/detail.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_elementwise.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_relu.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_clamp.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_dgelu.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_drelu.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_gelu.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic_with_scaling.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_hardswish.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_leaky_relu.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu0.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_residual_block.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_sigmoid.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_silu.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_with_elementwise.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/reduction_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/scale_type.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_direct_store.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_simt.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_simt.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/direct_store_epilogue_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base_streamk.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_depthwise.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_direct_store.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_gemm_k_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_smem_accumulator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_visitor_with_softmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor_callbacks.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_workspace.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_2x.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_compute.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_load.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_store.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitors.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/interleaved_epilogue.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_iterator_parameter.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_tile_thread_map.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine_layout_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_blas3.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_conv.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_direct_conv.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_predicates.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_strided_dgrad.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_mixed.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_simt.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/simt_policy.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_simt.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op_mixed.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/volta_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/wmma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/exmy_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/detail.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/dist_gemm_universal_wrapper.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/full_barrier.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/detail.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/dist_gemm_kernel_wrapper.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/full_barrier.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_1d_schedules.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_base_schedule.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/fast_math.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/float8.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/float_subbyte.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/floating_point_nvrtc.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/functional.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_9xBF16_umma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_umma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockwise_umma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_pipeline_carveout.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_umma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_mma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_mma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_common.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_sparse_config.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_config.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder_decl.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma_decl.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/fp8_accumulation.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_array_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm70_mma_twostage.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_multistage.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/base_grouped.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/default_gemm_configuration.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/ell_gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_array.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_batched.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_grouped.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemv.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/rank_k.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/symm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/device/trmm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/gemm_enumerated_types.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/group_array_problem_shape.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_ell_gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_planar_complex_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_broadcast.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemv.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/ell_gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_array.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_batched.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_pipelined.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex_array.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_streamk_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_transpose_operands.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_decl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_streamk.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor_streamk.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_batched_strided.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_sparse_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_universal_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_transpose_operands.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_k_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_mma_transform.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mma_transform.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_sparse_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm120_gemm_tma_warpspecialized_cooperative_asymmetric_dma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/symm_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_detail.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/trmm_universal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm50.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm60.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm61.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_ell_mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_gemv_core.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_simt.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm70.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm75.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sparse_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_access_size.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_wmma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_with_reduction.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_trmm_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_sparse_mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_trmm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/gemv.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/index_remat.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_blas3_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_layernorm_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_pipelined.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_singlestage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_softmax_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_with_reduction_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle_streamk.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/layernorm_scale_bias_transform.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_mixed_input_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_policy.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fragment_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm70.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sparse.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_wmma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_wmma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/scale_bias_tile_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/softmax_scale_bias_transform.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/tile_iterator_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm_coord.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/gemm_coord.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/half.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/integer_subbyte.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/kernel_launch.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/layout/layout.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/layout/matrix.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/layout/permute.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/layout/pitch_linear.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/layout/tensor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm70.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm75.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/layout/vector.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/matrix.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/matrix_coord.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/matrix_shape.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/numeric_conversion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/numeric_size.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/numeric_types.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/pipeline/pipeline.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/pipeline/sm100_pipeline.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/pipeline/sm90_pipeline.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/pitch_linear_coord.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/platform/platform.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/predicate_vector.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/quaternion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/real.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/device/reduce_split_k.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_softmax_final.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_split_k.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/thread/reduce.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/thread/reduction_operators.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/reduction/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/relatively_equal.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/semaphore.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/subbyte_reference.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/tensor_coord.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/tensor_ref.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/tensor_ref_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/tensor_view.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/tensor_view_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/tfloat32.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/thread/matrix.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/trace.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/collective/sm90_wgmma_transpose.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/device/transform_universal_adapter.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/kernel/filter_format_transformer.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/kernel/sm90_sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/kernel/sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/pitch_linear_thread_map.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/thread/transpose.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/thread/unary_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear_direct_conv.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/vector_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/transform/warp/vector_fragment_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/uint128.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/version.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/wmma_array.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/include/cutlass/workspace.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/GPU_Clock.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/command_line.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/cublas_wrappers.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/debug.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_dump.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_groupnorm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_layernorm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_memory.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nchw_to_nhwc.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_padding.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_pooling.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_to_nchw.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_rmsnorm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_utils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/distribution.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/exceptions.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/gett_commandline.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/helper_cuda.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_reorder.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_uncompress.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/index_sequence.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/mixed_dtype_utils.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/packed_stride.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/print_error.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/inner_product.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/linear_to_coordinate.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/convolution.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gett.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_elementwise.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_compare.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_fill.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_relu.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/thread/gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/conv.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/convolution.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/error_metrics.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gett.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_k_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_copy.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_elementwise.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_norm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm_complex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/tensor_view_io.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/type_traits.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/async.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/async_logger-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/async_logger.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/cfg/argv.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/cfg/env.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/cfg/helpers-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/cfg/helpers.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/common-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/common.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/backtracer-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/backtracer.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/circular_q.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/console_globals.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/file_helper-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/file_helper.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/fmt_helper.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/log_msg-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/log_msg.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/mpmc_blocking_q.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/null_mutex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/os-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/os.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/periodic_worker-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/periodic_worker.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/registry-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/registry.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/synchronous_factory.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/tcp_client-windows.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/tcp_client.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/thread_pool-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/thread_pool.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/udp_client-windows.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/udp_client.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/details/windows_include.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bin_to_hex.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/args.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/chrono.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/color.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/compile.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/core.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/fmt.license.rst +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/format-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/format.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/locale.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/os.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/ostream.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/printf.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/ranges.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/std.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/xchar.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/chrono.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/compile.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/fmt.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/ostr.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/ranges.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/std.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fmt/xchar.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/formatter.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/fwd.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/logger-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/logger.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/mdc.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/pattern_formatter-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/pattern_formatter.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/android_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/base_sink-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/base_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/callback_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/daily_file_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/dist_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/dup_filter_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/hourly_file_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/kafka_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/mongo_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/msvc_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/null_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/ostream_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/qt_sinks.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/ringbuffer_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/sink-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/syslog_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/systemd_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/tcp_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/udp_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/win_eventlog_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/spdlog-inl.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/spdlog.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/stopwatch.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/tweakme.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/3rdparty/spdlog/include/spdlog/version.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/LICENSE +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/activation.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/aot_default_additional_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/aot_extension_utils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_attention.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_attention_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_attention_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_attention_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode_config.inc +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode_mla_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode_mla_cute_sm80.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode_mla_plan.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode_mla_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_decode_mla_run.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_mla_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_mla_plan.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_mla_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_mla_run.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_mla_sm90_plan.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_mla_sm90_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_mla_sm90_run.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_config.inc +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_fp8_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_fp8_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_fp8_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_ragged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_sm90_config.inc +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/batch_prefill_sm90_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/blackwell_fmha_plan.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/bmm_fp8.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/cascade.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/cudnn_sdpa_utils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/cutlass_mla.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_cascade_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_gemm_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_gemm_sm90_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_mla_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_norm_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_ops_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_page_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_quantization_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_rope_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/flashinfer_sampling_ops.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/fmha_cutlass_sm100.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/fmha_cutlass_sm100_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_instantiation.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_kernels.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/gemm_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/gemm_sm100_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/aot_default_additional_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_paged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/batch_ragged_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/dispatch.inc +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_128_head_vo_128_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_decode_head_qk_256_head_vo_256_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_128_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_192_head_vo_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/generated/single_prefill_head_qk_256_head_vo_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm_bf16_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm_e4m3_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm_e4m3_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm_e5m2_bf16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm_e5m2_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm_f16_f16_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm_sm100_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/group_gemm_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/logging.cc +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/norm.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/cpp/common/envUtils.cpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/cpp/common/logger.cpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/cpp/common/memoryUtils.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/cpp/common/stringUtils.cpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/cpp/common/tllmException.cpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/cpp/kernels/quantization.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/NvInferRuntime.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/assert.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/cudaBf16Wrapper.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/cudaFp8Utils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/cudaUtils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/dataType.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/logger.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/quantization.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/stringUtils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/include/tensorrt_llm/common/tllmException.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/common/cublasMMWrapper.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/common/cudaBf16Fallbacks.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/common/cudaDriverWrapper.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/common/cudaTypeUtils.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/common/envUtils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/common/memoryUtils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/common/quantTypeUtils.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/common/reduceKernelUtils.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/common/workspace.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_red_global.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_traits_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/communication/collective/sm90_allreduce_nvls_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/compute_occupancy.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/collective/epilogue_moe_finalize.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/fusion/sm90_visitor_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/thread/fused_activations.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue_helpers.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/default_fpA_intB_traits.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_routine.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_moe_problem_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_universal_allreduce.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/mixed_gemm_B_layout.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cute_util.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cutlass_kernel.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_problem_visitor.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma_bf16.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_base.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_finegrained.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_percol.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_finegrained.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_percol.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_compute_B_with_f16.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_dequantizer.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm_configs.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/interleaved_numeric_conversion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/system_barrier.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/tile_interleaved_layout.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/transform/threadblock/fine_grained_scale_zero_iterator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/util/gather_tensor.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/weight_only_quant_op.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_1.generated.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_2.generated.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_3.generated.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_4.generated.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_5.generated.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_6.generated.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_7.generated.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.cpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_type_conversion.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/include/moe_gemm_kernels.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/include/moe_kernels.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/launchers/moe_gemm_tma_ws_launcher.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/launchers/moe_gemm_tma_ws_launcher.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.inl +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_bf16_bf16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_bf16_fp8.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_bf16_uint4.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_bf16_uint8.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_fp16_fp16.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_fp16_uint4.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_fp16_uint8.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_fp32_fp32.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_fp4_fp4.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_fp8_fp8.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_kernels_fp8_uint4.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_template_dispatch.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_template_dispatch_tma_ws.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_template_dispatch_tma_ws_mixed_dtype.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_gemm_tma_warp_specialized_input.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/internal_cutlass_kernels/src/moe_gemm/moe_tma_warp_specialized_traits.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.cpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/quantization.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/kernels/quantization.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/runtime/torchUtils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.cpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nv_internal/tensorrt_llm/thop/thUtils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/nvshmem_binding.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/page.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/pod.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/pod_config.inc +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/pod_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/pod_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/pod_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/pytorch_conversion_utils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/pytorch_extension_utils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/quantization.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/renorm.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/rope.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/runtime_utils.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/sampling.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_decode.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_decode_config.inc +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_decode_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_config.inc +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_fp8_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_fp8_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_sm90_config.inc +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_sm90_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/single_prefill_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/trtllm_allreduce.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/trtllm_allreduce_fusion.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/trtllm_alltoall.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/trtllm_fmha_runner.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/trtllm_moe_allreduce_fusion.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/vllm_custom_all_reduce.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/__init__.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/activation.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/aot.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/autotuner.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/cascade.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/__init__.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/cuda_ipc.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/dlpack_utils.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/mapping.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/mnnvl.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/nvshmem.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/nvshmem_allreduce.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/trtllm_alltoall.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/comm/vllm_ar.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/cuda_utils.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/cudnn/__init__.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/decode.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/fp4_quantization.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/gemm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/green_ctx.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/__init__.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/activation.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/aot_config.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/attention/__init__.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/attention/pytorch.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/attention/tvm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/attention/utils.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/core.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/cpp_ext.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/cubin_loader.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/env.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/jit/utils.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/mla.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/norm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/page.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/pod.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/prefill.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/py.typed +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/quantization.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/rope.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/sampling.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/sparse.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/tllm_utils.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/__init__.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/activation.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/cascade.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/gemm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/kernels/__init__.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/kernels/activation.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/kernels/cascade.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/kernels/norm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/kernels/quant.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/kernels/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/norm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/page.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/triton/utils.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer/utils.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer_python.egg-info/dependency_links.txt +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer_python.egg-info/requires.txt +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/flashinfer_python.egg-info/top_level.txt +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/activation.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/allocator.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/collective/fmha_common.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/collective/fmha_fusion.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_epilogue_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_mainloop_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/common/pow_2.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/device/fmha.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/device/sm100_mla.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/fmha_cutlass_sm100.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/kernel/fmha_options.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/kernel/fmha_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/kernel/gather_tensor.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_gen_kernel_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_reduction.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/kernel/sm100_mla_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/blackwell/plan.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/cascade.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/cutlass_mla.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/decode.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/decode_mla_cute_sm80.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/default_decode_params.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/default_prefill_params.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/heap.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/attention_updater.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/block_sparse_gather.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/default_params.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/epilogue.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/mainloop.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/named_barrier.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/quantization/epilogue.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/quantization/kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/quantization/mainloop_load.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/quantization/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/quantization/mainloop_sparse_load.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/quantization/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/sparse_mainloop.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/tile_scheduler.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/utils.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/variant_helper.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper/variants.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/hopper.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/mask.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/mla.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/mla_hopper.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/mla_params.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/persistent.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/persistent_template.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/pod.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/prefill.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/state.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/variant_helper.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention/variants.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/attention_impl.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/comm/trtllm_allreduce.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/comm/trtllm_alltoall.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/comm/vllm_custom_all_reduce.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/cp_async.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/cubin_loader.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/cutlass_utils.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/exception.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/fastdiv.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/fp16.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/frag_layout_swizzle.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/gemm/bmm_fp8.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/gemm/gemm_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/gemm/group_gemm.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/gemm/group_gemm_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/gemm/group_gemm_lora.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/gemm/group_gemm_sm90.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/gemm/group_gemv.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/layout.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/logging.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/math.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/mma.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/norm.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/page.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/permuted_smem.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/pos_enc.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/profiler.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/quantization.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/sampling.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/semaphore_utils.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/trtllm/common.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/trtllm/fmha/decoder_impl_common.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/trtllm/fmha/decoder_params.h +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/trtllm/fmha/fmhaRunner.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/include/flashinfer/utils.cuh +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/setup.cfg +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/setup.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_activation.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_alibi.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_batch_decode_kernels.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_batch_prefill_kernels.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_block_sparse.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_block_sparse_indices_to_vector_sparse_offsets.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_bmm_fp8.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_create_ipc_buffer.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_decode_fp8_calibration_scale.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_decode_prefill_lse.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_deepseek_mla.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_fp4_quantize.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_fp8_prefill.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_green_ctx.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_group_gemm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_hopper.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_hopper_fp8_attention.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_jit_example.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_jit_warmup.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_logits_cap.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_logits_processor.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_mla_decode_kernel.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_mla_page.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_mnnvl_memory.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_non_contiguous_decode.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_non_contiguous_prefill.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_norm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_nvshmem.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_nvshmem_allreduce.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_page.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_pod_kernels.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_quantization.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_rope.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_sampling.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_shared_prefix_kernels.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_single_prefill.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_sliding_window.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_tensor_cores_decode.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_triton_cascade.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_trtllm_allreduce.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_trtllm_alltoall.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_trtllm_moe_allreduce_fusion.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_trtllm_moe_allreduce_fusion_finalize.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tests/test_vllm_custom_allreduce.py +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_mla_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_mla_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_mla_plan.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_mla_run.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/batch_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/sampling.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/sampling_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/tvm_binding/tvm_binding_utils.h +0 -0
{flashinfer_python-0.2.7.post1/flashinfer_python.egg-info → flashinfer_python-0.2.8rc1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flashinfer-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.8rc1
|
|
4
4
|
Summary: FlashInfer: Kernel Library for LLM Serving
|
|
5
5
|
Author: FlashInfer team
|
|
6
6
|
Project-URL: Homepage, https://github.com/flashinfer-ai/flashinfer
|
|
@@ -93,6 +93,9 @@ Alternatively, build FlashInfer from source:
|
|
|
93
93
|
git clone https://github.com/flashinfer-ai/flashinfer.git --recursive
|
|
94
94
|
cd flashinfer
|
|
95
95
|
python -m pip install -v .
|
|
96
|
+
|
|
97
|
+
# for development & contribution, install in editable mode
|
|
98
|
+
python -m pip install --no-build-isolation -e . -v
|
|
96
99
|
```
|
|
97
100
|
|
|
98
101
|
To pre-compile essential kernels ahead-of-time (AOT), run the following command:
|
|
@@ -73,6 +73,9 @@ Alternatively, build FlashInfer from source:
|
|
|
73
73
|
git clone https://github.com/flashinfer-ai/flashinfer.git --recursive
|
|
74
74
|
cd flashinfer
|
|
75
75
|
python -m pip install -v .
|
|
76
|
+
|
|
77
|
+
# for development & contribution, install in editable mode
|
|
78
|
+
python -m pip install --no-build-isolation -e . -v
|
|
76
79
|
```
|
|
77
80
|
|
|
78
81
|
To pre-compile essential kernels ahead-of-time (AOT), run the following command:
|
{flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/cudnn_sdpa_kernel_launcher.cu
RENAMED
|
@@ -68,16 +68,28 @@ constexpr int32_t BYTES_PER_ELEMENT = 2;
|
|
|
68
68
|
|
|
69
69
|
enum KernelType { PREFILL, PREFILL_DEEPSEEK, DECODE };
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
71
|
+
enum PrefillType {
|
|
72
|
+
KERNEL_PREFILL,
|
|
73
|
+
KERNEL_PREFILL_DEEPSEEK,
|
|
74
|
+
KERNEL_PREFILL_CAUSAL,
|
|
75
|
+
KERNEL_PREFILL_DEEPSEEK_CAUSAL,
|
|
76
|
+
KERNEL_NUM_PREFILL_TYPES
|
|
77
|
+
};
|
|
77
78
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
79
|
+
void init_cudnn_cubin(std::map<KernelType, std::string>& cubin_map) {
|
|
80
|
+
cubin_map[PREFILL] = getCubin(
|
|
81
|
+
"4c623163877c8fef5751c9c7a59940cd2baae02e/fmha/cudnn/"
|
|
82
|
+
"cudnn_sm100_fprop_sdpa_prefill_d128_bf16",
|
|
83
|
+
"ff14e8dcfc04d9b3a912dd44056be37d9aa8a85976e0070494ca0cce0524f2a1");
|
|
84
|
+
|
|
85
|
+
cubin_map[DECODE] = getCubin(
|
|
86
|
+
"4c623163877c8fef5751c9c7a59940cd2baae02e/fmha/cudnn/cudnn_sm100_fprop_sdpa_decode_d128_bf16",
|
|
87
|
+
"e7ce0408b4c3a36c42616498228534ee64cab785ef570af5741deaf9dd1b475c");
|
|
88
|
+
|
|
89
|
+
cubin_map[PREFILL_DEEPSEEK] = getCubin(
|
|
90
|
+
"4c623163877c8fef5751c9c7a59940cd2baae02e/fmha/cudnn/"
|
|
91
|
+
"cudnn_sm100_fprop_sdpa_prefill_d192_bf16",
|
|
92
|
+
"2190967b8733e193cdcecc054eeb7c2907080a158a33fe7ba2004523a4aff6f9");
|
|
81
93
|
}
|
|
82
94
|
|
|
83
95
|
auto get_cudnn_cubin(KernelType kernel_type) -> std::string {
|
|
@@ -385,19 +397,28 @@ static void create_packed_tma_desc_qo_prefill(int b, int32_t* actual_seq_lens_q_
|
|
|
385
397
|
}
|
|
386
398
|
}
|
|
387
399
|
|
|
388
|
-
void setup_prefill(CUfunction*
|
|
400
|
+
void setup_prefill(CUfunction* prefill_func) {
|
|
389
401
|
// Use cu++filt to get the kernel name
|
|
390
|
-
std::string
|
|
391
|
-
|
|
402
|
+
std::string kernel_name_deepseek_causal =
|
|
392
403
|
"_Z47cudnn_sm100_fprop_sdpa_prefill_bf16_"
|
|
393
404
|
"128x128x192ILb1ELb0EEvN4fmha19AttentionDescriptorEPKN3tma11cudaTmaDescES5_fPfNS0_"
|
|
394
405
|
"7stridesES5_S5_PKjS9_S9_jjNS0_11FastDivisorE";
|
|
395
406
|
|
|
396
|
-
std::string
|
|
407
|
+
std::string kernel_name_causal =
|
|
397
408
|
"_Z47cudnn_sm100_fprop_sdpa_prefill_bf16_"
|
|
398
409
|
"128x128x128ILb1ELb1EEvN4fmha19AttentionDescriptorEPKN3tma11cudaTmaDescES5_fPfNS0_"
|
|
399
410
|
"7stridesES5_S5_PKjS9_S9_jjNS0_11FastDivisorE";
|
|
400
411
|
|
|
412
|
+
std::string kernel_name_deepseek =
|
|
413
|
+
"_Z47cudnn_sm100_fprop_sdpa_prefill_bf16_"
|
|
414
|
+
"128x128x192ILb0ELb0EEvN4fmha19AttentionDescriptorEPKN3tma11cudaTmaDescES5_fPfNS0_"
|
|
415
|
+
"7stridesES5_S5_PKjS9_S9_jjNS0_11FastDivisorE";
|
|
416
|
+
|
|
417
|
+
std::string kernel_name =
|
|
418
|
+
"_Z47cudnn_sm100_fprop_sdpa_prefill_bf16_"
|
|
419
|
+
"128x128x128ILb0ELb1EEvN4fmha19AttentionDescriptorEPKN3tma11cudaTmaDescES5_fPfNS0_"
|
|
420
|
+
"7stridesES5_S5_PKjS9_S9_jjNS0_11FastDivisorE";
|
|
421
|
+
|
|
401
422
|
std::string cubin = get_cudnn_cubin(PREFILL);
|
|
402
423
|
std::string cubin_deepseek = get_cudnn_cubin(PREFILL_DEEPSEEK);
|
|
403
424
|
|
|
@@ -418,12 +439,23 @@ void setup_prefill(CUfunction* hfunc, CUfunction* hfunc_deepseek) {
|
|
|
418
439
|
throw std::runtime_error("Failed to cuModuleLoadData for prefill");
|
|
419
440
|
}
|
|
420
441
|
|
|
421
|
-
if (cuModuleGetFunction(
|
|
442
|
+
if (cuModuleGetFunction(&prefill_func[KERNEL_PREFILL], hmod, kernel_name.c_str()) !=
|
|
443
|
+
CUDA_SUCCESS) {
|
|
422
444
|
throw std::runtime_error("Failed to cuModuleGetFunction for prefill");
|
|
423
445
|
}
|
|
424
446
|
|
|
425
|
-
if (cuModuleGetFunction(
|
|
447
|
+
if (cuModuleGetFunction(&prefill_func[KERNEL_PREFILL_DEEPSEEK], hmod_deepseek,
|
|
448
|
+
kernel_name_deepseek.c_str()) != CUDA_SUCCESS) {
|
|
449
|
+
throw std::runtime_error("Failed to cuModuleGetFunction for prefill_deepseek");
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
if (cuModuleGetFunction(&prefill_func[KERNEL_PREFILL_CAUSAL], hmod, kernel_name_causal.c_str()) !=
|
|
426
453
|
CUDA_SUCCESS) {
|
|
454
|
+
throw std::runtime_error("Failed to cuModuleGetFunction for prefill");
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
if (cuModuleGetFunction(&prefill_func[KERNEL_PREFILL_DEEPSEEK_CAUSAL], hmod_deepseek,
|
|
458
|
+
kernel_name_deepseek_causal.c_str()) != CUDA_SUCCESS) {
|
|
427
459
|
throw std::runtime_error("Failed to cuModuleGetFunction for prefill_deepseek");
|
|
428
460
|
}
|
|
429
461
|
};
|
|
@@ -506,30 +538,24 @@ void prefill(int64_t b, int64_t s_qo, int64_t max_s_kv, at::Tensor q, at::Tensor
|
|
|
506
538
|
|
|
507
539
|
// Step 1: Setup the kernel pointer
|
|
508
540
|
|
|
509
|
-
static CUfunction
|
|
510
|
-
static CUfunction hfunc_deepseek{nullptr};
|
|
541
|
+
static CUfunction prefill_func[KERNEL_NUM_PREFILL_TYPES] = {nullptr, nullptr, nullptr, nullptr};
|
|
511
542
|
|
|
512
543
|
int64_t d_qk = q.size(2);
|
|
513
544
|
|
|
514
545
|
int64_t d_vo = v_cache.dim() == 3 ? v_cache.size(2) : v_cache.size(3);
|
|
515
546
|
|
|
516
|
-
if (
|
|
517
|
-
setup_prefill(
|
|
547
|
+
if (prefill_func[0] == nullptr) {
|
|
548
|
+
setup_prefill(prefill_func);
|
|
518
549
|
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
SMEM_SIZE));
|
|
529
|
-
cuErrCheck(cuFuncSetAttribute(hfunc_deepseek,
|
|
530
|
-
CU_FUNC_ATTRIBUTE_PREFERRED_SHARED_MEMORY_CARVEOUT, 100));
|
|
531
|
-
cuErrCheck(cuFuncSetAttribute(hfunc_deepseek,
|
|
532
|
-
CU_FUNC_ATTRIBUTE_NON_PORTABLE_CLUSTER_SIZE_ALLOWED, 1));
|
|
550
|
+
for (int i = 0; i < KERNEL_NUM_PREFILL_TYPES; i++) {
|
|
551
|
+
if (prefill_func[i] != nullptr) {
|
|
552
|
+
cuErrCheck(cuFuncSetAttribute(prefill_func[i],
|
|
553
|
+
CU_FUNC_ATTRIBUTE_MAX_DYNAMIC_SHARED_SIZE_BYTES, SMEM_SIZE));
|
|
554
|
+
cuErrCheck(cuFuncSetAttribute(prefill_func[i],
|
|
555
|
+
CU_FUNC_ATTRIBUTE_PREFERRED_SHARED_MEMORY_CARVEOUT, 100));
|
|
556
|
+
cuErrCheck(cuFuncSetAttribute(prefill_func[i],
|
|
557
|
+
CU_FUNC_ATTRIBUTE_NON_PORTABLE_CLUSTER_SIZE_ALLOWED, 1));
|
|
558
|
+
}
|
|
533
559
|
}
|
|
534
560
|
}
|
|
535
561
|
|
|
@@ -582,7 +608,7 @@ void prefill(int64_t b, int64_t s_qo, int64_t max_s_kv, at::Tensor q, at::Tensor
|
|
|
582
608
|
config.gridDimX = actual_num_tiles_per_head;
|
|
583
609
|
|
|
584
610
|
} else {
|
|
585
|
-
config.gridDimX = static_cast<int>(std::ceil(
|
|
611
|
+
config.gridDimX = static_cast<int>(std::ceil(s_qo / (TILE_M_1 * 2.0f))) * b;
|
|
586
612
|
}
|
|
587
613
|
|
|
588
614
|
config.gridDimY = h_qo;
|
|
@@ -666,7 +692,15 @@ void prefill(int64_t b, int64_t s_qo, int64_t max_s_kv, at::Tensor q, at::Tensor
|
|
|
666
692
|
dim3 grid(1, 1, 1);
|
|
667
693
|
dim3 block(128, 1, 1);
|
|
668
694
|
|
|
669
|
-
|
|
695
|
+
at::cuda::CUDAStream cuda_stream = at::cuda::getCurrentCUDAStream(device.index());
|
|
696
|
+
cudaStream_t raw_stream = cuda_stream.stream();
|
|
697
|
+
|
|
698
|
+
cudaError_t err = cudaStreamQuery(raw_stream);
|
|
699
|
+
if (!(err == cudaSuccess || err == cudaErrorNotReady)) {
|
|
700
|
+
throw std::runtime_error("CUDA cudnn stream error" + std::string(cudaGetErrorString(err)));
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
qkv_tma_setup_prefill<<<grid, block, 0, raw_stream>>>(
|
|
670
704
|
b, h_qo, h_kv, d_qk, d_vo, is_kv_ragged, page_size, total_num_pages,
|
|
671
705
|
k_cache.strides().data()[2], k_cache.strides().data()[1], k_cache.strides().data()[0],
|
|
672
706
|
v_cache.strides().data()[2], v_cache.strides().data()[1], v_cache.strides().data()[0],
|
|
@@ -737,12 +771,16 @@ void prefill(int64_t b, int64_t s_qo, int64_t max_s_kv, at::Tensor q, at::Tensor
|
|
|
737
771
|
args[13] = &page_size_div;
|
|
738
772
|
|
|
739
773
|
auto err_launch = CUDA_SUCCESS;
|
|
740
|
-
|
|
741
|
-
|
|
774
|
+
|
|
775
|
+
auto choice = KERNEL_PREFILL;
|
|
776
|
+
if (causal) {
|
|
777
|
+
choice = d_qk == 192 ? KERNEL_PREFILL_DEEPSEEK_CAUSAL : KERNEL_PREFILL_CAUSAL;
|
|
742
778
|
} else {
|
|
743
|
-
|
|
779
|
+
choice = d_qk == 192 ? KERNEL_PREFILL_DEEPSEEK : KERNEL_PREFILL;
|
|
744
780
|
}
|
|
745
781
|
|
|
782
|
+
err_launch = cuLaunchKernelEx(&config, prefill_func[choice], (void**)args, nullptr);
|
|
783
|
+
|
|
746
784
|
if (err_launch != CUDA_SUCCESS) {
|
|
747
785
|
const char* errstr = NULL;
|
|
748
786
|
cuGetErrorString(err_launch, &errstr);
|
|
@@ -882,19 +920,20 @@ void setup_tma_desc_decode(int64_t b, int64_t s_kv, int64_t h_qo, int64_t h_kv,
|
|
|
882
920
|
tma::cudaTmaDescSwizzle::SWIZZLE_128B);
|
|
883
921
|
}
|
|
884
922
|
|
|
885
|
-
void decode(at::Tensor q, at::Tensor k_cache, at::Tensor v_cache, double scale,
|
|
923
|
+
void decode(int64_t max_s_kv, at::Tensor q, at::Tensor k_cache, at::Tensor v_cache, double scale,
|
|
886
924
|
at::Tensor workspace_buffer, at::Tensor actual_seq_lens_kv,
|
|
887
925
|
at::Tensor actual_seq_lens_kv_gpu, at::Tensor block_tables, at::Tensor out,
|
|
888
|
-
std::optional<at::Tensor>
|
|
926
|
+
std::optional<at::Tensor> batch_offset_q_array,
|
|
927
|
+
std::optional<at::Tensor> batch_offset_o_array, bool is_cuda_graph_compatible) {
|
|
889
928
|
constexpr size_t SMEM_SIZE = 227 * 1024; // All smem
|
|
890
929
|
constexpr size_t REDUCTION_MEM_SIZE = 128 * 1024;
|
|
891
930
|
constexpr int64_t TILE_N_1 = 128;
|
|
892
931
|
|
|
893
932
|
constexpr int32_t NUM_THREADS = 384;
|
|
894
933
|
|
|
895
|
-
int64_t*
|
|
896
|
-
if (
|
|
897
|
-
|
|
934
|
+
int64_t* batch_offset_q_array_data = nullptr;
|
|
935
|
+
if (batch_offset_q_array.has_value()) {
|
|
936
|
+
batch_offset_q_array_data = batch_offset_q_array.value().data_ptr<int64_t>();
|
|
898
937
|
}
|
|
899
938
|
|
|
900
939
|
auto device = q.device();
|
|
@@ -940,20 +979,21 @@ void decode(at::Tensor q, at::Tensor k_cache, at::Tensor v_cache, double scale,
|
|
|
940
979
|
|
|
941
980
|
int64_t b = q.size(0);
|
|
942
981
|
int64_t h_qo = q.size(1);
|
|
943
|
-
int64_t h_kv = k_cache.size(1);
|
|
944
|
-
int64_t page_size = k_cache.size(2);
|
|
945
982
|
int64_t d = q.size(2);
|
|
946
|
-
int64_t total_num_pages = k_cache.size(0);
|
|
947
983
|
|
|
948
|
-
int64_t
|
|
984
|
+
int64_t h_kv = k_cache.size(1);
|
|
985
|
+
|
|
986
|
+
int64_t page_size = k_cache.dim() == 4 ? k_cache.size(2) : 1;
|
|
949
987
|
|
|
950
|
-
int64_t
|
|
988
|
+
int64_t total_num_pages = k_cache.dim() == 4 ? k_cache.size(0) : 1;
|
|
989
|
+
|
|
990
|
+
int64_t s_kv = max_s_kv;
|
|
951
991
|
|
|
952
|
-
|
|
992
|
+
int64_t s_qo = 1;
|
|
953
993
|
|
|
954
|
-
split_factor =
|
|
994
|
+
int32_t split_factor = compute_split_factor(b, h_kv, h_qo, s_kv, sm_count);
|
|
955
995
|
|
|
956
|
-
|
|
996
|
+
split_factor = 1; // Fix split factor. Setting it to 1 for now
|
|
957
997
|
|
|
958
998
|
// Set up TMA descriptors for Q, K, V, O
|
|
959
999
|
auto qo_strides = q.strides();
|
|
@@ -982,14 +1022,13 @@ void decode(at::Tensor q, at::Tensor k_cache, at::Tensor v_cache, double scale,
|
|
|
982
1022
|
|
|
983
1023
|
config.hStream = stream;
|
|
984
1024
|
config.numAttrs = 1;
|
|
985
|
-
config.attrs = attrs;
|
|
986
1025
|
|
|
987
1026
|
int8_t* workspace_start = workspace_buffer.data_ptr<int8_t>();
|
|
988
1027
|
int8_t* partial_o_dev = workspace_start;
|
|
989
1028
|
int8_t* tma_descriptor_start =
|
|
990
1029
|
partial_o_dev + (b * s_qo * h_qo * d * sizeof(float) * split_factor);
|
|
991
1030
|
|
|
992
|
-
int8_t* batch_strides_dev = tma_descriptor_start + ((
|
|
1031
|
+
int8_t* batch_strides_dev = tma_descriptor_start + ((5 * b) * sizeof(tma::cudaTmaDesc));
|
|
993
1032
|
|
|
994
1033
|
tma::cudaTmaDesc* packed_tma_desc_q_dev =
|
|
995
1034
|
reinterpret_cast<tma::cudaTmaDesc*>(tma_descriptor_start);
|
|
@@ -999,8 +1038,8 @@ void decode(at::Tensor q, at::Tensor k_cache, at::Tensor v_cache, double scale,
|
|
|
999
1038
|
reinterpret_cast<tma::cudaTmaDesc*>(tma_descriptor_start + b * sizeof(tma::cudaTmaDesc) * 2);
|
|
1000
1039
|
tma::cudaTmaDesc* tma_desc_k_dev =
|
|
1001
1040
|
reinterpret_cast<tma::cudaTmaDesc*>(tma_descriptor_start + b * sizeof(tma::cudaTmaDesc) * 3);
|
|
1002
|
-
tma::cudaTmaDesc* tma_desc_v_dev =
|
|
1003
|
-
tma_descriptor_start +
|
|
1041
|
+
tma::cudaTmaDesc* tma_desc_v_dev =
|
|
1042
|
+
reinterpret_cast<tma::cudaTmaDesc*>(tma_descriptor_start + b * sizeof(tma::cudaTmaDesc) * 4);
|
|
1004
1043
|
|
|
1005
1044
|
int8_t* lse_dev = batch_strides_dev + (b * sizeof(int64_t));
|
|
1006
1045
|
|
|
@@ -1034,15 +1073,15 @@ void decode(at::Tensor q, at::Tensor k_cache, at::Tensor v_cache, double scale,
|
|
|
1034
1073
|
tma_desc_v_dev, packed_tma_desc_o_dev, packed_tma_desc_partial_o_dev,
|
|
1035
1074
|
reinterpret_cast<int64_t*>(batch_strides_dev));
|
|
1036
1075
|
} else {
|
|
1037
|
-
std::unique_ptr<tma::cudaTmaDesc[]> tma_desc_host(new tma::cudaTmaDesc[
|
|
1076
|
+
std::unique_ptr<tma::cudaTmaDesc[]> tma_desc_host(new tma::cudaTmaDesc[5 * b]);
|
|
1038
1077
|
|
|
1039
1078
|
tma::cudaTmaDesc* tma_desc_q = tma_desc_host.get();
|
|
1040
1079
|
tma::cudaTmaDesc* tma_desc_o = tma_desc_host.get() + b;
|
|
1041
1080
|
tma::cudaTmaDesc* tma_desc_partial_o = tma_desc_host.get() + b * 2;
|
|
1042
1081
|
tma::cudaTmaDesc* tma_desc_k = tma_desc_host.get() + b * 3;
|
|
1043
|
-
tma::cudaTmaDesc* tma_desc_v = tma_desc_host.get() +
|
|
1082
|
+
tma::cudaTmaDesc* tma_desc_v = tma_desc_host.get() + b * 4;
|
|
1044
1083
|
|
|
1045
|
-
setup_tma_desc_decode(b,
|
|
1084
|
+
setup_tma_desc_decode(b, max_s_kv, h_qo, h_kv, d, total_num_pages, q, out, k_cache, v_cache,
|
|
1046
1085
|
split_factor, page_size, partial_o_dev, tma_desc_q, tma_desc_o,
|
|
1047
1086
|
tma_desc_partial_o, tma_desc_k, tma_desc_v);
|
|
1048
1087
|
|
|
@@ -1053,17 +1092,18 @@ void decode(at::Tensor q, at::Tensor k_cache, at::Tensor v_cache, double scale,
|
|
|
1053
1092
|
cudaMemcpyAsync(batch_strides_dev, batch_strides.get(), sizeof(int64_t) * b,
|
|
1054
1093
|
cudaMemcpyHostToDevice, stream);
|
|
1055
1094
|
|
|
1056
|
-
cudaMemcpyAsync(tma_descriptor_start, tma_desc_host.get(),
|
|
1057
|
-
|
|
1095
|
+
cudaMemcpyAsync(tma_descriptor_start, tma_desc_host.get(), sizeof(tma::cudaTmaDesc) * (5 * b),
|
|
1096
|
+
cudaMemcpyHostToDevice, stream);
|
|
1058
1097
|
}
|
|
1059
1098
|
|
|
1060
|
-
cudnn_sdpa::AttentionDescriptor_t attnDesc{b,
|
|
1099
|
+
cudnn_sdpa::AttentionDescriptor_t attnDesc{b, h_qo, h_kv, h_kv, s_qo,
|
|
1100
|
+
max_s_kv, d, h_qo / h_kv, 0};
|
|
1061
1101
|
|
|
1062
1102
|
cudnn_sdpa::FastDivisor_t page_size_div;
|
|
1063
1103
|
setFastDivisor(page_size_div, page_size);
|
|
1064
1104
|
|
|
1065
1105
|
uint32_t page_size32 = static_cast<uint32_t>(page_size);
|
|
1066
|
-
uint32_t num_pages_per_seq32 = static_cast<uint32_t>(
|
|
1106
|
+
uint32_t num_pages_per_seq32 = static_cast<uint32_t>(max_s_kv / page_size);
|
|
1067
1107
|
|
|
1068
1108
|
void* args[15];
|
|
1069
1109
|
|
|
@@ -182,7 +182,8 @@ class FusedMoeRunner : public torch::CustomClassHolder {
|
|
|
182
182
|
FusedMoeRunner(FusedMoeRunner const&) = delete;
|
|
183
183
|
void operator=(FusedMoeRunner const&) = delete;
|
|
184
184
|
|
|
185
|
-
at::Tensor runMoe(at::Tensor
|
|
185
|
+
at::Tensor runMoe(at::Tensor& output, at::Tensor const& input,
|
|
186
|
+
at::Tensor const& token_selected_experts,
|
|
186
187
|
std::optional<at::Tensor> token_final_scales,
|
|
187
188
|
at::Tensor const& fc1_expert_weights, at::Tensor const& fc2_expert_weights,
|
|
188
189
|
std::optional<c10::ArrayRef<at::Tensor>> quant_scales,
|
|
@@ -241,9 +242,6 @@ class FusedMoeRunner : public torch::CustomClassHolder {
|
|
|
241
242
|
|
|
242
243
|
auto stream = at::cuda::getCurrentCUDAStream(input.get_device());
|
|
243
244
|
|
|
244
|
-
std::vector<int64_t> output_shape = {num_rows, hidden_size};
|
|
245
|
-
auto output = torch::empty(output_shape, input.options().dtype(mOutputDtype));
|
|
246
|
-
|
|
247
245
|
WorkspaceInfo workspace_info = getWorkspaceInfo(
|
|
248
246
|
num_rows, hidden_size, inter_size, num_experts_total, static_cast<int>(experts_per_token),
|
|
249
247
|
activation_type, parallelism_config, min_latency_mode);
|
|
@@ -271,7 +269,8 @@ class FusedMoeRunner : public torch::CustomClassHolder {
|
|
|
271
269
|
}
|
|
272
270
|
|
|
273
271
|
std::tuple<torch::Tensor, torch::Tensor, torch::Tensor, torch::Tensor> runMoeMinLantency(
|
|
274
|
-
torch::Tensor
|
|
272
|
+
torch::Tensor& output, torch::Tensor const& input,
|
|
273
|
+
torch::Tensor const& token_selected_experts,
|
|
275
274
|
torch::optional<torch::Tensor> token_final_scales, torch::Tensor const& fc1_expert_weights,
|
|
276
275
|
torch::Tensor const& fc2_expert_weights,
|
|
277
276
|
torch::optional<c10::ArrayRef<torch::Tensor>> quant_scales,
|
|
@@ -328,9 +327,6 @@ class FusedMoeRunner : public torch::CustomClassHolder {
|
|
|
328
327
|
|
|
329
328
|
auto stream = at::cuda::getCurrentCUDAStream(input.get_device());
|
|
330
329
|
|
|
331
|
-
std::vector<int64_t> output_shape = {num_rows * num_experts_on_rank, hidden_size};
|
|
332
|
-
auto output = torch::empty(output_shape, input.options().dtype(mOutputDtype));
|
|
333
|
-
|
|
334
330
|
auto num_active_experts_per_node =
|
|
335
331
|
torch::empty({1}, input.options().dtype(at::ScalarType::Int));
|
|
336
332
|
auto experts_to_token_score =
|
{flashinfer_python-0.2.7.post1 → flashinfer_python-0.2.8rc1}/csrc/trtllm_fmha_kernel_launcher.cu
RENAMED
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
#include <c10/cuda/CUDAStream.h>
|
|
17
17
|
#include <flashinfer/exception.h>
|
|
18
18
|
#include <nvrtc.h>
|
|
19
|
-
#include <torch/all.h>
|
|
20
19
|
|
|
21
20
|
#include <algorithm>
|
|
22
21
|
#include <cmath>
|
|
@@ -25,23 +24,19 @@
|
|
|
25
24
|
#include <flashinfer/trtllm/fmha/gen_kernel_launcher.cuh>
|
|
26
25
|
#include <iostream>
|
|
27
26
|
|
|
28
|
-
__constant__ float out_scale = 1.0f;
|
|
29
|
-
__constant__ float log2e_h64 = 0.18033688011112042;
|
|
30
|
-
__constant__ float log2e_h128 = 0.12751743082459868;
|
|
31
|
-
__constant__ float log2e_h192 = 0.10411754627697266;
|
|
32
|
-
__constant__ float log2e_h256 = 0.09016844005556021;
|
|
33
|
-
|
|
34
27
|
namespace flashinfer {
|
|
35
28
|
template <typename T, Data_type CACHE_T>
|
|
36
29
|
void trtllm_paged_attention_launcher(at::Tensor& out, at::Tensor& query,
|
|
37
30
|
at::Tensor& key_value_cache, at::Tensor& workspace_buffer,
|
|
38
|
-
int64_t
|
|
31
|
+
int64_t num_q_heads, int64_t num_kv_heads, double scale,
|
|
39
32
|
at::Tensor& block_tables, at::Tensor& seq_lens,
|
|
40
33
|
int64_t block_size, int64_t max_seq_len,
|
|
41
34
|
const std::string kv_cache_dtype, double k_scale,
|
|
42
35
|
double v_scale) {
|
|
43
36
|
int num_seqs = query.size(0);
|
|
44
37
|
int num_heads = query.size(1);
|
|
38
|
+
TORCH_CHECK(num_heads == static_cast<int>(num_q_heads),
|
|
39
|
+
"num_q_heads params and query shape does not match!");
|
|
45
40
|
int head_size = query.size(2);
|
|
46
41
|
int max_num_blocks_per_seq = block_tables.size(-1);
|
|
47
42
|
|
|
@@ -55,6 +50,12 @@ void trtllm_paged_attention_launcher(at::Tensor& out, at::Tensor& query,
|
|
|
55
50
|
|
|
56
51
|
uint32_t num_k_heads = num_kv_heads;
|
|
57
52
|
uint32_t num_v_heads = num_k_heads;
|
|
53
|
+
if (num_heads % num_k_heads != 0) {
|
|
54
|
+
std::ostringstream err_msg;
|
|
55
|
+
err_msg << "num_heads must be a multiple of num_k_heads, got num_k_heads: " << num_k_heads
|
|
56
|
+
<< "and num_heads: " << num_heads;
|
|
57
|
+
FLASHINFER_ERROR(err_msg.str());
|
|
58
|
+
}
|
|
58
59
|
auto batch_size = num_seqs;
|
|
59
60
|
|
|
60
61
|
int const beam_width = num_seqs / batch_size; // always 1
|
|
@@ -91,35 +92,19 @@ void trtllm_paged_attention_launcher(at::Tensor& out, at::Tensor& query,
|
|
|
91
92
|
// num_kv_heads should be enough, but num_heads for safty at long seq len.
|
|
92
93
|
size_t num_semaphores = batch_size * num_heads;
|
|
93
94
|
|
|
94
|
-
runner_params.multiCtasKvScratchPtr =
|
|
95
|
-
|
|
95
|
+
runner_params.multiCtasKvScratchPtr = reinterpret_cast<void*>(
|
|
96
|
+
static_cast<char*>(workspace_buffer.data_ptr()) + num_semaphores * sizeof(uint32_t));
|
|
96
97
|
runner_params.multiCtasKvCounterPtr = reinterpret_cast<int32_t*>(workspace_buffer.data_ptr());
|
|
97
98
|
|
|
98
99
|
zero_gmem_semaphore_launcher(runner_params.multiCtasKvCounterPtr, num_semaphores,
|
|
99
100
|
/*enable_pdl=*/true, stream);
|
|
100
101
|
|
|
101
|
-
|
|
102
|
-
float* output_scale_ptr;
|
|
103
|
-
|
|
104
|
-
if (head_size == 64) {
|
|
105
|
-
cudaGetSymbolAddress((void**)&log_scale_ptr, log2e_h64);
|
|
106
|
-
} else if (head_size == 128) {
|
|
107
|
-
cudaGetSymbolAddress((void**)&log_scale_ptr, log2e_h128);
|
|
108
|
-
} else if (head_size == 192) {
|
|
109
|
-
cudaGetSymbolAddress((void**)&log_scale_ptr, log2e_h192);
|
|
110
|
-
} else if (head_size == 256) {
|
|
111
|
-
cudaGetSymbolAddress((void**)&log_scale_ptr, log2e_h256);
|
|
112
|
-
} else {
|
|
102
|
+
if (head_size != 64 && head_size != 128 && head_size != 192 && head_size != 256) {
|
|
113
103
|
std::ostringstream err_msg;
|
|
114
104
|
err_msg << "head_size " << head_size << " is not supported!";
|
|
115
105
|
FLASHINFER_ERROR(err_msg.str());
|
|
116
106
|
}
|
|
117
107
|
|
|
118
|
-
cudaGetSymbolAddress((void**)&output_scale_ptr, out_scale);
|
|
119
|
-
|
|
120
|
-
runner_params.scaleSoftmaxLog2Ptr = log_scale_ptr;
|
|
121
|
-
runner_params.outputScalePtr = output_scale_ptr;
|
|
122
|
-
|
|
123
108
|
runner_params.seqLensKvPtr = reinterpret_cast<int const*>(seq_lens.data_ptr<int>());
|
|
124
109
|
|
|
125
110
|
runner_params.oPtr = output_ptr;
|
|
@@ -127,12 +112,22 @@ void trtllm_paged_attention_launcher(at::Tensor& out, at::Tensor& query,
|
|
|
127
112
|
runner_params.mHeadDimV = head_size;
|
|
128
113
|
runner_params.mNumHeadsQ = num_heads;
|
|
129
114
|
runner_params.mNumHeadsKv = num_k_heads;
|
|
130
|
-
runner_params.mNumHeadsQPerKv =
|
|
115
|
+
runner_params.mNumHeadsQPerKv = num_heads / num_k_heads;
|
|
131
116
|
runner_params.mBatchSize = batch_size;
|
|
132
117
|
runner_params.mMaxSeqLenQ = 1;
|
|
133
118
|
runner_params.mMaxSeqLenKv = max_seq_len;
|
|
134
119
|
runner_params.mSumOfSeqLensQ = int(batch_size * runner_params.mMaxSeqLenQ);
|
|
135
120
|
runner_params.mScaleQ = 1.0;
|
|
121
|
+
// Set the chunked attention size and sliding window size to INT_MAX to disable them when checking
|
|
122
|
+
// if the kernel is supported.
|
|
123
|
+
runner_params.mChunkedAttentionSize = INT_MAX;
|
|
124
|
+
runner_params.mAttentionWindowSize = INT_MAX;
|
|
125
|
+
auto [foundKernels, kinfo] = fmha_runner.isSupportedWithInfo(runner_params);
|
|
126
|
+
if (!foundKernels) {
|
|
127
|
+
std::ostringstream err_msg;
|
|
128
|
+
err_msg << "Missing TRTLLM-GEN decode kernel:" << kinfo;
|
|
129
|
+
FLASHINFER_ERROR(err_msg.str());
|
|
130
|
+
}
|
|
136
131
|
|
|
137
132
|
runner_params.mMultiProcessorCount = getMultiProcessorCount();
|
|
138
133
|
auto const [free_memory, total_memory] = getDeviceMemoryInfo(false);
|
|
@@ -146,10 +141,10 @@ void trtllm_paged_attention_launcher(at::Tensor& out, at::Tensor& query,
|
|
|
146
141
|
fmha_runner.run(runner_params);
|
|
147
142
|
}
|
|
148
143
|
|
|
149
|
-
#define CALL_GEN_LAUNCHER(T, CACHE_T_ENUM)
|
|
150
|
-
trtllm_paged_attention_launcher<T, CACHE_T_ENUM>(
|
|
151
|
-
out, query, key_value_cache, workspace_buffer,
|
|
152
|
-
seq_lens, block_size, max_seq_len, kv_cache_dtype, k_scale, v_scale);
|
|
144
|
+
#define CALL_GEN_LAUNCHER(T, CACHE_T_ENUM) \
|
|
145
|
+
trtllm_paged_attention_launcher<T, CACHE_T_ENUM>( \
|
|
146
|
+
out, query, key_value_cache, workspace_buffer, num_q_heads, num_kv_heads, scale, \
|
|
147
|
+
block_tables, seq_lens, block_size, max_seq_len, kv_cache_dtype, k_scale, v_scale);
|
|
153
148
|
|
|
154
149
|
// The following macro is used to dispatch the conversion function based on
|
|
155
150
|
// the data type of the key and value cache. The FN is a macro that calls a
|
|
@@ -159,7 +154,7 @@ void trtllm_paged_attention_launcher(at::Tensor& out, at::Tensor& query,
|
|
|
159
154
|
if (SRC_DTYPE == at::ScalarType::Half) { \
|
|
160
155
|
FN(half, Data_type::DATA_TYPE_FP16); \
|
|
161
156
|
} else if (SRC_DTYPE == at::ScalarType::BFloat16) { \
|
|
162
|
-
FN(__nv_bfloat16, Data_type::
|
|
157
|
+
FN(__nv_bfloat16, Data_type::DATA_TYPE_BF16); \
|
|
163
158
|
} else { \
|
|
164
159
|
TORCH_CHECK(false, "Unsupported input type of kv cache: ", SRC_DTYPE); \
|
|
165
160
|
} \
|
|
@@ -178,7 +173,7 @@ void trtllm_paged_attention_launcher(at::Tensor& out, at::Tensor& query,
|
|
|
178
173
|
}
|
|
179
174
|
|
|
180
175
|
void trtllm_paged_attention(at::Tensor& out, at::Tensor& query, at::Tensor& key_value_cache,
|
|
181
|
-
at::Tensor& workspace_buffer, int64_t
|
|
176
|
+
at::Tensor& workspace_buffer, int64_t num_q_heads, int64_t num_kv_heads,
|
|
182
177
|
double scale, at::Tensor& block_tables, at::Tensor& seq_lens,
|
|
183
178
|
int64_t block_size, int64_t max_seq_len,
|
|
184
179
|
const std::string kv_cache_dtype, double k_scale, double v_scale) {
|
|
@@ -2,7 +2,6 @@ import shutil
|
|
|
2
2
|
from pathlib import Path
|
|
3
3
|
|
|
4
4
|
from setuptools import build_meta as orig
|
|
5
|
-
from setuptools.build_meta import * # noqa: F403
|
|
6
5
|
|
|
7
6
|
_root = Path(__file__).parent.resolve()
|
|
8
7
|
_data_dir = _root / "flashinfer" / "data"
|
|
@@ -63,12 +62,7 @@ def _prepare_for_editable():
|
|
|
63
62
|
_aot_ops_package_dir.symlink_to(_aot_ops_dir)
|
|
64
63
|
|
|
65
64
|
|
|
66
|
-
def
|
|
67
|
-
_prepare_for_wheel()
|
|
68
|
-
return _requires_for_aot
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
def get_requires_for_build_sdist(config_settings=None):
|
|
65
|
+
def _prepare_for_sdist():
|
|
72
66
|
# Remove data directory
|
|
73
67
|
if _data_dir.exists():
|
|
74
68
|
shutil.rmtree(_data_dir)
|
|
@@ -78,6 +72,14 @@ def get_requires_for_build_sdist(config_settings=None):
|
|
|
78
72
|
_aot_ops_package_dir.parent.mkdir(parents=True, exist_ok=True)
|
|
79
73
|
_aot_ops_package_dir.mkdir(parents=True)
|
|
80
74
|
|
|
75
|
+
|
|
76
|
+
def get_requires_for_build_wheel(config_settings=None):
|
|
77
|
+
_prepare_for_wheel()
|
|
78
|
+
return _requires_for_aot
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
def get_requires_for_build_sdist(config_settings=None):
|
|
82
|
+
_prepare_for_sdist()
|
|
81
83
|
return []
|
|
82
84
|
|
|
83
85
|
|
|
@@ -94,3 +96,18 @@ def prepare_metadata_for_build_wheel(metadata_directory, config_settings=None):
|
|
|
94
96
|
def prepare_metadata_for_build_editable(metadata_directory, config_settings=None):
|
|
95
97
|
_prepare_for_editable()
|
|
96
98
|
return orig.prepare_metadata_for_build_editable(metadata_directory, config_settings)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
def build_editable(wheel_directory, config_settings=None, metadata_directory=None):
|
|
102
|
+
_prepare_for_editable()
|
|
103
|
+
return orig.build_editable(wheel_directory, config_settings, metadata_directory)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
def build_sdist(sdist_directory, config_settings=None):
|
|
107
|
+
_prepare_for_sdist()
|
|
108
|
+
return orig.build_sdist(sdist_directory, config_settings)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
def build_wheel(wheel_directory, config_settings=None, metadata_directory=None):
|
|
112
|
+
_prepare_for_wheel()
|
|
113
|
+
return orig.build_wheel(wheel_directory, config_settings, metadata_directory)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.2.8rc1'
|
|
@@ -39,6 +39,7 @@ class BatchAttention:
|
|
|
39
39
|
def __init__(
|
|
40
40
|
self,
|
|
41
41
|
kv_layout: str = "NHD",
|
|
42
|
+
device: str = "cuda",
|
|
42
43
|
):
|
|
43
44
|
_check_kv_layout(kv_layout)
|
|
44
45
|
self._kv_layout = kv_layout
|
|
@@ -46,12 +47,12 @@ class BatchAttention:
|
|
|
46
47
|
self.float_workspace_buffer = torch.empty(
|
|
47
48
|
256 * 1024 * 1024,
|
|
48
49
|
dtype=torch.uint8,
|
|
49
|
-
device=torch.device(
|
|
50
|
+
device=torch.device(device),
|
|
50
51
|
)
|
|
51
52
|
self.int_workspace_buffer = torch.empty(
|
|
52
53
|
8 * 1024 * 1024,
|
|
53
54
|
dtype=torch.uint8,
|
|
54
|
-
device=torch.device(
|
|
55
|
+
device=torch.device(device),
|
|
55
56
|
)
|
|
56
57
|
self.page_locked_int_workspace_buffer = torch.empty(
|
|
57
58
|
8 * 1024 * 1024,
|