flashinfer-python 0.2.9rc1__tar.gz → 0.2.9rc2__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.9rc1/flashinfer_python.egg-info → flashinfer_python-0.2.9rc2}/PKG-INFO +2 -2
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_batched_gemm_runner.cu +2 -1
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_fused_moe_kernel_launcher.cu +78 -37
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_fused_moe_runner.cu +22 -21
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_mnnvl_allreduce.cu +2 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/__init__.py +3 -0
- flashinfer_python-0.2.9rc2/flashinfer/_build_meta.py +1 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/mnnvl.py +50 -45
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/trtllm_mnnvl_ar.py +2 -2
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/decode.py +4 -3
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/fused_moe.py +29 -7
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/gemm.py +1 -1
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/sparse.py +59 -19
- flashinfer_python-0.2.9rc2/flashinfer/testing/__init__.py +15 -0
- flashinfer_python-0.2.9rc2/flashinfer/testing/utils.py +709 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2/flashinfer_python.egg-info}/PKG-INFO +2 -2
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer_python.egg-info/SOURCES.txt +48 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer_python.egg-info/requires.txt +2 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/pod.cuh +2 -4
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/variants.cuh +1 -1
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/comm/trtllm_mnnvl_allreduce.cuh +144 -77
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/quantization.cuh +9 -3
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/KernelRunner.h +2 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmInterface.h +1 -1
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelMetaInfo.h +8947 -1145
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fmha/fmhaKernels.cuh +16 -6
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fused_moe/runner.h +5 -3
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/pyproject.toml +1 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/setup.py +1 -1
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_block_sparse.py +22 -7
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_trtllm_gen_decode.py +55 -28
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_trtllm_gen_fused_moe.py +61 -11
- flashinfer_python-0.2.9rc2/tests/test_trtllm_mnnvl_allreduce.py +319 -0
- flashinfer_python-0.2.9rc2/version.txt +1 -0
- flashinfer_python-0.2.9rc1/flashinfer/_build_meta.py +0 -1
- flashinfer_python-0.2.9rc1/tests/test_trtllm_mnnvl_allreduce.py +0 -288
- flashinfer_python-0.2.9rc1/version.txt +0 -1
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/axpby.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/clear.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/cooperative_copy.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/cooperative_gemm.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/copy.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/fill.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/functional.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/gemm.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/prefer.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/prefetch.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/tensor_algorithms.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/algorithm/tuple_algorithms.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/cluster_sm100.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/cluster_sm90.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/config.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/copy.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/copy_sm100.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/copy_sm100_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/copy_sm50.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/copy_sm75.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/copy_sm80.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/copy_sm90.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/copy_sm90_desc.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/copy_sm90_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm100.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm100_desc.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm100_umma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm120.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm61.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm70.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm75.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm80.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm89.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm90.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm90_desc.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/simd_sm100.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/tmem_allocator_sm100.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/arch/util.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_atom.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_im2col.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm50.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm75.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm80.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_im2col.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma_swizzle.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_atom.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm100.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm61.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm70.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm75.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm80.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm89.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/atom/partitioner.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/config.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/container/alignment.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/container/array.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/container/array_aligned.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/container/array_subbyte.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/container/bit_field.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/container/cuda_types.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/container/tuple.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/container/type_list.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/int_tuple.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/layout.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/layout_composed.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/numeric/arithmetic_tuple.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/numeric/complex.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/numeric/int.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/numeric/integer_sequence.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/numeric/integral_constant.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/numeric/integral_ratio.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/numeric/math.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/numeric/numeric_types.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/numeric/real.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/pointer.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/pointer_base.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/pointer_flagged.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/pointer_sparse.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/pointer_swizzle.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/stride.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/swizzle.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/swizzle_layout.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/tensor.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/tensor_impl.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/tensor_predicate.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/tensor_zip.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/underscore.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/util/debug.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/util/print.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cute/util/type_traits.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/aligned_buffer.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/arch.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/barrier.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/cache_operation.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/config.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/memory.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/memory_sm75.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/memory_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sm50.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sm60.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sm61.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sm70.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sm75.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sm89.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sm90.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm89.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/reg_reconfig.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/simd.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/simd_sm60.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/simd_sm61.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/synclog.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/wmma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/wmma_sm70.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/wmma_sm72.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/arch/wmma_sm75.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/array.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/array_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/array_subbyte.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/barrier.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/bfloat16.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/blas3.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/blas3_types.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/block_striped.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/cluster_launch.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/constants.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_umma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/collective/collective_conv.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/collective/detail.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/collective/sm100_implicit_gemm_umma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/collective/sm90_implicit_gemm_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/conv2d_problem_size.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/conv3d_problem_size.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/convnd_problem_shape.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/convolution.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/detail.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/device/conv_universal_adapter.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/device/direct_convolution.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/conv_universal.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_dgrad.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_group_fprop.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_dgrad.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_wgrad.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/default_depthwise_fprop.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/direct_convolution.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_strided_dgrad.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/sm100_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/kernel/sm90_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/thread/depthwise_mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_tile_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_direct_conv_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_fixed_stride_dilation.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_direct_conv_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_filter_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_pipelined.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_core_with_lane_access_size.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_fprop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_pipelined.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_wgrad_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/conv/warp/scale_bias_relu_transform.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/coord.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/core_io.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/cuda_host_adapter.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/cutlass.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/blockwise_scale_layout.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/cluster.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/collective/mixed_input_utils.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/collective.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/dependent_false.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/helper_macros.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/layout.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/mainloop_fusion_helper_scale_factor.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/mma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/sm100_blockscaled_layout.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/detail/sm100_tmem_helper.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/device_kernel.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm100_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_epilogue.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue_array.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/detail.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/epilogue_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_nosmem.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_nosmem.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized_array.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized_bias_elementwise.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/callbacks.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/operations.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_topk_softmax.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/activation.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/conversion_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/detail.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_elementwise.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_relu.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_clamp.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_dgelu.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_drelu.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_gelu.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic_with_scaling.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_hardswish.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_leaky_relu.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu0.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_residual_block.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_sigmoid.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_silu.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_with_elementwise.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/reduction_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/thread/scale_type.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_direct_store.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_simt.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_simt.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/direct_store_epilogue_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base_streamk.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_depthwise.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_direct_store.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_gemm_k_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_smem_accumulator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_visitor_with_softmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor_callbacks.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_workspace.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_2x.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_compute.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_load.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_store.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitors.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/interleaved_epilogue.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_iterator_parameter.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_tile_thread_map.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine_layout_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_blas3.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_conv.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_direct_conv.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_predicates.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_strided_dgrad.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_mixed.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_simt.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/simt_policy.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_simt.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op_mixed.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/volta_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/epilogue/warp/wmma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/exmy_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/detail.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/dist_gemm_universal_wrapper.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/full_barrier.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/detail.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/dist_gemm_kernel_wrapper.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/full_barrier.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_1d_schedules.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_base_schedule.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/fast_math.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/float8.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/float_subbyte.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/floating_point_nvrtc.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/functional.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_9xBF16_umma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_umma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockwise_umma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_pipeline_carveout.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_umma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_mma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_mma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_common.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_sparse_config.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_config.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder_decl.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma_decl.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/fp8_accumulation.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_array_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm70_mma_twostage.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_multistage.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/base_grouped.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/default_gemm_configuration.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/ell_gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_array.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_batched.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_grouped.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/gemv.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/rank_k.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/symm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/device/trmm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/gemm_enumerated_types.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/group_array_problem_shape.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_ell_gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_planar_complex_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_broadcast.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemv.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/ell_gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_array.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_batched.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_pipelined.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex_array.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_streamk_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_transpose_operands.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_decl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_streamk.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor_streamk.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_batched_strided.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_sparse_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_universal_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_transpose_operands.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_k_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_mma_transform.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mma_transform.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_sparse_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm120_gemm_tma_warpspecialized_cooperative_asymmetric_dma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/symm_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_detail.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/kernel/trmm_universal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/thread/mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm50.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm60.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm61.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_ell_mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_gemv_core.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_simt.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm70.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm75.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sparse_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_access_size.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_wmma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_with_reduction.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_trmm_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_sparse_mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_trmm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/gemv.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/index_remat.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_blas3_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_layernorm_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_pipelined.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_singlestage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_softmax_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_with_reduction_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle_streamk.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/layernorm_scale_bias_transform.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_mixed_input_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_policy.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fragment_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm70.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sparse.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_wmma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_wmma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/scale_bias_tile_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/softmax_scale_bias_transform.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm/warp/tile_iterator_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm_coord.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/gemm_coord.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/half.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/integer_subbyte.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/kernel_launch.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/layout/layout.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/layout/matrix.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/layout/permute.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/layout/pitch_linear.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/layout/tensor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm70.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm75.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/layout/vector.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/matrix.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/matrix_coord.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/matrix_shape.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/numeric_conversion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/numeric_size.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/numeric_types.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/pipeline/pipeline.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/pipeline/sm100_pipeline.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/pipeline/sm90_pipeline.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/pitch_linear_coord.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/platform/platform.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/predicate_vector.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/quaternion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/real.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/device/reduce_split_k.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_softmax_final.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_split_k.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/thread/reduce.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/thread/reduction_operators.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/reduction/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/relatively_equal.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/semaphore.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/subbyte_reference.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/tensor_coord.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/tensor_ref.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/tensor_ref_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/tensor_view.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/tensor_view_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/tfloat32.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/thread/matrix.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/trace.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/collective/sm90_wgmma_transpose.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/device/transform_universal_adapter.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/kernel/filter_format_transformer.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/kernel/sm90_sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/kernel/sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/pitch_linear_thread_map.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/thread/transpose.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/thread/unary_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear_direct_conv.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/threadblock/vector_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/transform/warp/vector_fragment_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/uint128.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/version.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/wmma_array.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/include/cutlass/workspace.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/GPU_Clock.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/command_line.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/cublas_wrappers.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/debug.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_dump.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_groupnorm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_layernorm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_memory.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nchw_to_nhwc.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_padding.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_pooling.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_to_nchw.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_rmsnorm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/device_utils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/distribution.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/exceptions.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/gett_commandline.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/helper_cuda.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/host_reorder.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/host_uncompress.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/index_sequence.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/mixed_dtype_utils.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/packed_stride.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/print_error.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/inner_product.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/linear_to_coordinate.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/convolution.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gett.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_elementwise.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_compare.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_fill.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_relu.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/thread/gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/conv.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/convolution.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/error_metrics.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gett.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_k_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_copy.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_elementwise.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_norm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm_complex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/tensor_view_io.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/cutlass/tools/util/include/cutlass/util/type_traits.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/async.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/async_logger-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/async_logger.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/cfg/argv.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/cfg/env.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/cfg/helpers-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/cfg/helpers.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/common-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/common.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/backtracer-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/backtracer.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/circular_q.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/console_globals.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/file_helper-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/file_helper.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/fmt_helper.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/log_msg-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/log_msg.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/mpmc_blocking_q.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/null_mutex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/os-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/os.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/periodic_worker-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/periodic_worker.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/registry-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/registry.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/synchronous_factory.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/tcp_client-windows.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/tcp_client.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/thread_pool-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/thread_pool.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/udp_client-windows.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/udp_client.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/details/windows_include.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bin_to_hex.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/args.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/chrono.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/color.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/compile.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/core.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/fmt.license.rst +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/format-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/format.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/locale.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/os.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/ostream.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/printf.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/ranges.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/std.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/bundled/xchar.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/chrono.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/compile.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/fmt.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/ostr.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/ranges.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/std.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fmt/xchar.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/formatter.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/fwd.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/logger-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/logger.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/mdc.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/pattern_formatter-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/pattern_formatter.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/android_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/base_sink-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/base_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/callback_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/daily_file_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/dist_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/dup_filter_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/hourly_file_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/kafka_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/mongo_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/msvc_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/null_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/ostream_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/qt_sinks.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/ringbuffer_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/sink-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/syslog_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/systemd_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/tcp_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/udp_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/win_eventlog_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/spdlog-inl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/spdlog.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/stopwatch.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/tweakme.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/3rdparty/spdlog/include/spdlog/version.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/LICENSE +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/README.md +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/activation.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/aot_extension_utils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_attention.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_attention_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_attention_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_attention_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode_config.inc +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode_mla_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode_mla_cute_sm80.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode_mla_plan.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode_mla_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_decode_mla_run.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_mla_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_mla_plan.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_mla_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_mla_run.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_mla_sm90_plan.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_mla_sm90_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_mla_sm90_run.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_config.inc +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_fp8_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_fp8_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_fp8_sm90.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_ragged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_sm90_config.inc +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/batch_prefill_sm90_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/blackwell_fmha_plan.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/bmm_fp8.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/cascade.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/cudnn_sdpa_kernel_launcher.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/cudnn_sdpa_utils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/cutlass_mla.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_cascade_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_gemm_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_gemm_sm90_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_mla_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_norm_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_ops_sm90.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_page_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_quantization_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_rope_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/flashinfer_sampling_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/fmha_cutlass_sm100.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/fmha_cutlass_sm100_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_instantiation.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_kernels.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/fused_moe/cutlass_backend/flashinfer_cutlass_fused_moe_sm100_ops.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/gemm_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/gemm_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/gemm_sm100_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/group_gemm.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/group_gemm_fp8_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/group_gemm_fp8_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/group_gemm_mxfp4_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/group_gemm_mxfp4_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/group_gemm_sm100_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/group_gemm_sm90.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/group_gemm_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/logging.cc +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/norm.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/cpp/common/envUtils.cpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/cpp/common/logger.cpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/cpp/common/memoryUtils.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/cpp/common/stringUtils.cpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/cpp/common/tllmException.cpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/cpp/kernels/quantization.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/NvInferRuntime.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/assert.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/cudaBf16Wrapper.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/cudaFp8Utils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/cudaUtils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/dataType.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/logger.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/quantization.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/stringUtils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/include/tensorrt_llm/common/tllmException.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/common/cublasMMWrapper.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/common/cudaBf16Fallbacks.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/common/cudaDriverWrapper.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/common/cudaTypeUtils.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/common/envUtils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/common/memoryUtils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/common/quantTypeUtils.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/common/reduceKernelUtils.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/common/workspace.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_red_global.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_traits_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/communication/collective/sm90_allreduce_nvls_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/compute_occupancy.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/collective/epilogue_moe_finalize.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/fusion/sm90_visitor_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/thread/fused_activations.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue_helpers.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/default_fpA_intB_traits.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_routine.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_moe_problem_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_universal_allreduce.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/mixed_gemm_B_layout.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cute_util.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cutlass_kernel.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_problem_visitor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/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.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma_bf16.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_base.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_finegrained.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_percol.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_finegrained.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_percol.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/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.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_dequantizer.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm_configs.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/interleaved_numeric_conversion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/system_barrier.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/tile_interleaved_layout.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/transform/threadblock/fine_grained_scale_zero_iterator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/util/gather_tensor.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/weight_only_quant_op.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_GemmKind.Grouped_sm100_M128_BSFalse_MixedFalse.generated.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_GemmKind.Grouped_sm100_M128_BSTrue_MixedFalse.generated.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_GemmKind.Grouped_sm100_M256_BSFalse_MixedFalse.generated.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_GemmKind.Grouped_sm100_M256_BSTrue_MixedFalse.generated.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_GemmKind.Grouped_sm100_M64_BSFalse_MixedFalse.generated.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_GemmKind.Grouped_sm80_M128_BSFalse_MixedFalse.generated.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_GemmKind.Grouped_sm80_M16_BSFalse_MixedFalse.generated.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_GemmKind.Grouped_sm80_M32_BSFalse_MixedFalse.generated.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/cutlass_instantiations/gemm_grouped/cutlass_kernel_file_GemmKind.Grouped_sm80_M64_BSFalse_MixedFalse.generated.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.cpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_type_conversion.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm_stub.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/common.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/cutlass_kernel_selector.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_gemm_kernels.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_kernels.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_util_kernels.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.inl +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_bf16.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_fp8.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint4.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint8.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_fp16.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint4.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint8.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp32_fp32.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp4_fp4.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp4.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp8.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_uint4.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws_mixed_dtype.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_tma_warp_specialized_input.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_tma_warp_specialized_traits.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.cpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/quantization.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/kernels/quantization.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/runtime/torchUtils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/thop/fp4Op.cpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.cpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nv_internal/tensorrt_llm/thop/thUtils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/nvshmem_binding.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/page.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/pod.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/pod_config.inc +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/pod_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/pod_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/pod_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/pytorch_conversion_utils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/pytorch_extension_utils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/quantization.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/renorm.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/rope.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/runtime_utils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/sampling.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_decode.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_decode_config.inc +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_decode_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_config.inc +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_fp8_sm90.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_fp8_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_sm90_config.inc +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_sm90_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/single_prefill_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_allreduce.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_allreduce_fusion.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_alltoall.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_fmha_kernel_launcher.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_fmha_runner.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_fused_moe_dev_kernel.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_fused_moe_routing_kernel.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_moe_allreduce_fusion.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/vllm_custom_all_reduce.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/custom_backend.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/activation.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/aot.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/attention.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/autotuner.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/cascade.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/__init__.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/cuda_ipc.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/dlpack_utils.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/mapping.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/nvshmem.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/nvshmem_allreduce.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/trtllm_alltoall.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/trtllm_ar.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/vllm_ar.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/cuda_utils.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/cudnn/__init__.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/cudnn/decode.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/cudnn/prefill.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/deep_gemm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/fp4_quantization.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/fused_moe_utils.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/green_ctx.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/__init__.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/activation.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/attention/__init__.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/attention/pytorch.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/attention/tvm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/attention/utils.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/core.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/cpp_ext.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/cubin_loader.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/env.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/jit/utils.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/__init__.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/compiler.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/fusion_rules.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/legalization.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/op.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/operators.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/pipeline.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/processors.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/types.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/logits_processor/validators.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/mla.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/norm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/page.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/pod.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/prefill.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/profiler/__init__.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/py.typed +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/quantization.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/rope.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/sampling.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/tllm_utils.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/__init__.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/activation.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/cascade.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/gemm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/kernels/__init__.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/kernels/activation.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/kernels/cascade.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/kernels/norm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/kernels/quant.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/kernels/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/norm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/page.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/triton/utils.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/utils.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer_python.egg-info/dependency_links.txt +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer_python.egg-info/top_level.txt +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/activation.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/allocator.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/collective/fmha_common.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/collective/fmha_fusion.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_mainloop_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_epilogue_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_mainloop_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/common/pow_2.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/device/fmha.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/device/sm100_mla.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/fmha_cutlass_sm100.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/kernel/fmha_options.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/kernel/fmha_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/kernel/gather_tensor.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_fwd_kernel_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_gen_kernel_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_reduction.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/kernel/sm100_mla_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/blackwell/plan.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/cascade.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/cutlass_mla.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/decode.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/decode_mla_cute_sm80.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/default_decode_params.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/default_prefill_params.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/heap.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/attention_updater.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/block_sparse_gather.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/default_params.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/epilogue.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/mainloop.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/named_barrier.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/quantization/epilogue.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/quantization/kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/quantization/mainloop_load.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/quantization/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/quantization/mainloop_sparse_load.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/quantization/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/sparse_mainloop.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/tile_scheduler.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/utils.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/variant_helper.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper/variants.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/hopper.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/mask.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/mla.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/mla_hopper.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/mla_params.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/persistent.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/persistent_template.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/prefill.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/scheduler.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/state.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention/variant_helper.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/attention_impl.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/comm/trtllm_allreduce.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/comm/trtllm_allreduce_fusion.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/comm/trtllm_alltoall.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/comm/trtllm_moe_allreduce_fusion.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/comm/vllm_custom_all_reduce.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/cp_async.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/cubin_loader.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/cutlass_utils.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/exception.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/fastdiv.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/fp16.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/frag_layout_swizzle.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/gemm/bmm_fp8.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/gemm/gemm_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/gemm/group_gemm.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/gemm/group_gemm_fp8_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/gemm/group_gemm_lora.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/gemm/group_gemm_mxfp4_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/gemm/group_gemm_sm90.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/gemm/group_gemv.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/layout.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/logging.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/math.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/mma.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/norm.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/page.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/permuted_smem.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/pos_enc.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/profiler.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/sampling.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/semaphore_utils.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmEnums.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmOptions.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/Enums.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmGatedActOptions.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmOptions.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParams.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelTraits.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/TmaDescriptor.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CudaKernelLauncher.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/DtypeDecl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/MmaDecl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/SfLayoutDecl.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/common/cudaBf16Fallbacks.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/common/cudaBf16Wrapper.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/common/cudaFp8Utils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/common/cudaTypeUtils.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/common/cudaUtils.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/common.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fmha/cubin/kernelMetaInfo.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fmha/decoder_impl_common.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fmha/decoder_params.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fmha/fmhaRunner.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fmha/fmhaRunnerParams.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fmha/gen_kernel_launcher.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fmha/kernelParams.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fused_moe/DevKernel.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fused_moe/IntFastDiv.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fused_moe/RoutingKernel.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fused_moe/RoutingKernel.h +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/trtllm/fused_moe/RoutingKernelTopK.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/utils.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/include/flashinfer/vec_dtypes.cuh +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/setup.cfg +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_activation.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_alibi.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_batch_attention.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_batch_decode_kernels.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_batch_prefill.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_batch_prefill_kernels.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_blackwell_fmha.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_block_sparse_indices_to_vector_sparse_offsets.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_bmm_fp8.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_create_ipc_buffer.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_cudnn_decode.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_cudnn_prefill.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_cudnn_prefill_deepseek.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_decode_fp8_calibration_scale.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_decode_prefill_lse.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_deepseek_mla.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_fp4_quantize.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_fp8_prefill.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_green_ctx.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_group_gemm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_groupwise_scaled_gemm_fp8.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_groupwise_scaled_gemm_mxfp4.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_hopper.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_hopper_fp8_attention.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_jit_example.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_jit_warmup.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_logits_cap.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_logits_processor.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_mla_decode_kernel.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_mla_page.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_mm_fp4.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_mnnvl_memory.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_non_contiguous_decode.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_non_contiguous_prefill.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_norm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_nvshmem.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_nvshmem_allreduce.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_page.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_pod_kernels.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_quantization.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_rope.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_sampling.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_shared_prefix_kernels.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_single_prefill.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_sliding_window.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_tensor_cores_decode.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_triton_cascade.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_trtllm_allreduce.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_trtllm_allreduce_fusion.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_trtllm_alltoall.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_trtllm_cutlass_fused_moe.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_trtllm_gen_context.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_trtllm_moe_allreduce_fusion.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_trtllm_moe_allreduce_fusion_finalize.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tests/test_vllm_custom_allreduce.py +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_decode.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_decode_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_mla_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_mla_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_mla_plan.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_mla_run.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_prefill.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_prefill_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/batch_prefill_sm90_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/sampling.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/sampling_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/tvm_binding/tvm_binding_utils.h +0 -0
{flashinfer_python-0.2.9rc1/flashinfer_python.egg-info → flashinfer_python-0.2.9rc2}/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.9rc2
|
|
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
|
|
@@ -16,7 +16,7 @@ Requires-Dist: pynvml
|
|
|
16
16
|
Requires-Dist: einops
|
|
17
17
|
Requires-Dist: nvidia-nvshmem-cu12
|
|
18
18
|
Requires-Dist: nvidia-cudnn-cu12
|
|
19
|
-
Requires-Dist: nvidia-cudnn-frontend
|
|
19
|
+
Requires-Dist: nvidia-cudnn-frontend; platform_machine == "x86_64" or platform_machine == "AMD64"
|
|
20
20
|
Dynamic: license-file
|
|
21
21
|
Dynamic: requires-dist
|
|
22
22
|
|
{flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_batched_gemm_runner.cu
RENAMED
|
@@ -98,7 +98,8 @@ TrtllmGenBatchedGemmRunner::TrtllmGenBatchedGemmRunner(
|
|
|
98
98
|
(!doesRouteImplUseNoRoute(options.mRouteImpl)) == mOptions.routeAct &&
|
|
99
99
|
options.mFusedAct == mOptions.fusedAct && options.mIsStaticBatch == mOptions.staticBatch &&
|
|
100
100
|
tileSize == mOptions.tileSize &&
|
|
101
|
-
options.mUseShuffledMatrixA == mOptions.useShuffledMatrixA
|
|
101
|
+
options.mUseShuffledMatrixA == mOptions.useShuffledMatrixA &&
|
|
102
|
+
options.mLayoutA == mOptions.weightLayout) {
|
|
102
103
|
if (mOptions.transposeMmaOutput && options.mEpilogueTileM == mOptions.epilogueTileM) {
|
|
103
104
|
mPassingConfigIndices.push_back(i);
|
|
104
105
|
}
|
{flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/csrc/trtllm_fused_moe_kernel_launcher.cu
RENAMED
|
@@ -46,7 +46,7 @@ namespace flashinfer {
|
|
|
46
46
|
using tensorrt_llm::kernels::trtllmGenFp8BlockScaleMoe::Routing::RoutingMethodType;
|
|
47
47
|
|
|
48
48
|
at::Tensor trtllm_fp8_per_tensor_scale_moe_launcher(
|
|
49
|
-
at::Tensor const& routing_logits, at::Tensor
|
|
49
|
+
at::Tensor const& routing_logits, at::optional<at::Tensor> routing_bias,
|
|
50
50
|
at::Tensor const& hidden_states, at::Tensor const& gemm1_weights,
|
|
51
51
|
at::Tensor const& output1_scales_scalar, at::Tensor const& output1_scales_gate_scalar,
|
|
52
52
|
at::Tensor const& gemm2_weights, at::Tensor const& output2_scales_scalar,
|
|
@@ -77,10 +77,13 @@ at::Tensor trtllm_fp8_per_tensor_scale_moe_launcher(
|
|
|
77
77
|
}
|
|
78
78
|
TORCH_CHECK(routing_logits.dim() == 2, "routing_logits must be 2D.");
|
|
79
79
|
TORCH_CHECK(routing_logits.sizes()[1] == num_experts, "routing_logits has incorrect shape.");
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
80
|
+
if (routing_bias.has_value()) {
|
|
81
|
+
TORCH_CHECK(routing_bias.value().scalar_type() == at::ScalarType::BFloat16,
|
|
82
|
+
"routing_bias must be bfloat16.");
|
|
83
|
+
TORCH_CHECK(routing_bias.value().dim() == 1, "routing_bias must be 1D.");
|
|
84
|
+
TORCH_CHECK(routing_bias.value().sizes()[0] == num_experts,
|
|
85
|
+
"routing_bias has incorrect shape.");
|
|
86
|
+
}
|
|
84
87
|
|
|
85
88
|
if (n_group <= 0 || topk_group <= 0) {
|
|
86
89
|
TORCH_CHECK(top_k == 1, "Current routing kernel (no groups) only supports top_k=1.");
|
|
@@ -114,7 +117,9 @@ at::Tensor trtllm_fp8_per_tensor_scale_moe_launcher(
|
|
|
114
117
|
}
|
|
115
118
|
|
|
116
119
|
args.routing_logits = routing_logits.data_ptr();
|
|
117
|
-
|
|
120
|
+
auto const routing_bias_dtype =
|
|
121
|
+
routing_bias.has_value() ? routing_bias.value().scalar_type() : at::ScalarType::BFloat16;
|
|
122
|
+
args.routing_bias = routing_bias.has_value() ? routing_bias.value().data_ptr() : nullptr;
|
|
118
123
|
args.hidden_states = hidden_states.data_ptr();
|
|
119
124
|
args.gemm1_weights = gemm1_weights.data_ptr();
|
|
120
125
|
args.output1_scales_scalar = output1_scales_scalar.data_ptr<float>();
|
|
@@ -145,9 +150,8 @@ at::Tensor trtllm_fp8_per_tensor_scale_moe_launcher(
|
|
|
145
150
|
{args.num_tokens * args.top_k}, at::ScalarType::Int, routing_logits.device(), std::nullopt);
|
|
146
151
|
at::Tensor permuted_idx_to_token_idx = at::detail::empty_cuda(
|
|
147
152
|
{max_num_padded_tokens}, at::ScalarType::Int, routing_logits.device(), std::nullopt);
|
|
148
|
-
at::Tensor expert_weights =
|
|
149
|
-
|
|
150
|
-
routing_logits.device(), std::nullopt);
|
|
153
|
+
at::Tensor expert_weights = at::detail::empty_cuda(
|
|
154
|
+
{args.num_tokens, args.top_k}, routing_bias_dtype, routing_logits.device(), std::nullopt);
|
|
151
155
|
at::Tensor expert_indexes = at::detail::empty_cuda(
|
|
152
156
|
{args.num_tokens, args.top_k}, at::ScalarType::Int, routing_logits.device(), std::nullopt);
|
|
153
157
|
at::Tensor expert_count_histogram = at::detail::empty_cuda(
|
|
@@ -184,7 +188,7 @@ at::Tensor trtllm_fp8_per_tensor_scale_moe_launcher(
|
|
|
184
188
|
|
|
185
189
|
tensorrt_llm::kernels::trtllmGenFp8BlockScaleMoe::Routing::Runner routing_runner(tile_tokens_dim);
|
|
186
190
|
auto const& stream = at::cuda::getCurrentCUDAStream(routing_logits.get_device());
|
|
187
|
-
routing_runner.run(routing_logits.data_ptr(), routing_bias
|
|
191
|
+
routing_runner.run(routing_logits.data_ptr(), args.routing_bias, args.num_tokens,
|
|
188
192
|
args.num_experts, args.top_k, args.n_group, args.topk_group,
|
|
189
193
|
args.local_expert_offset, args.local_num_experts, args.routed_scaling_factor,
|
|
190
194
|
expert_indexes.data_ptr<int>(), expert_count_histogram.data_ptr<int>(),
|
|
@@ -287,7 +291,7 @@ at::Tensor trtllm_fp8_per_tensor_scale_moe_launcher(
|
|
|
287
291
|
}
|
|
288
292
|
|
|
289
293
|
at::Tensor trtllm_fp8_per_tensor_scale_moe(
|
|
290
|
-
at::Tensor routing_logits, at::Tensor routing_bias, at::Tensor hidden_states,
|
|
294
|
+
at::Tensor routing_logits, at::optional<at::Tensor> routing_bias, at::Tensor hidden_states,
|
|
291
295
|
at::Tensor gemm1_weights, at::Tensor output1_scales_scalar,
|
|
292
296
|
at::Tensor output1_scales_gate_scalar, at::Tensor gemm2_weights,
|
|
293
297
|
at::Tensor output2_scales_scalar, int64_t num_experts, int64_t top_k, int64_t n_group,
|
|
@@ -308,7 +312,7 @@ at::Tensor trtllm_fp8_per_tensor_scale_moe(
|
|
|
308
312
|
}
|
|
309
313
|
|
|
310
314
|
at::Tensor trtllm_fp8_block_scale_moe_launcher(
|
|
311
|
-
at::Tensor const& routing_logits, at::Tensor
|
|
315
|
+
at::Tensor const& routing_logits, at::optional<at::Tensor> routing_bias,
|
|
312
316
|
at::Tensor const& hidden_states, at::Tensor const& hidden_states_scale,
|
|
313
317
|
at::Tensor const& gemm1_weights, at::Tensor const& gemm1_weights_scale,
|
|
314
318
|
at::Tensor const& gemm2_weights, at::Tensor const& gemm2_weights_scale,
|
|
@@ -338,11 +342,14 @@ at::Tensor trtllm_fp8_block_scale_moe_launcher(
|
|
|
338
342
|
"routing_logits and hidden_states must have the same number of tokens.");
|
|
339
343
|
TORCH_CHECK(routing_logits.sizes()[1] == num_experts,
|
|
340
344
|
"routing_logits dim1 must match num_experts.");
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
345
|
+
if (routing_bias.has_value()) {
|
|
346
|
+
TORCH_CHECK(routing_bias.value().scalar_type() == at::ScalarType::BFloat16 ||
|
|
347
|
+
routing_bias.value().scalar_type() == at::ScalarType::Float,
|
|
348
|
+
"routing_bias must be bfloat16 or float.");
|
|
349
|
+
TORCH_CHECK(routing_bias.value().dim() == 1, "routing_bias must be 1D.");
|
|
350
|
+
TORCH_CHECK(routing_bias.value().sizes()[0] == num_experts,
|
|
351
|
+
"routing_bias has incorrect shape.");
|
|
352
|
+
}
|
|
346
353
|
|
|
347
354
|
if (n_group <= 0 || topk_group <= 0) {
|
|
348
355
|
TORCH_CHECK(top_k == 1, "Current routing kernel (no groups) only supports top_k=1.");
|
|
@@ -375,11 +382,13 @@ at::Tensor trtllm_fp8_block_scale_moe_launcher(
|
|
|
375
382
|
TORCH_CHECK(false, "Unsupported input dtype for MoE: ", dtype);
|
|
376
383
|
}
|
|
377
384
|
|
|
378
|
-
|
|
385
|
+
auto const routing_bias_dtype =
|
|
386
|
+
routing_bias.has_value() ? routing_bias.value().scalar_type() : at::ScalarType::BFloat16;
|
|
387
|
+
args.mDtypeExpW = routing_bias_dtype == at::ScalarType::BFloat16
|
|
379
388
|
? batchedGemm::trtllm::gen::Dtype::Bfloat16
|
|
380
389
|
: batchedGemm::trtllm::gen::Dtype::Fp32;
|
|
381
390
|
args.routing_logits = routing_logits.data_ptr<float>();
|
|
382
|
-
args.routing_bias = routing_bias.data_ptr();
|
|
391
|
+
args.routing_bias = routing_bias.has_value() ? routing_bias.value().data_ptr() : nullptr;
|
|
383
392
|
args.hidden_states = hidden_states.data_ptr();
|
|
384
393
|
args.hidden_states_scale = hidden_states_scale.data_ptr<float>();
|
|
385
394
|
args.gemm1_weights = gemm1_weights.data_ptr();
|
|
@@ -410,9 +419,8 @@ at::Tensor trtllm_fp8_block_scale_moe_launcher(
|
|
|
410
419
|
{args.num_tokens * args.top_k}, at::ScalarType::Int, routing_logits.device(), std::nullopt);
|
|
411
420
|
at::Tensor permuted_idx_to_token_idx = at::detail::empty_cuda(
|
|
412
421
|
{max_num_padded_tokens}, at::ScalarType::Int, routing_logits.device(), std::nullopt);
|
|
413
|
-
at::Tensor expert_weights =
|
|
414
|
-
|
|
415
|
-
routing_logits.device(), std::nullopt);
|
|
422
|
+
at::Tensor expert_weights = at::detail::empty_cuda(
|
|
423
|
+
{args.num_tokens, args.top_k}, routing_bias_dtype, routing_logits.device(), std::nullopt);
|
|
416
424
|
at::Tensor expert_indexes = at::detail::empty_cuda(
|
|
417
425
|
{args.num_tokens, args.top_k}, at::ScalarType::Int, routing_logits.device(), std::nullopt);
|
|
418
426
|
int64_t const size_of_expert_count_histogram = std::max(num_experts * 2, int64_t(256 * 2));
|
|
@@ -451,7 +459,7 @@ at::Tensor trtllm_fp8_block_scale_moe_launcher(
|
|
|
451
459
|
tensorrt_llm::kernels::trtllmGenFp8BlockScaleMoe::Routing::Runner routing_runner(tile_tokens_dim);
|
|
452
460
|
auto const& stream = at::cuda::getCurrentCUDAStream(routing_logits.get_device());
|
|
453
461
|
routing_runner.run(
|
|
454
|
-
routing_logits.data_ptr<float>(), routing_bias
|
|
462
|
+
routing_logits.data_ptr<float>(), args.routing_bias, args.num_tokens, args.num_experts,
|
|
455
463
|
args.top_k, args.n_group, args.topk_group, args.local_expert_offset, args.local_num_experts,
|
|
456
464
|
args.routed_scaling_factor, expert_indexes.data_ptr<int>(),
|
|
457
465
|
expert_count_histogram.data_ptr<int>(), total_num_padded_tokens.data_ptr<int>(),
|
|
@@ -474,12 +482,26 @@ at::Tensor trtllm_fp8_block_scale_moe_launcher(
|
|
|
474
482
|
"hidden_states_scale dim1 must match num_tokens.");
|
|
475
483
|
TORCH_CHECK(gemm1_weights.scalar_type() == at::ScalarType::Float8_e4m3fn,
|
|
476
484
|
"gemm1_weights must be fp8.");
|
|
477
|
-
|
|
478
|
-
TORCH_CHECK(gemm1_weights.
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
485
|
+
|
|
486
|
+
TORCH_CHECK(gemm1_weights.dim() == 3 || gemm1_weights.dim() == 4,
|
|
487
|
+
"gemm1_weights must be 3D or 4D.");
|
|
488
|
+
{
|
|
489
|
+
int64_t Mn = 0, K = 0;
|
|
490
|
+
if (gemm1_weights.dim() == 3) {
|
|
491
|
+
// MajorK [num_experts, M, K]
|
|
492
|
+
Mn = gemm1_weights.sizes()[1];
|
|
493
|
+
K = gemm1_weights.sizes()[2];
|
|
494
|
+
} else if (gemm1_weights.dim() == 4) {
|
|
495
|
+
// BlockMajorK [num_experts, K/block_k, M, block_k]
|
|
496
|
+
Mn = gemm1_weights.sizes()[2];
|
|
497
|
+
int64_t block_k = gemm1_weights.sizes()[3];
|
|
498
|
+
K = gemm1_weights.sizes()[1] * block_k;
|
|
499
|
+
}
|
|
500
|
+
TORCH_CHECK(Mn % 2 == 0, "the second dimension of weights must be even.");
|
|
501
|
+
TORCH_CHECK(intermediate_size == Mn / 2, "intermediate_size has incorrect shape.");
|
|
502
|
+
TORCH_CHECK(K == hidden_states.sizes()[1],
|
|
503
|
+
"the third dimension of weights must be equal to hidden_size.");
|
|
504
|
+
}
|
|
483
505
|
TORCH_CHECK(gemm1_weights_scale.scalar_type() == at::ScalarType::Float,
|
|
484
506
|
"gemm1_weights_scale must be float.");
|
|
485
507
|
TORCH_CHECK(gemm1_weights_scale.dim() == 3, "gemm1_weights_scale must be 3D.");
|
|
@@ -494,9 +516,22 @@ at::Tensor trtllm_fp8_block_scale_moe_launcher(
|
|
|
494
516
|
"gemm1_weights_scale has incorrect shape.");
|
|
495
517
|
TORCH_CHECK(gemm2_weights.scalar_type() == at::ScalarType::Float8_e4m3fn,
|
|
496
518
|
"gemm2_weights must be fp8.");
|
|
497
|
-
|
|
498
|
-
TORCH_CHECK(gemm2_weights.
|
|
499
|
-
"
|
|
519
|
+
|
|
520
|
+
TORCH_CHECK(gemm2_weights.dim() == 3 || gemm2_weights.dim() == 4,
|
|
521
|
+
"gemm2_weights must be 3D or 4D.");
|
|
522
|
+
{
|
|
523
|
+
int64_t K = 0;
|
|
524
|
+
if (gemm2_weights.dim() == 3) {
|
|
525
|
+
// MajorK [num_experts, M, K]
|
|
526
|
+
K = gemm2_weights.sizes()[2];
|
|
527
|
+
} else if (gemm2_weights.dim() == 4) {
|
|
528
|
+
// BlockMajorK [num_experts, K/block_k, M, block_k]
|
|
529
|
+
int64_t block_k = gemm2_weights.sizes()[3];
|
|
530
|
+
K = gemm2_weights.sizes()[1] * block_k;
|
|
531
|
+
}
|
|
532
|
+
TORCH_CHECK(K == intermediate_size,
|
|
533
|
+
"the third dimension of weights must be equal to intermediate_size.");
|
|
534
|
+
}
|
|
500
535
|
TORCH_CHECK(gemm2_weights_scale.scalar_type() == at::ScalarType::Float,
|
|
501
536
|
"gemm2_weights_scale must be float.");
|
|
502
537
|
TORCH_CHECK(gemm2_weights_scale.dim() == 3, "gemm2_weights_scale must be 3D.");
|
|
@@ -554,13 +589,14 @@ at::Tensor trtllm_fp8_block_scale_moe_launcher(
|
|
|
554
589
|
}
|
|
555
590
|
|
|
556
591
|
at::Tensor trtllm_fp8_block_scale_moe(
|
|
557
|
-
at::Tensor const& routing_logits, at::Tensor
|
|
592
|
+
at::Tensor const& routing_logits, at::optional<at::Tensor> routing_bias,
|
|
558
593
|
at::Tensor const& hidden_states, at::Tensor const& hidden_states_scale,
|
|
559
594
|
at::Tensor const& gemm1_weights, at::Tensor const& gemm1_weights_scale,
|
|
560
595
|
at::Tensor const& gemm2_weights, at::Tensor const& gemm2_weights_scale, int64_t num_experts,
|
|
561
596
|
int64_t top_k, int64_t n_group, int64_t topk_group, int64_t intermediate_size,
|
|
562
597
|
int64_t local_expert_offset, int64_t local_num_experts, double routed_scaling_factor,
|
|
563
|
-
int64_t tile_tokens_dim, int64_t routing_method_type, bool use_shuffled_weight
|
|
598
|
+
int64_t tile_tokens_dim, int64_t routing_method_type, bool use_shuffled_weight,
|
|
599
|
+
int64_t weight_layout) {
|
|
564
600
|
auto dtype = hidden_states.dtype();
|
|
565
601
|
if (dtype == at::ScalarType::Half || dtype == at::ScalarType::BFloat16 ||
|
|
566
602
|
dtype == at::ScalarType::Float8_e4m3fn) {
|
|
@@ -570,9 +606,13 @@ at::Tensor trtllm_fp8_block_scale_moe(
|
|
|
570
606
|
batchedGemm::trtllm::gen::Dtype::E4m3}; // FP8 runner so hard-coded
|
|
571
607
|
bool mUseDeepSeekFp8{true}; // Always true for BlockScaleMoe
|
|
572
608
|
|
|
609
|
+
TORCH_CHECK(0 <= weight_layout && weight_layout <= 2,
|
|
610
|
+
"the value of weight_layout is not recognized");
|
|
611
|
+
|
|
573
612
|
// Properly initialize the runner using make_unique like in the original code
|
|
574
|
-
auto mRunner = std::make_unique<RunnerType>(
|
|
575
|
-
|
|
613
|
+
auto mRunner = std::make_unique<RunnerType>(
|
|
614
|
+
mDtypeElt, mUseDeepSeekFp8, tile_tokens_dim, use_shuffled_weight,
|
|
615
|
+
static_cast<batchedGemm::gemm::MatrixLayout>(weight_layout));
|
|
576
616
|
|
|
577
617
|
// Always use fallback config (equivalent to moeConfigIndex == -1 case from original code)
|
|
578
618
|
auto const num_tokens = hidden_states.sizes()[0];
|
|
@@ -921,7 +961,8 @@ std::vector<at::Tensor> trtllm_fp4_block_scale_moe(
|
|
|
921
961
|
|
|
922
962
|
// Properly initialize the runner using make_unique like in the original code
|
|
923
963
|
auto mRunner = std::make_unique<RunnerType>(mDtypeElt, mUseDeepSeekFp8, tile_tokens_dim,
|
|
924
|
-
/*useShuffledMatrixA*/ true
|
|
964
|
+
/*useShuffledMatrixA*/ true,
|
|
965
|
+
batchedGemm::gemm::MatrixLayout::MajorK);
|
|
925
966
|
|
|
926
967
|
auto const num_tokens = hidden_states.sizes()[0];
|
|
927
968
|
|
|
@@ -174,10 +174,9 @@ void Runner::run(void* routingLogits, void* routingBias, int32_t numTokens, int3
|
|
|
174
174
|
|
|
175
175
|
namespace PermuteGemm1 {
|
|
176
176
|
|
|
177
|
-
tensorrt_llm::kernels::TrtllmGenBatchedGemmRunnerOptions getOptions(
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
bool useShuffledMatrixA) {
|
|
177
|
+
tensorrt_llm::kernels::TrtllmGenBatchedGemmRunnerOptions getOptions(
|
|
178
|
+
btg::Dtype dtypeElt, int32_t tileTokensDim, bool useDeepSeekFp8, bool useShuffledMatrixA,
|
|
179
|
+
batchedGemm::gemm::MatrixLayout weightLayout) {
|
|
181
180
|
tensorrt_llm::kernels::TrtllmGenBatchedGemmRunnerOptions options = {
|
|
182
181
|
.eltType = dtypeElt,
|
|
183
182
|
.outputType = dtypeElt,
|
|
@@ -188,15 +187,17 @@ tensorrt_llm::kernels::TrtllmGenBatchedGemmRunnerOptions getOptions(btg::Dtype d
|
|
|
188
187
|
.transposeMmaOutput = true,
|
|
189
188
|
.tileSize = tileTokensDim,
|
|
190
189
|
.epilogueTileM = useDeepSeekFp8 ? 64 : 128,
|
|
191
|
-
.useShuffledMatrixA = useShuffledMatrixA
|
|
190
|
+
.useShuffledMatrixA = useShuffledMatrixA,
|
|
191
|
+
.weightLayout = weightLayout};
|
|
192
192
|
return options;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
|
-
Runner::Runner(btg::Dtype dtypeElt, bool useDeepSeekFp8, int tileTokensDim, bool useShuffledMatrixA
|
|
195
|
+
Runner::Runner(btg::Dtype dtypeElt, bool useDeepSeekFp8, int tileTokensDim, bool useShuffledMatrixA,
|
|
196
|
+
batchedGemm::gemm::MatrixLayout weightLayout)
|
|
196
197
|
: mDtypeElt(dtypeElt),
|
|
197
198
|
mTileTokensDim(tileTokensDim),
|
|
198
|
-
mRunner(tensorrt_llm::kernels::TrtllmGenBatchedGemmRunner(
|
|
199
|
-
|
|
199
|
+
mRunner(tensorrt_llm::kernels::TrtllmGenBatchedGemmRunner(getOptions(
|
|
200
|
+
mDtypeElt, mTileTokensDim, useDeepSeekFp8, useShuffledMatrixA, weightLayout))) {}
|
|
200
201
|
|
|
201
202
|
void Runner::run(void* hiddenState, void* hiddenStateScale, void* weights, void* weightsScale,
|
|
202
203
|
void* expertWeights, float* outputScalesScalar, float* outputScalesGateScalar,
|
|
@@ -253,11 +254,9 @@ std::vector<int64_t> Runner::getPassingConfigIndices() const {
|
|
|
253
254
|
} // namespace PermuteGemm1
|
|
254
255
|
|
|
255
256
|
namespace Gemm2 {
|
|
256
|
-
tensorrt_llm::kernels::TrtllmGenBatchedGemmRunnerOptions getOptions(
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
bool useDeepSeekFp8,
|
|
260
|
-
bool useShuffledMatrixA) {
|
|
257
|
+
tensorrt_llm::kernels::TrtllmGenBatchedGemmRunnerOptions getOptions(
|
|
258
|
+
btg::Dtype dtypeElt, btg::Dtype dtypeOut, int32_t tileTokensDim, bool useDeepSeekFp8,
|
|
259
|
+
bool useShuffledMatrixA, batchedGemm::gemm::MatrixLayout weightLayout) {
|
|
261
260
|
tensorrt_llm::kernels::TrtllmGenBatchedGemmRunnerOptions options = {
|
|
262
261
|
.eltType = dtypeElt,
|
|
263
262
|
.outputType = dtypeOut,
|
|
@@ -268,17 +267,19 @@ tensorrt_llm::kernels::TrtllmGenBatchedGemmRunnerOptions getOptions(btg::Dtype d
|
|
|
268
267
|
.transposeMmaOutput = true,
|
|
269
268
|
.tileSize = tileTokensDim,
|
|
270
269
|
.epilogueTileM = useDeepSeekFp8 ? 64 : 128,
|
|
271
|
-
.useShuffledMatrixA = useShuffledMatrixA
|
|
270
|
+
.useShuffledMatrixA = useShuffledMatrixA,
|
|
271
|
+
.weightLayout = weightLayout};
|
|
272
272
|
return options;
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
Runner::Runner(btg::Dtype dtypeElt, btg::Dtype outputDtype, bool useDeepSeekFp8, int tileTokensDim,
|
|
276
|
-
bool useShuffledMatrixA)
|
|
276
|
+
bool useShuffledMatrixA, batchedGemm::gemm::MatrixLayout weightLayout)
|
|
277
277
|
: mDtypeElt(dtypeElt),
|
|
278
278
|
mOutputDtype(outputDtype),
|
|
279
279
|
mTileTokensDim(tileTokensDim),
|
|
280
|
-
mRunner(tensorrt_llm::kernels::TrtllmGenBatchedGemmRunner(
|
|
281
|
-
mDtypeElt, mOutputDtype, mTileTokensDim, useDeepSeekFp8, useShuffledMatrixA
|
|
280
|
+
mRunner(tensorrt_llm::kernels::TrtllmGenBatchedGemmRunner(
|
|
281
|
+
getOptions(mDtypeElt, mOutputDtype, mTileTokensDim, useDeepSeekFp8, useShuffledMatrixA,
|
|
282
|
+
weightLayout))) {}
|
|
282
283
|
|
|
283
284
|
void Runner::run(void* permutedHiddenState, void* permutedHiddenStateScale, void* weights,
|
|
284
285
|
void* weightsScale, float* outputScalesScalar, void* output, void* outputScale,
|
|
@@ -336,11 +337,11 @@ std::vector<int64_t> Runner::getPassingConfigIndices() const {
|
|
|
336
337
|
|
|
337
338
|
namespace MoE {
|
|
338
339
|
Runner::Runner(btg::Dtype dtypeElt, bool useDeepSeekFp8, int32_t tileTokensDim,
|
|
339
|
-
bool useShuffledMatrixA)
|
|
340
|
-
: mPermuteGemm1(
|
|
341
|
-
|
|
340
|
+
bool useShuffledMatrixA, batchedGemm::gemm::MatrixLayout weightLayout)
|
|
341
|
+
: mPermuteGemm1(PermuteGemm1::Runner(dtypeElt, useDeepSeekFp8, tileTokensDim,
|
|
342
|
+
useShuffledMatrixA, weightLayout)),
|
|
342
343
|
mGemm2(Gemm2::Runner(dtypeElt, btg::Dtype::Bfloat16, useDeepSeekFp8, tileTokensDim,
|
|
343
|
-
useShuffledMatrixA)) {
|
|
344
|
+
useShuffledMatrixA, weightLayout)) {
|
|
344
345
|
auto const& gemm1PassingIndices = mPermuteGemm1.getPassingConfigIndices();
|
|
345
346
|
auto const& gemm2PassingIndices = mGemm2.getPassingConfigIndices();
|
|
346
347
|
|
|
@@ -37,6 +37,8 @@ void trtllm_mnnvl_all_reduce(at::Tensor& in, int64_t multicast_buffer_ptr, int64
|
|
|
37
37
|
int64_t token_dim = in.size(1);
|
|
38
38
|
|
|
39
39
|
// Validate input parameters
|
|
40
|
+
TORCH_CHECK(token_dim % (sizeof(float2) / sizeof(c_type)) == 0,
|
|
41
|
+
"token_dim must be divisible by ", sizeof(float2) / sizeof(c_type));
|
|
40
42
|
TORCH_CHECK(nranks >= 2 && nranks <= 64, "nranks must be between 2 and 64, got ", nranks);
|
|
41
43
|
TORCH_CHECK(rank >= 0 && rank < nranks, "rank must be between 0 and nranks-1, got ", rank);
|
|
42
44
|
TORCH_CHECK(out.has_value() || !wait_for_results,
|
|
@@ -117,4 +117,7 @@ from .sampling import top_k_top_p_sampling_from_probs as top_k_top_p_sampling_fr
|
|
|
117
117
|
from .sampling import top_p_renorm_probs as top_p_renorm_probs
|
|
118
118
|
from .sampling import top_p_sampling_from_probs as top_p_sampling_from_probs
|
|
119
119
|
from .sparse import BlockSparseAttentionWrapper as BlockSparseAttentionWrapper
|
|
120
|
+
from .sparse import (
|
|
121
|
+
VariableBlockSparseAttentionWrapper as VariableBlockSparseAttentionWrapper,
|
|
122
|
+
)
|
|
120
123
|
from .utils import next_positive_power_of_2 as next_positive_power_of_2
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.2.9rc2'
|
|
@@ -18,7 +18,7 @@ import logging
|
|
|
18
18
|
import platform
|
|
19
19
|
import sys
|
|
20
20
|
from dataclasses import dataclass
|
|
21
|
-
from typing import List
|
|
21
|
+
from typing import List, Optional
|
|
22
22
|
|
|
23
23
|
import pynvml
|
|
24
24
|
import torch
|
|
@@ -110,6 +110,26 @@ def test_cuda_memory_access(ptr: int, size: int, device_id: int) -> bool:
|
|
|
110
110
|
return False
|
|
111
111
|
|
|
112
112
|
|
|
113
|
+
def alloc_and_copy_to_cuda(host_ptr_array: List[int]) -> Optional[int]:
|
|
114
|
+
"""
|
|
115
|
+
A helper function that allocates memory on cuda and copies the data from the host to the device.
|
|
116
|
+
"""
|
|
117
|
+
if not host_ptr_array:
|
|
118
|
+
return None
|
|
119
|
+
|
|
120
|
+
ArrayType = ctypes.c_uint64 * len(host_ptr_array)
|
|
121
|
+
c_array = ArrayType(*host_ptr_array)
|
|
122
|
+
size_in_bytes = ctypes.sizeof(c_array)
|
|
123
|
+
|
|
124
|
+
device_ptr: cuda.CUdeviceptr = checkCudaErrors(cuda.cuMemAlloc(size_in_bytes))
|
|
125
|
+
checkCudaErrors(
|
|
126
|
+
cuda.cuMemcpyHtoD(device_ptr, ctypes.addressof(c_array), size_in_bytes)
|
|
127
|
+
)
|
|
128
|
+
# c_array should be freed by GC
|
|
129
|
+
|
|
130
|
+
return device_ptr
|
|
131
|
+
|
|
132
|
+
|
|
113
133
|
class MpiComm:
|
|
114
134
|
_comm: MPI.Intracomm = MPI.COMM_WORLD
|
|
115
135
|
|
|
@@ -423,7 +443,9 @@ class McastDeviceMemory:
|
|
|
423
443
|
# CUDA memory handles and pointers
|
|
424
444
|
self.mc_ptr = 0 # CUdeviceptr mMcPtr
|
|
425
445
|
self.uc_ptrs: List[int] = [] # std::vector<CUdeviceptr> mUcPtrs
|
|
426
|
-
self.
|
|
446
|
+
self.signal_pads: List[int] = [] # mSignalPads
|
|
447
|
+
self.signal_pads_dev = 0 # std::vector<CUdeviceptr> mSignalPadsDev
|
|
448
|
+
self.uc_ptrs_dev = 0
|
|
427
449
|
self.mc_handle = 0 # CUmemGenericAllocationHandle mMcHandle
|
|
428
450
|
self.uc_handles: List[int] = (
|
|
429
451
|
[]
|
|
@@ -475,14 +497,18 @@ class McastDeviceMemory:
|
|
|
475
497
|
raise NotImplementedError("Single-node NVLS allocation not implemented yet")
|
|
476
498
|
|
|
477
499
|
# Initialize signal pads
|
|
478
|
-
self.
|
|
500
|
+
self.signal_pads = [0] * self.group_size
|
|
479
501
|
for i in range(self.group_size):
|
|
480
|
-
self.
|
|
502
|
+
self.signal_pads[i] = self.uc_ptrs[i] + self.signal_pad_offset
|
|
481
503
|
if i == self.group_rank:
|
|
482
504
|
checkCudaErrors(
|
|
483
|
-
cuda.cuMemsetD8(self.
|
|
505
|
+
cuda.cuMemsetD8(self.signal_pads[i], 0, self.SIGNAL_PAD_SIZE)
|
|
484
506
|
)
|
|
485
507
|
|
|
508
|
+
# Create device pointers
|
|
509
|
+
self.signal_pads_dev = alloc_and_copy_to_cuda(self.signal_pads)
|
|
510
|
+
self.uc_ptrs_dev = alloc_and_copy_to_cuda(self.uc_ptrs)
|
|
511
|
+
|
|
486
512
|
def __del__(self):
|
|
487
513
|
"""Destructor - cleanup allocated memory"""
|
|
488
514
|
|
|
@@ -505,6 +531,12 @@ class McastDeviceMemory:
|
|
|
505
531
|
print(f"Destructor: CUDA context invalid, skipping cleanup: {e}")
|
|
506
532
|
return
|
|
507
533
|
|
|
534
|
+
# Free device pointers
|
|
535
|
+
if self.signal_pads_dev:
|
|
536
|
+
checkCudaErrors(cuda.cuMemFree(self.signal_pads_dev))
|
|
537
|
+
if self.uc_ptrs_dev:
|
|
538
|
+
checkCudaErrors(cuda.cuMemFree(self.uc_ptrs_dev))
|
|
539
|
+
|
|
508
540
|
# Unmap UC regions and release their handles
|
|
509
541
|
if hasattr(self, "uc_handles") and self.uc_handles:
|
|
510
542
|
for rank in range(self.group_size):
|
|
@@ -541,14 +573,22 @@ class McastDeviceMemory:
|
|
|
541
573
|
except Exception as e:
|
|
542
574
|
print(f"Destructor: Failed to release MC handle: {e}")
|
|
543
575
|
|
|
544
|
-
def
|
|
576
|
+
def get_signal_pad_ptrs_host(self) -> List[int]:
|
|
545
577
|
"""Get the raw array of signal pad pointers to all ranks (including self)"""
|
|
546
|
-
return self.
|
|
578
|
+
return self.signal_pads
|
|
547
579
|
|
|
548
|
-
def
|
|
580
|
+
def get_buffer_ptrs_host(self) -> List[int]:
|
|
549
581
|
"""Get the raw array of unicast pointers to all ranks (including self)"""
|
|
550
582
|
return self.uc_ptrs
|
|
551
583
|
|
|
584
|
+
def get_signal_pad_ptrs_dev(self) -> int:
|
|
585
|
+
"""Get the raw array of signal pad pointers to all ranks (including self)"""
|
|
586
|
+
return self.signal_pads_dev
|
|
587
|
+
|
|
588
|
+
def get_buffer_ptrs_dev(self) -> int:
|
|
589
|
+
"""Get the raw array of unicast pointers to all ranks (including self)"""
|
|
590
|
+
return self.uc_ptrs_dev
|
|
591
|
+
|
|
552
592
|
def get_unicast_ptr(self, rank: int) -> int:
|
|
553
593
|
"""Get the raw unicast pointer to a given rank"""
|
|
554
594
|
if rank >= len(self.uc_ptrs):
|
|
@@ -755,16 +795,8 @@ class McastDeviceMemory:
|
|
|
755
795
|
)
|
|
756
796
|
)
|
|
757
797
|
|
|
758
|
-
def get_multicast_ptr_as_int64(self) -> int:
|
|
759
|
-
"""Get multicast pointer as int64 (legacy compatibility)"""
|
|
760
|
-
return self.get_multicast_ptr()
|
|
761
|
-
|
|
762
|
-
def get_buffer_ptrs_dev_as_int64(self) -> int:
|
|
763
|
-
"""Get buffer pointers device as int64 (returning first UC pointer for now) (legacy compatibility)"""
|
|
764
|
-
return self.uc_ptrs[0] if self.uc_ptrs else 0
|
|
765
|
-
|
|
766
798
|
def lamport_initialize(self, rank: int, dtype: torch.dtype):
|
|
767
|
-
if dtype == torch.bfloat16:
|
|
799
|
+
if dtype == torch.bfloat16 or dtype == torch.float16:
|
|
768
800
|
neg_zero = 0x8000
|
|
769
801
|
dsize = 2
|
|
770
802
|
memset_func = cuda.cuMemsetD16
|
|
@@ -838,33 +870,6 @@ class McastGPUBuffer:
|
|
|
838
870
|
"""Get the raw multicast pointer"""
|
|
839
871
|
return self.mcast_device_memory.get_multicast_ptr()
|
|
840
872
|
|
|
841
|
-
def
|
|
842
|
-
"""Get the multicast pointer as int64"""
|
|
843
|
-
return self.get_multicast_ptr()
|
|
844
|
-
|
|
845
|
-
def get_buffer_ptrs_dev(self) -> List[int]:
|
|
873
|
+
def get_buffer_ptrs_dev(self) -> int:
|
|
846
874
|
"""Get the buffer pointers device array"""
|
|
847
875
|
return self.mcast_device_memory.get_buffer_ptrs_dev()
|
|
848
|
-
|
|
849
|
-
def get_buffer_ptrs_dev_as_int64(self) -> int:
|
|
850
|
-
"""Get the buffer pointers device as int64 (returning first UC pointer)"""
|
|
851
|
-
ptrs = self.get_buffer_ptrs_dev()
|
|
852
|
-
assert ptrs is not None
|
|
853
|
-
return ptrs[0] if ptrs else 0
|
|
854
|
-
|
|
855
|
-
def get_buffer_ptrs_dev_as_ctypes_ptr(self) -> int:
|
|
856
|
-
"""
|
|
857
|
-
Get buffer pointers as ctypes array pointer (equivalent to C++ void**).
|
|
858
|
-
Returns the address of a ctypes array that can be cast to int64_t and back to void**.
|
|
859
|
-
|
|
860
|
-
This matches the C++ pattern:
|
|
861
|
-
reinterpret_cast<int64_t>(reinterpret_cast<void**>(mUcPtrs.data()))
|
|
862
|
-
"""
|
|
863
|
-
# Create ctypes array of void pointers
|
|
864
|
-
ArrayType = ctypes.c_void_p * len(self.mcast_device_memory.uc_ptrs)
|
|
865
|
-
self._buffer_ptrs_array = ArrayType(
|
|
866
|
-
*self.mcast_device_memory.uc_ptrs
|
|
867
|
-
) # Keep reference to prevent GC
|
|
868
|
-
|
|
869
|
-
# Return the address of this array (equivalent to .data() in C++)
|
|
870
|
-
return ctypes.cast(self._buffer_ptrs_array, ctypes.c_void_p).value
|
{flashinfer_python-0.2.9rc1 → flashinfer_python-0.2.9rc2}/flashinfer/comm/trtllm_mnnvl_ar.py
RENAMED
|
@@ -184,9 +184,9 @@ def get_allreduce_mnnvl_workspace(
|
|
|
184
184
|
mpi_barrier()
|
|
185
185
|
|
|
186
186
|
# This is a buffer to maintain the state of this allreduce Op
|
|
187
|
-
# [Buffer_ptr, Clear_ptr, Buffer_size, atomic access counter]
|
|
187
|
+
# [Buffer_ptr, Clear_ptr, Buffer_size, num_tokens_prev, atomic access counter]
|
|
188
188
|
buffer_flags = torch.tensor(
|
|
189
|
-
[0, 2, max_num_elements, 0],
|
|
189
|
+
[0, 2, max_num_elements, 0, 0],
|
|
190
190
|
dtype=torch.uint32,
|
|
191
191
|
device=torch.device("cuda", mapping.local_rank),
|
|
192
192
|
)
|
|
@@ -1798,13 +1798,13 @@ class TrtllmGenDecodeModule:
|
|
|
1798
1798
|
max_seq_len: int,
|
|
1799
1799
|
bmm1_scale: float, # todo(Yingyi): add dynamic scale tensor later
|
|
1800
1800
|
bmm2_scale: float,
|
|
1801
|
-
sm_count: int,
|
|
1802
1801
|
window_left: int = -1,
|
|
1803
1802
|
out: Optional[torch.Tensor] = None,
|
|
1804
1803
|
) -> torch.Tensor:
|
|
1805
1804
|
if out is None:
|
|
1806
1805
|
out = torch.empty_like(query)
|
|
1807
|
-
|
|
1806
|
+
if self._sm_count is None:
|
|
1807
|
+
self._sm_count = get_device_sm_count(query.device)
|
|
1808
1808
|
self._op.trtllm_paged_attention_decode(
|
|
1809
1809
|
out,
|
|
1810
1810
|
query.unsqueeze(
|
|
@@ -1818,7 +1818,7 @@ class TrtllmGenDecodeModule:
|
|
|
1818
1818
|
bmm1_scale,
|
|
1819
1819
|
bmm2_scale,
|
|
1820
1820
|
window_left,
|
|
1821
|
-
|
|
1821
|
+
self._sm_count,
|
|
1822
1822
|
)
|
|
1823
1823
|
return out
|
|
1824
1824
|
|
|
@@ -1826,6 +1826,7 @@ class TrtllmGenDecodeModule:
|
|
|
1826
1826
|
pass
|
|
1827
1827
|
|
|
1828
1828
|
def __init__(self):
|
|
1829
|
+
self._sm_count: Optional[int] = None
|
|
1829
1830
|
self._mod = trtllm_gen_fmha_module()
|
|
1830
1831
|
self._op = self._mod.build_and_load()
|
|
1831
1832
|
from flashinfer.jit.cubin_loader import (
|