flashinfer-python 0.2.12__tar.gz → 0.2.14__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.14/LICENSE +229 -0
- flashinfer_python-0.2.14/PKG-INFO +194 -0
- flashinfer_python-0.2.14/csrc/cudnn_sdpa_kernel_launcher.cu +1209 -0
- flashinfer_python-0.2.14/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_instantiation.cu +57 -0
- flashinfer_python-0.2.14/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_kernels.cuh +4868 -0
- flashinfer_python-0.2.14/csrc/fused_moe/cutlass_backend/flashinfer_cutlass_fused_moe_sm100_ops.cu +1059 -0
- flashinfer_python-0.2.14/csrc/nv_internal/cpp/kernels/quantization.cu +345 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/detail/collective/mixed_input_utils.hpp +599 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_gated.inl +244 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_interleaved.inl +156 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_mixed_input.inl +240 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_gated.hpp +42 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_interleaved.hpp +41 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_mixed_input.hpp +41 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_array_mixed_input.hpp +42 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_gated.hpp +44 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_interleaved.hpp +42 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input_.hpp +1474 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_gated_tma_gmma_ss_warpspecialized.hpp +630 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_gated_tma_gmma_ss_warpspecialized_fp8.hpp +644 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_interleaved_tma_gmma_rs_warpspecialized_mixed_input.hpp +1528 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm_configs.h +435 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_fg_scalebias.cu +28 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_fg_scaleonly.cu +28 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_per_col.cu +28 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_fg_scalebias.cu +28 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_fg_scaleonly.cu +28 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_per_col.cu +28 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scalebias_bf16_out_bf16.cu +33 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scalebias_f16_out_f16.cu +33 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scaleonly_bf16_out_bf16.cu +33 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scaleonly_f16_out_f16.cu +33 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_per_col_f16_out_f16.cu +33 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_fg_scalebias.cu +26 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_fg_scaleonly.cu +26 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_per_col.cu +26 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_fg_scalebias.cu +26 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_fg_scaleonly.cu +26 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_per_col.cu +26 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm.h +138 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm_template.h +576 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm_template_sm90.h +282 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/launchers/fpA_intB_launcher_sm90.h +39 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/launchers/fpA_intB_launcher_sm90.inl +292 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/common.h +33 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_gemm_kernels.h +341 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_kernels.h +1042 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.inl +244 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_fp4.cu +23 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_fp4.cu +21 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch.h +929 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws_mixed_dtype.h +260 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_tma_warp_specialized_traits.h +107 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/quantization.cuh +842 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/kernels/quantization.h +78 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/thop/fp4Op.cpp +411 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.cpp +147 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.h +31 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.cpp +215 -0
- flashinfer_python-0.2.14/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.h +79 -0
- flashinfer_python-0.2.14/csrc/trtllm_allreduce_fusion.cu +87 -0
- flashinfer_python-0.2.14/csrc/trtllm_batched_gemm_runner.cu +444 -0
- flashinfer_python-0.2.14/csrc/trtllm_fmha_kernel_launcher.cu +464 -0
- flashinfer_python-0.2.14/csrc/trtllm_fused_moe_kernel_launcher.cu +1173 -0
- flashinfer_python-0.2.14/csrc/trtllm_fused_moe_routing_renormalize.cu +299 -0
- flashinfer_python-0.2.14/csrc/trtllm_fused_moe_runner.cu +551 -0
- flashinfer_python-0.2.14/csrc/trtllm_moe_allreduce_fusion.cu +137 -0
- flashinfer_python-0.2.14/custom_backend.py +113 -0
- flashinfer_python-0.2.14/flashinfer/__init__.py +132 -0
- flashinfer_python-0.2.14/flashinfer/_build_meta.py +1 -0
- flashinfer_python-0.2.14/flashinfer/aot.py +640 -0
- flashinfer_python-0.2.14/flashinfer/artifacts.py +110 -0
- flashinfer_python-0.2.14/flashinfer/autotuner.py +775 -0
- flashinfer_python-0.2.14/flashinfer/comm/__init__.py +42 -0
- flashinfer_python-0.2.14/flashinfer/comm/mnnvl.py +969 -0
- flashinfer_python-0.2.14/flashinfer/comm/trtllm_ar.py +1006 -0
- flashinfer_python-0.2.14/flashinfer/cuda_utils.py +55 -0
- flashinfer_python-0.2.14/flashinfer/cute_dsl/blockscaled_gemm.py +2835 -0
- flashinfer_python-0.2.14/flashinfer/cute_dsl/utils.py +69 -0
- flashinfer_python-0.2.14/flashinfer/fp4_quantization.py +554 -0
- flashinfer_python-0.2.14/flashinfer/fp8_quantization.py +201 -0
- flashinfer_python-0.2.14/flashinfer/fused_moe/__init__.py +44 -0
- flashinfer_python-0.2.14/flashinfer/fused_moe/core.py +1991 -0
- flashinfer_python-0.2.14/flashinfer/fused_moe/utils.py +250 -0
- flashinfer_python-0.2.14/flashinfer/gemm.py +2645 -0
- flashinfer_python-0.2.14/flashinfer/jit/attention/__init__.py +60 -0
- flashinfer_python-0.2.14/flashinfer/jit/attention/pytorch.py +1673 -0
- flashinfer_python-0.2.14/flashinfer/jit/attention/variants.py +169 -0
- flashinfer_python-0.2.14/flashinfer/jit/core.py +263 -0
- flashinfer_python-0.2.14/flashinfer/jit/cpp_ext.py +235 -0
- flashinfer_python-0.2.14/flashinfer/jit/cutlass_gemm/generate_kernels.py +956 -0
- flashinfer_python-0.2.14/flashinfer/prefill.py +3431 -0
- flashinfer_python-0.2.14/flashinfer/utils.py +693 -0
- flashinfer_python-0.2.14/flashinfer_python.egg-info/PKG-INFO +194 -0
- flashinfer_python-0.2.14/flashinfer_python.egg-info/SOURCES.txt +1572 -0
- flashinfer_python-0.2.14/flashinfer_python.egg-info/requires.txt +9 -0
- flashinfer_python-0.2.14/include/flashinfer/comm/trtllm_allreduce_fusion.cuh +1513 -0
- flashinfer_python-0.2.14/include/flashinfer/comm/trtllm_moe_allreduce_fusion.cuh +1494 -0
- flashinfer_python-0.2.14/include/flashinfer/fp4_layout.cuh +37 -0
- flashinfer_python-0.2.14/include/flashinfer/sampling.cuh +2218 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/batched_gemm/KernelRunner.h +135 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmInterface.h +780 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmOptions.h +380 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmGatedActOptions.h +214 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmOptions.h +1237 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParams.h +579 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParamsDecl.h +544 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelTraits.h +637 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/fmha/fmhaKernels.cuh +661 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/fmha/fmhaRunner.cuh +64 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/fmha/fmhaRunnerParams.h +363 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/fmha/kernelParams.h +707 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/fmha/lse.cuh +62 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/fused_moe/RoutingKernel.h +288 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/fused_moe/RoutingKernelTopK.cuh +197 -0
- flashinfer_python-0.2.14/include/flashinfer/trtllm/fused_moe/runner.h +382 -0
- flashinfer_python-0.2.14/include/flashinfer/utils.cuh +389 -0
- flashinfer_python-0.2.14/licenses/LICENSE.cutlass.txt +27 -0
- flashinfer_python-0.2.14/licenses/LICENSE.flashattention3.txt +29 -0
- flashinfer_python-0.2.14/licenses/LICENSE.fmt.txt +27 -0
- flashinfer_python-0.2.14/licenses/LICENSE.spdlog.txt +25 -0
- flashinfer_python-0.2.14/pyproject.toml +143 -0
- flashinfer_python-0.2.14/setup.py +109 -0
- flashinfer_python-0.2.14/tests/test_attention_sink.py +1090 -0
- flashinfer_python-0.2.14/tests/test_cute_dsl_blockscaled_gemm.py +255 -0
- flashinfer_python-0.2.14/tests/test_fp4_quantize.py +314 -0
- flashinfer_python-0.2.14/tests/test_groupwise_scaled_gemm_mxfp4.py +353 -0
- flashinfer_python-0.2.14/tests/test_sampling.py +573 -0
- flashinfer_python-0.2.14/tests/test_trtllm_allreduce_fusion.py +373 -0
- flashinfer_python-0.2.14/tests/test_trtllm_cutlass_fused_moe.py +1353 -0
- flashinfer_python-0.2.14/tests/test_trtllm_gen_attention.py +674 -0
- flashinfer_python-0.2.14/tests/test_trtllm_gen_fused_moe.py +2132 -0
- flashinfer_python-0.2.14/tests/test_trtllm_moe_allreduce_fusion.py +471 -0
- flashinfer_python-0.2.14/version.txt +1 -0
- flashinfer_python-0.2.12/LICENSE +0 -223
- flashinfer_python-0.2.12/NOTICE +0 -8
- flashinfer_python-0.2.12/PKG-INFO +0 -189
- flashinfer_python-0.2.12/csrc/cudnn_sdpa_kernel_launcher.cu +0 -1209
- flashinfer_python-0.2.12/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_instantiation.cu +0 -55
- flashinfer_python-0.2.12/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_kernels.cuh +0 -4703
- flashinfer_python-0.2.12/csrc/fused_moe/cutlass_backend/flashinfer_cutlass_fused_moe_sm100_ops.cu +0 -960
- flashinfer_python-0.2.12/csrc/nv_internal/cpp/kernels/quantization.cu +0 -426
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm_configs.h +0 -440
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/common.h +0 -24
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_gemm_kernels.h +0 -328
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_kernels.h +0 -982
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.inl +0 -240
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch.h +0 -909
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws_mixed_dtype.h +0 -256
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_tma_warp_specialized_traits.h +0 -104
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/kernels/quantization.cuh +0 -1021
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/kernels/quantization.h +0 -104
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/thop/fp4Op.cpp +0 -353
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.cpp +0 -141
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.h +0 -29
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.cpp +0 -214
- flashinfer_python-0.2.12/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.h +0 -79
- flashinfer_python-0.2.12/csrc/trtllm_allreduce_fusion.cu +0 -88
- flashinfer_python-0.2.12/csrc/trtllm_batched_gemm_runner.cu +0 -442
- flashinfer_python-0.2.12/csrc/trtllm_fmha_kernel_launcher.cu +0 -325
- flashinfer_python-0.2.12/csrc/trtllm_fmha_runner.cu +0 -50
- flashinfer_python-0.2.12/csrc/trtllm_fused_moe_kernel_launcher.cu +0 -1138
- flashinfer_python-0.2.12/csrc/trtllm_fused_moe_routing_renormalize.cu +0 -293
- flashinfer_python-0.2.12/csrc/trtllm_fused_moe_runner.cu +0 -541
- flashinfer_python-0.2.12/csrc/trtllm_moe_allreduce_fusion.cu +0 -137
- flashinfer_python-0.2.12/custom_backend.py +0 -113
- flashinfer_python-0.2.12/flashinfer/__init__.py +0 -127
- flashinfer_python-0.2.12/flashinfer/_build_meta.py +0 -1
- flashinfer_python-0.2.12/flashinfer/aot.py +0 -670
- flashinfer_python-0.2.12/flashinfer/artifacts.py +0 -110
- flashinfer_python-0.2.12/flashinfer/autotuner.py +0 -730
- flashinfer_python-0.2.12/flashinfer/comm/__init__.py +0 -42
- flashinfer_python-0.2.12/flashinfer/comm/mnnvl.py +0 -961
- flashinfer_python-0.2.12/flashinfer/comm/trtllm_ar.py +0 -1005
- flashinfer_python-0.2.12/flashinfer/cuda_utils.py +0 -45
- flashinfer_python-0.2.12/flashinfer/cute_dsl/blockscaled_gemm.py +0 -2816
- flashinfer_python-0.2.12/flashinfer/cute_dsl/utils.py +0 -38
- flashinfer_python-0.2.12/flashinfer/fp4_quantization.py +0 -461
- flashinfer_python-0.2.12/flashinfer/fp8_quantization.py +0 -194
- flashinfer_python-0.2.12/flashinfer/fused_moe/__init__.py +0 -40
- flashinfer_python-0.2.12/flashinfer/fused_moe/core.py +0 -1568
- flashinfer_python-0.2.12/flashinfer/fused_moe/utils.py +0 -248
- flashinfer_python-0.2.12/flashinfer/gemm.py +0 -2627
- flashinfer_python-0.2.12/flashinfer/jit/attention/__init__.py +0 -56
- flashinfer_python-0.2.12/flashinfer/jit/attention/pytorch.py +0 -1604
- flashinfer_python-0.2.12/flashinfer/jit/core.py +0 -262
- flashinfer_python-0.2.12/flashinfer/jit/cpp_ext.py +0 -211
- flashinfer_python-0.2.12/flashinfer/jit/cutlass_gemm/generate_kernels.py +0 -937
- flashinfer_python-0.2.12/flashinfer/prefill.py +0 -3307
- flashinfer_python-0.2.12/flashinfer/utils.py +0 -681
- flashinfer_python-0.2.12/flashinfer_python.egg-info/PKG-INFO +0 -189
- flashinfer_python-0.2.12/flashinfer_python.egg-info/SOURCES.txt +0 -1530
- flashinfer_python-0.2.12/flashinfer_python.egg-info/requires.txt +0 -8
- flashinfer_python-0.2.12/include/flashinfer/comm/trtllm_allreduce_fusion.cuh +0 -1471
- flashinfer_python-0.2.12/include/flashinfer/comm/trtllm_moe_allreduce_fusion.cuh +0 -1496
- flashinfer_python-0.2.12/include/flashinfer/sampling.cuh +0 -2218
- flashinfer_python-0.2.12/include/flashinfer/trtllm/batched_gemm/KernelRunner.h +0 -130
- flashinfer_python-0.2.12/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmInterface.h +0 -768
- flashinfer_python-0.2.12/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmOptions.h +0 -372
- flashinfer_python-0.2.12/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmGatedActOptions.h +0 -206
- flashinfer_python-0.2.12/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmOptions.h +0 -1217
- flashinfer_python-0.2.12/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParams.h +0 -579
- flashinfer_python-0.2.12/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParamsDecl.h +0 -519
- flashinfer_python-0.2.12/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelTraits.h +0 -638
- flashinfer_python-0.2.12/include/flashinfer/trtllm/fmha/fmhaKernels.cuh +0 -654
- flashinfer_python-0.2.12/include/flashinfer/trtllm/fmha/fmhaRunner.cuh +0 -48
- flashinfer_python-0.2.12/include/flashinfer/trtllm/fmha/fmhaRunnerParams.h +0 -354
- flashinfer_python-0.2.12/include/flashinfer/trtllm/fmha/gen_kernel_launcher.cuh +0 -21
- flashinfer_python-0.2.12/include/flashinfer/trtllm/fmha/kernelParams.h +0 -698
- flashinfer_python-0.2.12/include/flashinfer/trtllm/fused_moe/RoutingKernel.h +0 -285
- flashinfer_python-0.2.12/include/flashinfer/trtllm/fused_moe/RoutingKernelTopK.cuh +0 -196
- flashinfer_python-0.2.12/include/flashinfer/trtllm/fused_moe/runner.h +0 -356
- flashinfer_python-0.2.12/include/flashinfer/utils.cuh +0 -377
- flashinfer_python-0.2.12/pyproject.toml +0 -142
- flashinfer_python-0.2.12/setup.py +0 -108
- flashinfer_python-0.2.12/tests/test_attention_sink.py +0 -1251
- flashinfer_python-0.2.12/tests/test_cute_dsl_blockscaled_gemm.py +0 -271
- flashinfer_python-0.2.12/tests/test_fp4_quantize.py +0 -297
- flashinfer_python-0.2.12/tests/test_groupwise_scaled_gemm_mxfp4.py +0 -353
- flashinfer_python-0.2.12/tests/test_sampling.py +0 -550
- flashinfer_python-0.2.12/tests/test_trtllm_allreduce_fusion.py +0 -372
- flashinfer_python-0.2.12/tests/test_trtllm_cutlass_fused_moe.py +0 -1022
- flashinfer_python-0.2.12/tests/test_trtllm_gen_attention.py +0 -547
- flashinfer_python-0.2.12/tests/test_trtllm_gen_fused_moe.py +0 -2060
- flashinfer_python-0.2.12/tests/test_trtllm_moe_allreduce_fusion.py +0 -470
- flashinfer_python-0.2.12/version.txt +0 -1
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/axpby.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/clear.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/cooperative_copy.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/cooperative_gemm.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/copy.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/fill.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/functional.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/gemm.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/prefer.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/prefetch.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/tensor_algorithms.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/tensor_reduce.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/algorithm/tuple_algorithms.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/cluster_sm100.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/cluster_sm90.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/config.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/copy.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/copy_sm100.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/copy_sm100_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/copy_sm50.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/copy_sm75.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/copy_sm80.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/copy_sm90.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/copy_sm90_desc.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/copy_sm90_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm100.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm100_desc.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm100_umma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm120.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm61.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm70.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm75.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm80.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm89.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm90.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm90_desc.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/simd_sm100.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/tmem_allocator_sm100.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/arch/util.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_atom.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_im2col.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm50.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm75.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm80.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_im2col.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma_swizzle.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_atom.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm100.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm61.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm70.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm75.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm80.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm89.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/atom/partitioner.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/config.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/container/alignment.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/container/array.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/container/array_aligned.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/container/array_subbyte.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/container/bit_field.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/container/cuda_types.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/container/tuple.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/container/type_list.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/int_tuple.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/layout.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/layout_composed.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/numeric/arithmetic_tuple.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/numeric/complex.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/numeric/int.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/numeric/integer_sequence.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/numeric/integral_constant.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/numeric/integral_ratio.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/numeric/math.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/numeric/numeric_types.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/numeric/real.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/pointer.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/pointer_base.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/pointer_flagged.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/pointer_sparse.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/pointer_swizzle.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/stride.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/swizzle.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/swizzle_layout.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/tensor.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/tensor_impl.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/tensor_zip.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/underscore.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/util/debug.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/util/print.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/util/print_latex.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/util/print_svg.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/util/print_tensor.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cute/util/type_traits.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/aligned_buffer.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/arch.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/barrier.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/cache_operation.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/config.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/memory.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/memory_sm75.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/memory_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sm100.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sm50.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sm60.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sm61.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sm70.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sm75.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sm89.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sm90.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm89.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/reg_reconfig.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/simd.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/simd_sm60.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/simd_sm61.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/synclog.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/wmma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/wmma_sm70.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/wmma_sm72.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/arch/wmma_sm75.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/array.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/array_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/array_subbyte.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/barrier.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/bfloat16.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/blas3.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/blas3_types.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/block_striped.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/cluster_launch.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/constants.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_umma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/collective/collective_conv.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/collective/detail.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/collective/sm100_implicit_gemm_umma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/collective/sm90_implicit_gemm_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/conv2d_problem_size.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/conv3d_problem_size.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/convnd_problem_shape.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/convolution.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/detail.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/device/conv_universal_adapter.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/device/direct_convolution.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/conv_universal.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_dgrad.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_group_fprop.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_dgrad.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_wgrad.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/default_depthwise_fprop.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/direct_convolution.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_strided_dgrad.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/sm100_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/kernel/sm90_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/thread/depthwise_mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_tile_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_direct_conv_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_fixed_stride_dilation.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_direct_conv_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_filter_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_pipelined.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_core_with_lane_access_size.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_fprop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_pipelined.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_wgrad_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/conv/warp/scale_bias_relu_transform.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/coord.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/core_io.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/cuda_host_adapter.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/cutlass.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/blockwise_scale_layout.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/cluster.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/collective/mixed_input_utils.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/collective.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/dependent_false.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/helper_macros.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/layout.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/mainloop_fusion_helper_scale_factor.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/mma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/sm100_blockscaled_layout.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/detail/sm100_tmem_helper.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/device_kernel.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm100_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_epilogue.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue_array.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/detail.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/epilogue_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_nosmem.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_nosmem.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized_array.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized_bias_elementwise.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/callbacks.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/operations.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_topk_softmax.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/activation.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/conversion_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/detail.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_elementwise.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_relu.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_clamp.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_dgelu.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_drelu.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_gelu.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic_with_scaling.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_hardswish.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_leaky_relu.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu0.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_residual_block.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_sigmoid.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_silu.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_with_elementwise.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/reduction_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/thread/scale_type.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_direct_store.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_simt.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_simt.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/direct_store_epilogue_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base_streamk.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_depthwise.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_direct_store.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_gemm_k_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_smem_accumulator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_visitor_with_softmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor_callbacks.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_workspace.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_2x.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_compute.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_load.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_store.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitors.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/interleaved_epilogue.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_iterator_parameter.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_tile_thread_map.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine_layout_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_blas3.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_conv.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_direct_conv.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_predicates.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_strided_dgrad.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_mixed.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_simt.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/simt_policy.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_simt.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op_mixed.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/volta_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/epilogue/warp/wmma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/exmy_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/detail.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/dist_gemm_universal_wrapper.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/full_barrier.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/detail.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/dist_gemm_kernel_wrapper.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/full_barrier.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_1d_schedules.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_base_schedule.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/fast_math.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/float8.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/float_subbyte.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/floating_point_nvrtc.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/functional.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_9xBF16_umma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_umma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockwise_umma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_pipeline_carveout.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_simt_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_umma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_mma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockwise_mma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_mma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_common.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_sparse_config.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_config.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_gmma_builder.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder_decl.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma_decl.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/fp8_accumulation.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_array_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_array_tma_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm70_mma_twostage.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_array_multistage.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_multistage.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/base_grouped.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/default_gemm_configuration.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/ell_gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_array.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_batched.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_grouped.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/gemv.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/rank_k.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/symm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/device/trmm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/gemm_enumerated_types.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/group_array_problem_shape.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_ell_gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_planar_complex_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_broadcast.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemv.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/ell_gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_array.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_batched.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_pipelined.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex_array.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_streamk_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_transpose_operands.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_decl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_streamk.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor_streamk.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_batched_strided.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_sparse_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_universal_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_transpose_operands.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_k_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_mma_transform.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mma_transform.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_sparse_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm120_gemm_tma_warpspecialized_cooperative_asymmetric_dma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm_array.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/symm_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_detail.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/kernel/trmm_universal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/thread/mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm50.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm60.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm61.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_ell_mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_gemv_core.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_simt.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm70.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm75.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sparse_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_access_size.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_wmma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_with_reduction.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_trmm_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_sparse_mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_trmm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/gemv.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/index_remat.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_blas3_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_layernorm_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_pipelined.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_singlestage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_softmax_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_with_reduction_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle_streamk.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/layernorm_scale_bias_transform.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_mixed_input_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_policy.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fragment_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm70.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sparse.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_wmma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_wmma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/scale_bias_tile_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/softmax_scale_bias_transform.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm/warp/tile_iterator_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm_coord.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/gemm_coord.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/half.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/integer_subbyte.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/kernel_launch.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/layout/layout.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/layout/matrix.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/layout/permute.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/layout/pitch_linear.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/layout/tensor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm70.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm75.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/layout/vector.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/matrix.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/matrix_coord.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/matrix_shape.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/numeric_conversion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/numeric_size.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/numeric_types.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/pipeline/pipeline.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/pipeline/sm100_pipeline.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/pipeline/sm90_pipeline.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/pitch_linear_coord.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/platform/platform.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/predicate_vector.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/quaternion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/real.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/device/reduce_split_k.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_softmax_final.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_split_k.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/thread/reduce.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/thread/reduction_operators.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/reduction/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/relatively_equal.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/semaphore.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/subbyte_reference.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/tensor_coord.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/tensor_ref.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/tensor_ref_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/tensor_view.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/tensor_view_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/tfloat32.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/thread/matrix.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/trace.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/collective/sm90_wgmma_transpose.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/device/transform_universal_adapter.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/kernel/filter_format_transformer.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/kernel/sm90_sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/kernel/sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/pitch_linear_thread_map.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/thread/transpose.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/thread/unary_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear_direct_conv.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear_2dthreadtile.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/threadblock/vector_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/transform/warp/vector_fragment_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/uint128.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/version.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/wmma_array.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/include/cutlass/workspace.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/GPU_Clock.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/command_line.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/cublas_wrappers.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/debug.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_dump.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_groupnorm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_layernorm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_memory.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nchw_to_nhwc.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_padding.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_pooling.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_to_nchw.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_rmsnorm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/device_utils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/distribution.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/exceptions.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/gett_commandline.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/helper_cuda.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/host_reorder.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/host_uncompress.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/index_sequence.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/mixed_dtype_utils.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/packed_stride.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/print_error.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/inner_product.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/linear_to_coordinate.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/convolution.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gett.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_elementwise.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_compare.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_fill.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_relu.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/thread/gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/conv.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/convolution.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/error_metrics.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gett.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_k_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_copy.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_elementwise.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_foreach.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_norm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm_complex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/tensor_view_io.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/cutlass/tools/util/include/cutlass/util/type_traits.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/async.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/async_logger-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/async_logger.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/cfg/argv.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/cfg/env.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/cfg/helpers-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/cfg/helpers.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/common-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/common.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/backtracer-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/backtracer.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/circular_q.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/console_globals.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/file_helper-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/file_helper.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/fmt_helper.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/log_msg-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/log_msg.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/mpmc_blocking_q.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/null_mutex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/os-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/os.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/periodic_worker-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/periodic_worker.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/registry-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/registry.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/synchronous_factory.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/tcp_client-windows.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/tcp_client.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/thread_pool-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/thread_pool.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/udp_client-windows.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/udp_client.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/details/windows_include.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bin_to_hex.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/args.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/chrono.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/color.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/compile.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/core.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/fmt.license.rst +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/format-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/format.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/locale.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/os.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/ostream.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/printf.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/ranges.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/std.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/bundled/xchar.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/chrono.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/compile.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/fmt.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/ostr.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/ranges.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/std.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fmt/xchar.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/formatter.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/fwd.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/logger-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/logger.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/mdc.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/pattern_formatter-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/pattern_formatter.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/android_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/base_sink-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/base_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/callback_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/daily_file_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/dist_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/dup_filter_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/hourly_file_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/kafka_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/mongo_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/msvc_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/null_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/ostream_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/qt_sinks.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/ringbuffer_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/sink-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/syslog_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/systemd_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/tcp_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/udp_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/win_eventlog_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/spdlog-inl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/spdlog.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/stopwatch.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/tweakme.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/3rdparty/spdlog/include/spdlog/version.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/README.md +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/activation.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/aot_extension_utils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_attention.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_attention_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_attention_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_attention_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode_config.inc +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode_mla_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode_mla_cute_sm80.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode_mla_plan.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode_mla_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_decode_mla_run.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_mla_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_mla_plan.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_mla_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_mla_run.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_mla_sm90_plan.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_mla_sm90_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_mla_sm90_run.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_config.inc +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_fp8_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_fp8_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_fp8_sm90.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_ragged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_sm90_config.inc +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/batch_prefill_sm90_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/blackwell_fmha_plan.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/bmm_fp8.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/cascade.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/cudnn_sdpa_utils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/cutlass_mla.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_cascade_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_gemm_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_gemm_sm90_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_mla_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_norm_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_ops_sm90.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_page_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_quantization_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_rope_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/flashinfer_sampling_ops.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/fmha_cutlass_sm100.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/fmha_cutlass_sm100_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/fp4_gemm_cutlass.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/fp4_gemm_cutlass.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/fp8_gemm_cutlass.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/fp8_gemm_cutlass.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/gemm_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/gemm_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/gemm_sm100_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/group_gemm.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/group_gemm_fp8_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/group_gemm_fp8_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/group_gemm_mxfp4_groupwise_sm100.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/group_gemm_mxfp4_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/group_gemm_sm100_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/group_gemm_sm90.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/group_gemm_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/logging.cc +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/norm.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/cpp/common/envUtils.cpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/cpp/common/logger.cpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/cpp/common/memoryUtils.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/cpp/common/stringUtils.cpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/cpp/common/tllmException.cpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/NvInferRuntime.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/assert.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/cudaBf16Wrapper.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/cudaFp8Utils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/cudaUtils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/dataType.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/logger.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/quantization.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/stringUtils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/include/tensorrt_llm/common/tllmException.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/common/cublasMMWrapper.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/common/cudaBf16Fallbacks.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/common/cudaDriverWrapper.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/common/cudaTypeUtils.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/common/envUtils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/common/memoryUtils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/common/quantTypeUtils.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/common/reduceKernelUtils.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/common/workspace.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_red_global.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_traits_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/communication/collective/sm90_allreduce_nvls_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/compute_occupancy.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/collective/epilogue_moe_finalize.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/fusion/sm90_visitor_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/thread/fused_activations.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue_helpers.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/default_fpA_intB_traits.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_routine.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_moe_problem_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_universal_allreduce.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/mixed_gemm_B_layout.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cute_util.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cutlass_kernel.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_problem_visitor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/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.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma_bf16.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_base.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_finegrained.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_percol.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_finegrained.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_percol.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/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.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_dequantizer.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/interleaved_numeric_conversion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/system_barrier.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/tile_interleaved_layout.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/transform/threadblock/fine_grained_scale_zero_iterator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/util/gather_tensor.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/weight_only_quant_op.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.cpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_type_conversion.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm_stub.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/cutlass_kernel_selector.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_util_kernels.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.inl +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/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.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_bf16.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_fp8.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint4.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint8.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_fp16.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint4.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint8.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp32_fp32.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp4_fp4.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp4.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp8.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_uint4.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_tma_warp_specialized_input.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.cpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/runtime/torchUtils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nv_internal/tensorrt_llm/thop/thUtils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/nvshmem_binding.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/page.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/pod.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/pod_config.inc +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/pod_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/pod_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/pod_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/pytorch_conversion_utils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/pytorch_extension_utils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/quantization.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/renorm.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/rope.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/runtime_utils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/sampling.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_decode.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_decode_config.inc +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_decode_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_config.inc +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_fp8_sm90.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_fp8_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_sm90_config.inc +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_sm90_jit_pybind.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/single_prefill_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/trtllm_allreduce.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/trtllm_alltoall.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/trtllm_fused_moe_dev_kernel.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/trtllm_fused_moe_routing_deepseek.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/trtllm_fused_moe_routing_llama4.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/trtllm_gemm_runner.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/trtllm_mnnvl_allreduce.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/csrc/vllm_custom_all_reduce.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/__main__.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/activation.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/attention.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/cascade.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/comm/cuda_ipc.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/comm/dlpack_utils.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/comm/mapping.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/comm/nvshmem.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/comm/nvshmem_allreduce.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/comm/trtllm_alltoall.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/comm/trtllm_mnnvl_ar.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/comm/vllm_ar.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/cudnn/__init__.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/cudnn/decode.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/cudnn/prefill.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/decode.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/deep_gemm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/green_ctx.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/jit/__init__.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/jit/activation.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/jit/attention/tvm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/jit/attention/utils.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/jit/cubin_loader.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/jit/cutlass_gemm/__init__.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/jit/cutlass_gemm/cutlass_library.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/jit/env.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/jit/utils.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/__init__.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/compiler.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/fusion_rules.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/legalization.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/op.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/operators.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/pipeline.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/processors.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/types.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/logits_processor/validators.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/mla.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/norm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/page.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/pod.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/profiler/__init__.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/py.typed +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/quantization.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/rope.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/sampling.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/sparse.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/testing/__init__.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/testing/utils.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/tllm_utils.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/__init__.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/activation.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/cascade.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/gemm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/kernels/__init__.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/kernels/activation.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/kernels/cascade.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/kernels/norm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/kernels/quant.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/kernels/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/norm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/page.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/triton/utils.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer/tuning_configs/v0_1_trtllm_fused_moe_NVIDIA_B200.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer_python.egg-info/dependency_links.txt +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/flashinfer_python.egg-info/top_level.txt +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/activation.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/allocator.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/arch_condition.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/collective/fmha_common.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/collective/fmha_fusion.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_mainloop_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_epilogue_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_mainloop_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/common/pow_2.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/device/fmha.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/device/sm100_mla.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/fmha_cutlass_sm100.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/kernel/fmha_options.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/kernel/fmha_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/kernel/gather_tensor.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_fwd_kernel_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_gen_kernel_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_reduction.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/kernel/sm100_mla_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/blackwell/plan.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/cascade.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/cutlass_mla.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/decode.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/decode_mla_cute_sm80.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/default_decode_params.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/default_prefill_params.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/heap.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/attention_updater.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/block_sparse_gather.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/default_params.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/epilogue.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/mainloop.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/named_barrier.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/quantization/epilogue.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/quantization/kernel_traits.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/quantization/mainloop_load.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/quantization/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/quantization/mainloop_sparse_load.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/quantization/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/sparse_mainloop.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/tile_scheduler.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/utils.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/variant_helper.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper/variants.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/hopper.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/mask.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/mla.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/mla_hopper.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/mla_params.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/persistent.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/persistent_template.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/pod.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/prefill.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/scheduler.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/state.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/variant_helper.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention/variants.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/attention_impl.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/comm/trtllm_allreduce.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/comm/trtllm_alltoall.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/comm/trtllm_mnnvl_allreduce.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/comm/vllm_custom_all_reduce.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/cp_async.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/cubin_loader.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/cutlass_utils.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/exception.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/fastdiv.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/fp16.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/frag_layout_swizzle.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/bmm_fp8.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/cutlass_gemm_configs.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/fp4_gemm_cutlass.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/fp4_gemm_cutlass_template.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/fp4_gemm_template_sm100.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/fp8_gemm_cutlass.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/fp8_gemm_cutlass_template.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/fp8_gemm_template_sm100.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/gemm_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/group_gemm.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/group_gemm_fp8_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/group_gemm_lora.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/group_gemm_mxfp4_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/group_gemm_sm90.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/gemm/group_gemv.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/layout.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/logging.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/math.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/mma.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/norm.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/page.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/permuted_smem.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/pos_enc.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/profiler.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/quantization.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmEnums.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/Enums.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/TmaDescriptor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CommonUtils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CudaKernelLauncher.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/DtypeDecl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/MmaDecl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/SfLayoutDecl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/common/cudaBf16Fallbacks.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/common/cudaBf16Wrapper.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/common/cudaFp8Utils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/common/cudaTypeUtils.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/common/cudaUtils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/common.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/fmha/cubin/kernelMetaInfo.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/fmha/decoder_impl_common.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/fmha/decoder_params.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/fused_moe/DevKernel.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/fused_moe/IntFastDiv.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/fused_moe/RoutingKernel.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/Enums.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/GemmInterface.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/GemmOptions.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelParams.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelTraits.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/TmaDescriptor.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/CommonUtils.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/CudaKernelLauncher.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/DtypeDecl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/MmaDecl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/SfLayoutDecl.h +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/include/flashinfer/vec_dtypes.cuh +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/setup.cfg +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_activation.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_alibi.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_attention_sink_blackwell.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_batch_attention.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_batch_decode_kernels.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_batch_prefill.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_batch_prefill_kernels.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_blackwell_fmha.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_block_sparse.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_block_sparse_indices_to_vector_sparse_offsets.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_bmm_fp8.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_create_ipc_buffer.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_cudnn_decode.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_cudnn_prefill.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_cudnn_prefill_deepseek.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_decode_fp8_calibration_scale.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_decode_prefill_lse.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_deepseek_mla.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_fp4_tensor_torch_cute.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_fp8_prefill.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_fp8_quantize.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_green_ctx.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_group_gemm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_groupwise_scaled_gemm_fp8.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_hopper.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_hopper_fp8_attention.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_jit_example.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_jit_warmup.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_logits_cap.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_logits_processor.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_mla_decode_kernel.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_mla_page.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_mm_fp4.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_mnnvl_memory.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_non_contiguous_decode.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_non_contiguous_prefill.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_norm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_nvshmem.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_nvshmem_allreduce.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_page.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_pod_kernels.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_quantization.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_rope.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_shared_prefix_kernels.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_single_prefill.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_sliding_window.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_tensor_cores_decode.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_triton_cascade.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_trtllm_allreduce.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_trtllm_alltoall.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_trtllm_gen_mla.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_trtllm_mnnvl_allreduce.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_trtllm_moe_allreduce_fusion_finalize.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tests/test_vllm_custom_allreduce.py +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_decode.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_decode_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_mla_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_mla_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_mla_plan.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_mla_run.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_prefill.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_prefill_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_prefill_sm90.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/batch_prefill_sm90_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/sampling.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/sampling_jit_tvm_binding.cu +0 -0
- {flashinfer_python-0.2.12 → flashinfer_python-0.2.14}/tvm_binding/tvm_binding_utils.h +0 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
202
|
+
|
|
203
|
+
-------------------------------------------------------------------------------------------------
|
|
204
|
+
Some of the code in this project are adapted from other open-source projects with different
|
|
205
|
+
licenses. This product also bundles some third-party components under other open source licenses.
|
|
206
|
+
This section summarizes those components and their licenses.
|
|
207
|
+
See licenses/ for text of these licenses.
|
|
208
|
+
|
|
209
|
+
BSD 3-Clause License
|
|
210
|
+
--------------------
|
|
211
|
+
|
|
212
|
+
include/flashinfer/attention/hopper/epilogue.cuh
|
|
213
|
+
include/flashinfer/attention/hopper/mainloop.cuh
|
|
214
|
+
include/flashinfer/attention/hopper/kernel_traits.cuh
|
|
215
|
+
include/flashinfer/attention/hopper/named_barrier.cuh
|
|
216
|
+
include/flashinfer/attention/hopper/tile_scheduler.cuh
|
|
217
|
+
include/flashinfer/attention/hopper/utils.cuh
|
|
218
|
+
|
|
219
|
+
BSD 3-Clause "New" License
|
|
220
|
+
--------------------------
|
|
221
|
+
|
|
222
|
+
3rdparty/cutlass
|
|
223
|
+
include/flashinfer/attention/hopper/block_sparse_gather.cuh
|
|
224
|
+
|
|
225
|
+
MIT License
|
|
226
|
+
-----------
|
|
227
|
+
|
|
228
|
+
3rdparty/spdlog
|
|
229
|
+
3rdparty/spdlog/include/spdlog/fmt/bundled (fmt library)
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flashinfer-python
|
|
3
|
+
Version: 0.2.14
|
|
4
|
+
Summary: FlashInfer: Kernel Library for LLM Serving
|
|
5
|
+
Author: FlashInfer team
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/flashinfer-ai/flashinfer
|
|
8
|
+
Requires-Python: <4.0,>=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
License-File: licenses/LICENSE.cutlass.txt
|
|
12
|
+
License-File: licenses/LICENSE.flashattention3.txt
|
|
13
|
+
License-File: licenses/LICENSE.fmt.txt
|
|
14
|
+
License-File: licenses/LICENSE.spdlog.txt
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: torch
|
|
17
|
+
Requires-Dist: ninja
|
|
18
|
+
Requires-Dist: requests
|
|
19
|
+
Requires-Dist: cuda-python<=12.9
|
|
20
|
+
Requires-Dist: pynvml
|
|
21
|
+
Requires-Dist: einops
|
|
22
|
+
Requires-Dist: packaging>=24.2
|
|
23
|
+
Requires-Dist: nvidia-cudnn-frontend>=1.13.0
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
Dynamic: requires-dist
|
|
26
|
+
|
|
27
|
+
<p align="center">
|
|
28
|
+
<picture>
|
|
29
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/flashinfer-ai/web-data/blob/main/logo/FlashInfer-black-background.png?raw=true">
|
|
30
|
+
<img alt="FlashInfer" src="https://github.com/flashinfer-ai/web-data/blob/main/logo/FlashInfer-white-background.png?raw=true" width=55%>
|
|
31
|
+
</picture>
|
|
32
|
+
</p>
|
|
33
|
+
<h1 align="center">
|
|
34
|
+
Kernel Library for LLM Serving
|
|
35
|
+
</h1>
|
|
36
|
+
|
|
37
|
+
<p align="center">
|
|
38
|
+
| <a href="https://flashinfer.ai"><b>Blog</b></a> | <a href="https://docs.flashinfer.ai"><b>Documentation</b></a> | <a href="https://join.slack.com/t/flashinfer/shared_invite/zt-379wct3hc-D5jR~1ZKQcU00WHsXhgvtA"><b>Slack</b></a> | <a href="https://github.com/orgs/flashinfer-ai/discussions"><b>Discussion Forum</b></a> |
|
|
39
|
+
</p>
|
|
40
|
+
|
|
41
|
+
[](https://ci.tlcpack.ai/job/flashinfer-ci/job/main/)
|
|
42
|
+
[](https://github.com/flashinfer-ai/flashinfer/actions/workflows/release_wheel.yml)
|
|
43
|
+
[](https://github.com/flashinfer-ai/flashinfer/actions/workflows/build-doc.yml)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
FlashInfer is a library and kernel generator for Large Language Models that provides high-performance implementation of LLM GPU kernels such as FlashAttention, SparseAttention, PageAttention, Sampling, and more. FlashInfer focuses on LLM serving and inference, and delivers state-of-the-art performance across diverse scenarios.
|
|
47
|
+
|
|
48
|
+
Check our [v0.2 release blog](https://flashinfer.ai/2024/12/16/flashinfer-v02-release.html) for new features!
|
|
49
|
+
|
|
50
|
+
The core features of FlashInfer include:
|
|
51
|
+
1. **Efficient Sparse/Dense Attention Kernels**: Efficient single/batch attention for sparse(paged)/dense KV-storage on CUDA Cores and Tensor Cores (both FA2 & FA3) templates. The vector-sparse attention can achieve 90% of the bandwidth of dense kernels with same problem size.
|
|
52
|
+
2. **Load-Balanced Scheduling**: FlashInfer decouples `plan`/`run` stage of attention computation where we schedule the computation of variable-length inputs in `plan` stage to alleviate load-imbalance issue.
|
|
53
|
+
3. **Memory Efficiency**: FlashInfer offers [Cascade Attention](https://docs.flashinfer.ai/api/cascade.html#flashinfer.cascade.MultiLevelCascadeAttentionWrapper) for hierarchical KV-Cache, and implements Head-Query fusion for accelerating Grouped-Query Attention, and efficient kernels for low-precision attention and fused-RoPE attention for compressed KV-Cache.
|
|
54
|
+
4. **Customizable Attention**: Bring your own attention variants through JIT-compilation.
|
|
55
|
+
5. **CUDAGraph and torch.compile Compatibility**: FlashInfer kernels can be captured by CUDAGraphs and torch.compile for low-latency inference.
|
|
56
|
+
6. **Efficient LLM-specific Operators**: High-Performance [fused kernel for Top-P, Top-K/Min-P sampling](https://docs.flashinfer.ai/api/sampling.html) without the need to sorting.
|
|
57
|
+
|
|
58
|
+
FlashInfer supports PyTorch, TVM and C++ (header-only) APIs, and can be easily integrated into existing projects.
|
|
59
|
+
|
|
60
|
+
## News
|
|
61
|
+
- [Mar 10, 2025] [Blog Post](https://flashinfer.ai/2025/03/10/sampling.html) Sorting-Free GPU Kernels for LLM Sampling, which explains the design of sampling kernels in FlashInfer.
|
|
62
|
+
- [Mar 1, 2025] Checkout flashinfer's [intra-kernel profiler](https://github.com/flashinfer-ai/flashinfer/tree/main/profiler) for visualizing the timeline of each threadblock in GPU kernels.
|
|
63
|
+
- [Dec 16, 2024] [Blog Post](https://flashinfer.ai/2024/12/16/flashinfer-v02-release.html) FlashInfer 0.2 - Efficient and Customizable Kernels for LLM Inference Serving
|
|
64
|
+
- [Sept 2024] We've launched a [Slack](https://join.slack.com/t/flashinfer/shared_invite/zt-2r93kj2aq-wZnC2n_Z2~mf73N5qnVGGA) workspace for Flashinfer users and developers. Join us for timely support, discussions, updates and knowledge sharing!
|
|
65
|
+
- [Jan 31, 2024] [Blog Post](https://flashinfer.ai/2024/01/08/cascade-inference.html) Cascade Inference: Memory-Efficient Shared Prefix Batch Decoding
|
|
66
|
+
- [Jan 31, 2024] [Blog Post](https://flashinfer.ai/2024/01/03/introduce-flashinfer.html) Accelerating Self-Attentions for LLM Serving with FlashInfer
|
|
67
|
+
|
|
68
|
+
## Getting Started
|
|
69
|
+
|
|
70
|
+
Using our PyTorch API is the easiest way to get started:
|
|
71
|
+
|
|
72
|
+
### Install from PIP
|
|
73
|
+
|
|
74
|
+
FlashInfer is available as a Python package for Linux on PyPI. You can install it with the following command:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
pip install flashinfer-python
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
### Install from Source
|
|
81
|
+
|
|
82
|
+
Alternatively, build FlashInfer from source:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
git clone https://github.com/flashinfer-ai/flashinfer.git --recursive
|
|
86
|
+
cd flashinfer
|
|
87
|
+
python -m pip install -v .
|
|
88
|
+
|
|
89
|
+
# for development & contribution, install in editable mode
|
|
90
|
+
python -m pip install --no-build-isolation -e . -v
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
To pre-compile essential kernels ahead-of-time (AOT), run the following command:
|
|
94
|
+
|
|
95
|
+
```bash
|
|
96
|
+
# Set target CUDA architectures
|
|
97
|
+
export TORCH_CUDA_ARCH_LIST="7.5 8.0 8.9 9.0a 10.0a"
|
|
98
|
+
# Build AOT kernels. Will produce AOT kernels in aot-ops/
|
|
99
|
+
python -m flashinfer.aot
|
|
100
|
+
# Build AOT wheel
|
|
101
|
+
python -m build --no-isolation --wheel
|
|
102
|
+
# Install AOT wheel
|
|
103
|
+
python -m pip install dist/flashinfer_*.whl
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
For more details, refer to the [Install from Source documentation](https://docs.flashinfer.ai/installation.html#install-from-source).
|
|
107
|
+
|
|
108
|
+
### Trying it out
|
|
109
|
+
|
|
110
|
+
Below is a minimal example of using FlashInfer's single-request decode/append/prefill attention kernels:
|
|
111
|
+
|
|
112
|
+
```python
|
|
113
|
+
import torch
|
|
114
|
+
import flashinfer
|
|
115
|
+
|
|
116
|
+
kv_len = 2048
|
|
117
|
+
num_kv_heads = 32
|
|
118
|
+
head_dim = 128
|
|
119
|
+
|
|
120
|
+
k = torch.randn(kv_len, num_kv_heads, head_dim).half().to(0)
|
|
121
|
+
v = torch.randn(kv_len, num_kv_heads, head_dim).half().to(0)
|
|
122
|
+
|
|
123
|
+
# decode attention
|
|
124
|
+
|
|
125
|
+
num_qo_heads = 32
|
|
126
|
+
q = torch.randn(num_qo_heads, head_dim).half().to(0)
|
|
127
|
+
|
|
128
|
+
o = flashinfer.single_decode_with_kv_cache(q, k, v) # decode attention without RoPE on-the-fly
|
|
129
|
+
o_rope_on_the_fly = flashinfer.single_decode_with_kv_cache(q, k, v, pos_encoding_mode="ROPE_LLAMA") # decode with LLaMA style RoPE on-the-fly
|
|
130
|
+
|
|
131
|
+
# append attention
|
|
132
|
+
append_qo_len = 128
|
|
133
|
+
q = torch.randn(append_qo_len, num_qo_heads, head_dim).half().to(0) # append attention, the last 128 tokens in the KV-Cache are the new tokens
|
|
134
|
+
o = flashinfer.single_prefill_with_kv_cache(q, k, v, causal=True) # append attention without RoPE on-the-fly, apply causal mask
|
|
135
|
+
o_rope_on_the_fly = flashinfer.single_prefill_with_kv_cache(q, k, v, causal=True, pos_encoding_mode="ROPE_LLAMA") # append attention with LLaMA style RoPE on-the-fly, apply causal mask
|
|
136
|
+
|
|
137
|
+
# prefill attention
|
|
138
|
+
qo_len = 2048
|
|
139
|
+
q = torch.randn(qo_len, num_qo_heads, head_dim).half().to(0) # prefill attention
|
|
140
|
+
o = flashinfer.single_prefill_with_kv_cache(q, k, v, causal=False) # prefill attention without RoPE on-the-fly, do not apply causal mask
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
Check out [documentation](https://docs.flashinfer.ai/) for usage of batch decode/append/prefill kernels and shared-prefix cascading kernels.
|
|
144
|
+
|
|
145
|
+
## Custom Attention Variants
|
|
146
|
+
|
|
147
|
+
Starting from FlashInfer v0.2, users can customize their own attention variants with additional parameters. For more details, refer to our [JIT examples](https://github.com/flashinfer-ai/flashinfer/blob/main/tests/test_jit_example.py).
|
|
148
|
+
|
|
149
|
+
## C++ API and TVM Bindings
|
|
150
|
+
|
|
151
|
+
FlashInfer also provides C++ API and TVM bindings, please refer to [documentation](https://docs.flashinfer.ai/) for more details.
|
|
152
|
+
|
|
153
|
+
## Adoption
|
|
154
|
+
|
|
155
|
+
We are thrilled to share that FlashInfer is being adopted by many cutting-edge projects, including but not limited to:
|
|
156
|
+
- [MLC-LLM](https://github.com/mlc-ai/mlc-llm)
|
|
157
|
+
- [Punica](https://github.com/punica-ai/punica)
|
|
158
|
+
- [SGLang](https://github.com/sgl-project/sglang)
|
|
159
|
+
- [ScaleLLM](https://github.com/vectorch-ai/ScaleLLM)
|
|
160
|
+
- [vLLM](https://github.com/vllm-project/vllm)
|
|
161
|
+
- [TGI](https://github.com/huggingface/text-generation-inference)
|
|
162
|
+
- [lorax](https://github.com/predibase/lorax)
|
|
163
|
+
- [TensorRT-LLM](https://github.com/NVIDIA/TensorRT-LLM)
|
|
164
|
+
- [LightLLM](https://github.com/ModelTC/lightllm)
|
|
165
|
+
|
|
166
|
+
## Acknowledgement
|
|
167
|
+
|
|
168
|
+
FlashInfer is inspired by [FlashAttention 1&2](https://github.com/dao-AILab/flash-attention/), [vLLM](https://github.com/vllm-project/vllm), [stream-K](https://arxiv.org/abs/2301.03598), [cutlass](https://github.com/nvidia/cutlass) and [AITemplate](https://github.com/facebookincubator/AITemplate) projects.
|
|
169
|
+
|
|
170
|
+
## Citation
|
|
171
|
+
|
|
172
|
+
If you find FlashInfer helpful in your project or research, please consider citing our [paper](https://arxiv.org/abs/2501.01005):
|
|
173
|
+
|
|
174
|
+
```bibtex
|
|
175
|
+
@article{ye2025flashinfer,
|
|
176
|
+
title = {FlashInfer: Efficient and Customizable Attention Engine for LLM Inference Serving},
|
|
177
|
+
author = {
|
|
178
|
+
Ye, Zihao and
|
|
179
|
+
Chen, Lequn and
|
|
180
|
+
Lai, Ruihang and
|
|
181
|
+
Lin, Wuwei and
|
|
182
|
+
Zhang, Yineng and
|
|
183
|
+
Wang, Stephanie and
|
|
184
|
+
Chen, Tianqi and
|
|
185
|
+
Kasikci, Baris and
|
|
186
|
+
Grover, Vinod and
|
|
187
|
+
Krishnamurthy, Arvind and
|
|
188
|
+
Ceze, Luis
|
|
189
|
+
},
|
|
190
|
+
journal = {arXiv preprint arXiv:2501.01005},
|
|
191
|
+
year = {2025},
|
|
192
|
+
url = {https://arxiv.org/abs/2501.01005}
|
|
193
|
+
}
|
|
194
|
+
```
|