flashinfer-python 0.4.0rc2__tar.gz → 0.4.0rc4__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.4.0rc4/3rdparty/cutlass/include/cute/atom/copy_atom.hpp +691 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cute/atom/mma_atom.hpp +705 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/detail/collective/mixed_input_utils.hpp +1249 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm100_builder.inl +1784 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_array_tma_warpspecialized.hpp +1245 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/epilogue/dispatch_policy.hpp +302 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_mixed_tma_cpasync_umma_builder.inl +274 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_umma_builder.inl +300 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_mixed_tma_cpasync_umma_builder.inl +171 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_umma_builder.inl +328 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_common.inl +812 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_gmma_builder.inl +1178 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder.hpp +62 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma.hpp +84 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_mixed_tma_cpasync_warpspecialized.hpp +1043 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_mixed_tma_cpasync_warpspecialized.hpp +758 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_mixed_input.hpp +1296 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +1245 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +1102 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/dispatch_policy.hpp +1430 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/group_array_problem_shape.hpp +143 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.hpp +81 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized.hpp +1147 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_mixed_tma_cpasync_warpspecialized.hpp +1011 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp +963 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mma_transform.hpp +1068 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_group.hpp +335 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/kernel/sm103_blockscaled_gemm_array_tma_warpspecialized.hpp +1319 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp +1039 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_pingpong.hpp +1110 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/matrix.h +14129 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/platform/platform.h +953 -0
- flashinfer_python-0.4.0rc4/3rdparty/cutlass/include/cutlass/version.h +80 -0
- flashinfer_python-0.4.0rc4/PKG-INFO +201 -0
- flashinfer_python-0.4.0rc4/README.md +171 -0
- flashinfer_python-0.4.0rc4/csrc/batch_attention.cu +185 -0
- flashinfer_python-0.4.0rc4/csrc/batch_attention_jit_binding.cu +37 -0
- flashinfer_python-0.4.0rc4/csrc/batch_decode.cu +191 -0
- flashinfer_python-0.4.0rc4/csrc/batch_decode_jit_binding.cu +40 -0
- flashinfer_python-0.4.0rc4/csrc/batch_decode_mla_binding.cu +25 -0
- flashinfer_python-0.4.0rc4/csrc/batch_decode_mla_cute_sm80.cu +109 -0
- flashinfer_python-0.4.0rc4/csrc/batch_decode_mla_plan.cu +43 -0
- flashinfer_python-0.4.0rc4/csrc/batch_decode_mla_run.cu +79 -0
- flashinfer_python-0.4.0rc4/csrc/batch_mla_binding.cu +36 -0
- flashinfer_python-0.4.0rc4/csrc/batch_mla_config.jinja +33 -0
- flashinfer_python-0.4.0rc4/csrc/batch_mla_plan.cu +52 -0
- flashinfer_python-0.4.0rc4/csrc/batch_mla_run.cu +122 -0
- flashinfer_python-0.4.0rc4/csrc/batch_mla_sm90_binding.cu +37 -0
- flashinfer_python-0.4.0rc4/csrc/batch_mla_sm90_plan.cu +53 -0
- flashinfer_python-0.4.0rc4/csrc/batch_mla_sm90_run.cu +125 -0
- flashinfer_python-0.4.0rc4/csrc/batch_prefill.cu +327 -0
- flashinfer_python-0.4.0rc4/csrc/batch_prefill_fp8_sm90.cu +185 -0
- flashinfer_python-0.4.0rc4/csrc/batch_prefill_jit_binding.cu +46 -0
- flashinfer_python-0.4.0rc4/csrc/batch_prefill_sm90.cu +263 -0
- flashinfer_python-0.4.0rc4/csrc/batch_prefill_sm90_customize_config.jinja +117 -0
- flashinfer_python-0.4.0rc4/csrc/batch_prefill_sm90_jit_binding.cu +50 -0
- flashinfer_python-0.4.0rc4/csrc/blackwell_fmha_plan.cu +37 -0
- flashinfer_python-0.4.0rc4/csrc/bmm_fp8.cu +63 -0
- flashinfer_python-0.4.0rc4/csrc/cascade.cu +129 -0
- flashinfer_python-0.4.0rc4/csrc/cudnn_sdpa_kernel_launcher.cu +1196 -0
- flashinfer_python-0.4.0rc4/csrc/cutlass_mla.cu +46 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_cascade_binding.cu +33 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_gemm_binding.cu +27 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_gemm_sm90_binding.cu +24 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_mla_binding.cu +21 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_norm_binding.cu +32 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_page_binding.cu +39 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_quantization_binding.cu +24 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_rope_binding.cu +49 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_sampling_binding.cu +82 -0
- flashinfer_python-0.4.0rc4/csrc/flashinfer_xqa_binding.cu +31 -0
- flashinfer_python-0.4.0rc4/csrc/fmhaReduction.cu +358 -0
- flashinfer_python-0.4.0rc4/csrc/fmha_cutlass_sm100.cu +125 -0
- flashinfer_python-0.4.0rc4/csrc/fmha_cutlass_sm100_binding.cu +32 -0
- flashinfer_python-0.4.0rc4/csrc/fp4_gemm_cutlass.cu +195 -0
- flashinfer_python-0.4.0rc4/csrc/fp4_gemm_cutlass_sm120.cu +188 -0
- flashinfer_python-0.4.0rc4/csrc/fp8_gemm_cutlass.cu +172 -0
- flashinfer_python-0.4.0rc4/csrc/fused_moe/cutlass_backend/flashinfer_cutlass_fused_moe_sm100_binding.cu +1093 -0
- flashinfer_python-0.4.0rc4/csrc/gemm_groupwise_sm100.cu +120 -0
- flashinfer_python-0.4.0rc4/csrc/gemm_groupwise_sm120.cu +135 -0
- flashinfer_python-0.4.0rc4/csrc/gemm_sm100_binding.cu +23 -0
- flashinfer_python-0.4.0rc4/csrc/gemm_sm120_binding.cu +23 -0
- flashinfer_python-0.4.0rc4/csrc/group_gemm.cu +40 -0
- flashinfer_python-0.4.0rc4/csrc/group_gemm_fp8_groupwise_sm100.cu +124 -0
- flashinfer_python-0.4.0rc4/csrc/group_gemm_fp8_groupwise_sm120.cu +121 -0
- flashinfer_python-0.4.0rc4/csrc/group_gemm_mxfp4_groupwise_sm100.cu +176 -0
- flashinfer_python-0.4.0rc4/csrc/group_gemm_sm100_binding.cu +36 -0
- flashinfer_python-0.4.0rc4/csrc/group_gemm_sm120_binding.cu +25 -0
- flashinfer_python-0.4.0rc4/csrc/group_gemm_sm90.cu +73 -0
- flashinfer_python-0.4.0rc4/csrc/logging.cc +30 -0
- flashinfer_python-0.4.0rc4/csrc/norm.cu +130 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/cpp/kernels/quantization.cu +385 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_gemm_kernels.h +347 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_util_kernels.h +81 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/kernels/delayStream.cu +42 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/kernels/quantization.cuh +897 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/kernels/quantization.h +85 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/thop/fp4Op.cpp +354 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.cpp +255 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.h +39 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.cpp +183 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.h +80 -0
- flashinfer_python-0.4.0rc4/csrc/nv_internal/tensorrt_llm/thop/utils.h +26 -0
- flashinfer_python-0.4.0rc4/csrc/nvshmem_binding.cu +173 -0
- flashinfer_python-0.4.0rc4/csrc/page.cu +209 -0
- flashinfer_python-0.4.0rc4/csrc/pod.cu +271 -0
- flashinfer_python-0.4.0rc4/csrc/pod_jit_binding.cu +39 -0
- flashinfer_python-0.4.0rc4/csrc/pod_kernel_inst.jinja +30 -0
- flashinfer_python-0.4.0rc4/csrc/quantization.cu +55 -0
- flashinfer_python-0.4.0rc4/csrc/renorm.cu +78 -0
- flashinfer_python-0.4.0rc4/csrc/rope.cu +351 -0
- flashinfer_python-0.4.0rc4/csrc/sampling.cu +209 -0
- flashinfer_python-0.4.0rc4/csrc/single_decode.cu +104 -0
- flashinfer_python-0.4.0rc4/csrc/single_decode_jit_binding.cu +27 -0
- flashinfer_python-0.4.0rc4/csrc/single_prefill.cu +111 -0
- flashinfer_python-0.4.0rc4/csrc/single_prefill_fp8_sm90.cu +101 -0
- flashinfer_python-0.4.0rc4/csrc/single_prefill_jit_binding.cu +27 -0
- flashinfer_python-0.4.0rc4/csrc/single_prefill_sm90.cu +93 -0
- flashinfer_python-0.4.0rc4/csrc/single_prefill_sm90_jit_binding.cu +27 -0
- flashinfer_python-0.4.0rc4/csrc/tgv_gemm.cu +226 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_allreduce.cu +166 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_allreduce_fusion.cu +84 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_alltoall.cu +350 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_batched_gemm_runner.cu +433 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_fmha_kernel_launcher.cu +472 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_fused_moe_dev_kernel.cu +663 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_fused_moe_kernel_launcher.cu +1137 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_fused_moe_routing_deepseek.cu +550 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_fused_moe_routing_llama4.cu +489 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_fused_moe_routing_renormalize.cu +313 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_fused_moe_runner.cu +553 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_gemm_runner.cu +354 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_mnnvl_allreduce.cu +102 -0
- flashinfer_python-0.4.0rc4/csrc/trtllm_moe_allreduce_fusion.cu +136 -0
- flashinfer_python-0.4.0rc4/csrc/tvm_ffi_utils.h +272 -0
- flashinfer_python-0.4.0rc4/csrc/vllm_custom_all_reduce.cu +155 -0
- flashinfer_python-0.4.0rc4/csrc/xqa/xqa_wrapper.cu +51 -0
- flashinfer_python-0.4.0rc4/custom_backend.py +112 -0
- flashinfer_python-0.4.0rc4/flashinfer/__init__.py +161 -0
- flashinfer_python-0.4.0rc4/flashinfer/__main__.py +299 -0
- flashinfer_python-0.4.0rc4/flashinfer/_build_meta.py +1 -0
- flashinfer_python-0.4.0rc4/flashinfer/activation.py +255 -0
- flashinfer_python-0.4.0rc4/flashinfer/aot.py +806 -0
- flashinfer_python-0.4.0rc4/flashinfer/artifacts.py +174 -0
- flashinfer_python-0.4.0rc4/flashinfer/autotuner.py +780 -0
- flashinfer_python-0.4.0rc4/flashinfer/cascade.py +1075 -0
- flashinfer_python-0.4.0rc4/flashinfer/comm/mnnvl.py +1014 -0
- flashinfer_python-0.4.0rc4/flashinfer/comm/nvshmem.py +129 -0
- flashinfer_python-0.4.0rc4/flashinfer/comm/nvshmem_allreduce.py +127 -0
- flashinfer_python-0.4.0rc4/flashinfer/comm/trtllm_alltoall.py +675 -0
- flashinfer_python-0.4.0rc4/flashinfer/comm/trtllm_ar.py +1005 -0
- flashinfer_python-0.4.0rc4/flashinfer/comm/trtllm_mnnvl_ar.py +317 -0
- flashinfer_python-0.4.0rc4/flashinfer/comm/vllm_ar.py +156 -0
- flashinfer_python-0.4.0rc4/flashinfer/compilation_context.py +68 -0
- flashinfer_python-0.4.0rc4/flashinfer/cuda_utils.py +61 -0
- flashinfer_python-0.4.0rc4/flashinfer/cute_dsl/gemm_allreduce_two_shot.py +2029 -0
- flashinfer_python-0.4.0rc4/flashinfer/decode.py +2579 -0
- flashinfer_python-0.4.0rc4/flashinfer/deep_gemm.py +1516 -0
- flashinfer_python-0.4.0rc4/flashinfer/fp4_quantization.py +862 -0
- flashinfer_python-0.4.0rc4/flashinfer/fp8_quantization.py +239 -0
- flashinfer_python-0.4.0rc4/flashinfer/fused_moe/__init__.py +47 -0
- flashinfer_python-0.4.0rc4/flashinfer/fused_moe/core.py +2082 -0
- flashinfer_python-0.4.0rc4/flashinfer/gemm.py +3253 -0
- flashinfer_python-0.4.0rc4/flashinfer/jit/__init__.py +87 -0
- flashinfer_python-0.4.0rc4/flashinfer/jit/activation.py +88 -0
- flashinfer_python-0.4.0rc4/flashinfer/jit/attention/__init__.py +51 -0
- flashinfer_python-0.4.0rc4/flashinfer/jit/attention/modules.py +1698 -0
- flashinfer_python-0.4.0rc4/flashinfer/jit/attention/utils.py +81 -0
- flashinfer_python-0.4.0rc4/flashinfer/jit/core.py +362 -0
- flashinfer_python-0.4.0rc4/flashinfer/jit/cpp_ext.py +293 -0
- flashinfer_python-0.4.0rc4/flashinfer/jit/cubin_loader.py +199 -0
- flashinfer_python-0.4.0rc4/flashinfer/jit/env.py +103 -0
- flashinfer_python-0.4.0rc4/flashinfer/mla.py +466 -0
- flashinfer_python-0.4.0rc4/flashinfer/norm.py +258 -0
- flashinfer_python-0.4.0rc4/flashinfer/page.py +425 -0
- flashinfer_python-0.4.0rc4/flashinfer/pod.py +612 -0
- flashinfer_python-0.4.0rc4/flashinfer/prefill.py +3511 -0
- flashinfer_python-0.4.0rc4/flashinfer/quantization.py +148 -0
- flashinfer_python-0.4.0rc4/flashinfer/rope.py +1220 -0
- flashinfer_python-0.4.0rc4/flashinfer/sampling.py +1477 -0
- flashinfer_python-0.4.0rc4/flashinfer/utils.py +749 -0
- flashinfer_python-0.4.0rc4/flashinfer/xqa.py +210 -0
- flashinfer_python-0.4.0rc4/flashinfer_python.egg-info/PKG-INFO +201 -0
- flashinfer_python-0.4.0rc4/flashinfer_python.egg-info/SOURCES.txt +1545 -0
- flashinfer_python-0.4.0rc4/flashinfer_python.egg-info/requires.txt +13 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/attention/persistent.cuh +645 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/exception.h +106 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/profiler.cuh +149 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/batched_gemm/KernelRunner.h +134 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmInterface.h +801 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/common/cudaUtils.h +162 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/common.h +329 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/fmha/decoder_impl_common.h +249 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/fmha/fmhaKernels.cuh +678 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/fmha/fmhaRunner.cuh +66 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/fmha/kernelParams.h +704 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/fused_moe/DevKernel.h +422 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/fused_moe/RoutingKernel.h +288 -0
- flashinfer_python-0.4.0rc4/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/GemmInterface.h +594 -0
- flashinfer_python-0.4.0rc4/pyproject.toml +148 -0
- flashinfer_python-0.4.0rc4/setup.py +139 -0
- flashinfer_python-0.4.0rc4/tests/test_artifacts.py +326 -0
- flashinfer_python-0.4.0rc4/version.txt +1 -0
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cute/atom/copy_atom.hpp +0 -690
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cute/atom/mma_atom.hpp +0 -705
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/detail/collective/mixed_input_utils.hpp +0 -1267
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm100_builder.inl +0 -1638
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_array_tma_warpspecialized.hpp +0 -1252
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/epilogue/dispatch_policy.hpp +0 -298
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_umma_builder.inl +0 -299
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_umma_builder.inl +0 -327
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_common.inl +0 -809
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_gmma_builder.inl +0 -1178
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder.hpp +0 -60
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma.hpp +0 -82
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_mixed_input.hpp +0 -1296
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -1248
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -1108
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/dispatch_policy.hpp +0 -1385
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/group_array_problem_shape.hpp +0 -123
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.hpp +0 -80
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized.hpp +0 -1148
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp +0 -964
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mma_transform.hpp +0 -1069
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_group.hpp +0 -314
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/kernel/sm103_blockscaled_gemm_array_tma_warpspecialized.hpp +0 -1319
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp +0 -1042
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_pingpong.hpp +0 -1113
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/matrix.h +0 -14129
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/platform/platform.h +0 -906
- flashinfer_python-0.4.0rc2/3rdparty/cutlass/include/cutlass/version.h +0 -80
- flashinfer_python-0.4.0rc2/PKG-INFO +0 -199
- flashinfer_python-0.4.0rc2/README.md +0 -171
- flashinfer_python-0.4.0rc2/csrc/activation.cu +0 -128
- flashinfer_python-0.4.0rc2/csrc/aot_extension_utils.h +0 -50
- flashinfer_python-0.4.0rc2/csrc/batch_attention.cu +0 -191
- flashinfer_python-0.4.0rc2/csrc/batch_attention_jit_pybind.cu +0 -37
- flashinfer_python-0.4.0rc2/csrc/batch_decode.cu +0 -197
- flashinfer_python-0.4.0rc2/csrc/batch_decode_config.inc +0 -52
- flashinfer_python-0.4.0rc2/csrc/batch_decode_jit_pybind.cu +0 -40
- flashinfer_python-0.4.0rc2/csrc/batch_decode_mla_cute_sm80.cu +0 -109
- flashinfer_python-0.4.0rc2/csrc/batch_decode_mla_plan.cu +0 -44
- flashinfer_python-0.4.0rc2/csrc/batch_decode_mla_pybind.cu +0 -21
- flashinfer_python-0.4.0rc2/csrc/batch_decode_mla_run.cu +0 -74
- flashinfer_python-0.4.0rc2/csrc/batch_mla_config.jinja +0 -33
- flashinfer_python-0.4.0rc2/csrc/batch_mla_plan.cu +0 -52
- flashinfer_python-0.4.0rc2/csrc/batch_mla_pybind.cu +0 -35
- flashinfer_python-0.4.0rc2/csrc/batch_mla_run.cu +0 -125
- flashinfer_python-0.4.0rc2/csrc/batch_mla_sm90_plan.cu +0 -53
- flashinfer_python-0.4.0rc2/csrc/batch_mla_sm90_pybind.cu +0 -37
- flashinfer_python-0.4.0rc2/csrc/batch_mla_sm90_run.cu +0 -129
- flashinfer_python-0.4.0rc2/csrc/batch_prefill.cu +0 -332
- flashinfer_python-0.4.0rc2/csrc/batch_prefill_config.inc +0 -60
- flashinfer_python-0.4.0rc2/csrc/batch_prefill_fp8_sm90.cu +0 -185
- flashinfer_python-0.4.0rc2/csrc/batch_prefill_jit_pybind.cu +0 -49
- flashinfer_python-0.4.0rc2/csrc/batch_prefill_sm90.cu +0 -260
- flashinfer_python-0.4.0rc2/csrc/batch_prefill_sm90_config.inc +0 -55
- flashinfer_python-0.4.0rc2/csrc/batch_prefill_sm90_customize_config.jinja +0 -118
- flashinfer_python-0.4.0rc2/csrc/batch_prefill_sm90_jit_pybind.cu +0 -46
- flashinfer_python-0.4.0rc2/csrc/blackwell_fmha_plan.cu +0 -37
- flashinfer_python-0.4.0rc2/csrc/bmm_fp8.cu +0 -63
- flashinfer_python-0.4.0rc2/csrc/cascade.cu +0 -133
- flashinfer_python-0.4.0rc2/csrc/cudnn_sdpa_kernel_launcher.cu +0 -1209
- flashinfer_python-0.4.0rc2/csrc/cutlass_mla.cu +0 -45
- flashinfer_python-0.4.0rc2/csrc/flashinfer_cascade_ops.cu +0 -33
- flashinfer_python-0.4.0rc2/csrc/flashinfer_gemm_ops.cu +0 -30
- flashinfer_python-0.4.0rc2/csrc/flashinfer_gemm_sm90_ops.cu +0 -27
- flashinfer_python-0.4.0rc2/csrc/flashinfer_mla_ops.cu +0 -25
- flashinfer_python-0.4.0rc2/csrc/flashinfer_norm_ops.cu +0 -38
- flashinfer_python-0.4.0rc2/csrc/flashinfer_page_ops.cu +0 -41
- flashinfer_python-0.4.0rc2/csrc/flashinfer_quantization_ops.cu +0 -28
- flashinfer_python-0.4.0rc2/csrc/flashinfer_rope_ops.cu +0 -61
- flashinfer_python-0.4.0rc2/csrc/flashinfer_sampling_ops.cu +0 -89
- flashinfer_python-0.4.0rc2/csrc/flashinfer_xqa_ops.cu +0 -35
- flashinfer_python-0.4.0rc2/csrc/fmhaReduction.cu +0 -357
- flashinfer_python-0.4.0rc2/csrc/fmha_cutlass_sm100.cu +0 -124
- flashinfer_python-0.4.0rc2/csrc/fmha_cutlass_sm100_pybind.cu +0 -34
- flashinfer_python-0.4.0rc2/csrc/fp4_gemm_cutlass.cu +0 -199
- flashinfer_python-0.4.0rc2/csrc/fp4_gemm_cutlass_sm120.cu +0 -191
- flashinfer_python-0.4.0rc2/csrc/fp8_gemm_cutlass.cu +0 -176
- flashinfer_python-0.4.0rc2/csrc/fused_moe/cutlass_backend/flashinfer_cutlass_fused_moe_sm100_ops.cu +0 -1059
- flashinfer_python-0.4.0rc2/csrc/gemm_groupwise_sm100.cu +0 -123
- flashinfer_python-0.4.0rc2/csrc/gemm_groupwise_sm120.cu +0 -138
- flashinfer_python-0.4.0rc2/csrc/gemm_sm100_pybind.cu +0 -26
- flashinfer_python-0.4.0rc2/csrc/gemm_sm120_pybind.cu +0 -25
- flashinfer_python-0.4.0rc2/csrc/group_gemm.cu +0 -40
- flashinfer_python-0.4.0rc2/csrc/group_gemm_fp8_groupwise_sm100.cu +0 -122
- flashinfer_python-0.4.0rc2/csrc/group_gemm_fp8_groupwise_sm120.cu +0 -123
- flashinfer_python-0.4.0rc2/csrc/group_gemm_mxfp4_groupwise_sm100.cu +0 -177
- flashinfer_python-0.4.0rc2/csrc/group_gemm_sm100_pybind.cu +0 -36
- flashinfer_python-0.4.0rc2/csrc/group_gemm_sm120_pybind.cu +0 -28
- flashinfer_python-0.4.0rc2/csrc/group_gemm_sm90.cu +0 -75
- flashinfer_python-0.4.0rc2/csrc/logging.cc +0 -32
- flashinfer_python-0.4.0rc2/csrc/norm.cu +0 -135
- flashinfer_python-0.4.0rc2/csrc/nv_internal/cpp/kernels/quantization.cu +0 -345
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_gemm_kernels.h +0 -348
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_util_kernels.h +0 -82
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/kernels/delayStream.cu +0 -45
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/kernels/quantization.cuh +0 -843
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/kernels/quantization.h +0 -78
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/runtime/torchUtils.h +0 -68
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/thop/fp4Op.cpp +0 -419
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.cpp +0 -223
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.h +0 -35
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.cpp +0 -215
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.h +0 -79
- flashinfer_python-0.4.0rc2/csrc/nv_internal/tensorrt_llm/thop/thUtils.h +0 -51
- flashinfer_python-0.4.0rc2/csrc/nvshmem_binding.cu +0 -174
- flashinfer_python-0.4.0rc2/csrc/page.cu +0 -216
- flashinfer_python-0.4.0rc2/csrc/pod.cu +0 -273
- flashinfer_python-0.4.0rc2/csrc/pod_config.inc +0 -45
- flashinfer_python-0.4.0rc2/csrc/pod_jit_pybind.cu +0 -40
- flashinfer_python-0.4.0rc2/csrc/pod_kernel_inst.jinja +0 -32
- flashinfer_python-0.4.0rc2/csrc/pytorch_conversion_utils.h +0 -29
- flashinfer_python-0.4.0rc2/csrc/pytorch_extension_utils.h +0 -323
- flashinfer_python-0.4.0rc2/csrc/quantization.cu +0 -57
- flashinfer_python-0.4.0rc2/csrc/renorm.cu +0 -79
- flashinfer_python-0.4.0rc2/csrc/rope.cu +0 -356
- flashinfer_python-0.4.0rc2/csrc/sampling.cu +0 -281
- flashinfer_python-0.4.0rc2/csrc/single_decode.cu +0 -104
- flashinfer_python-0.4.0rc2/csrc/single_decode_config.inc +0 -51
- flashinfer_python-0.4.0rc2/csrc/single_decode_jit_pybind.cu +0 -27
- flashinfer_python-0.4.0rc2/csrc/single_prefill.cu +0 -114
- flashinfer_python-0.4.0rc2/csrc/single_prefill_config.inc +0 -56
- flashinfer_python-0.4.0rc2/csrc/single_prefill_fp8_sm90.cu +0 -101
- flashinfer_python-0.4.0rc2/csrc/single_prefill_jit_pybind.cu +0 -27
- flashinfer_python-0.4.0rc2/csrc/single_prefill_sm90.cu +0 -93
- flashinfer_python-0.4.0rc2/csrc/single_prefill_sm90_config.inc +0 -53
- flashinfer_python-0.4.0rc2/csrc/single_prefill_sm90_jit_pybind.cu +0 -27
- flashinfer_python-0.4.0rc2/csrc/tgv_gemm.cu +0 -224
- flashinfer_python-0.4.0rc2/csrc/trtllm_allreduce.cu +0 -168
- flashinfer_python-0.4.0rc2/csrc/trtllm_allreduce_fusion.cu +0 -87
- flashinfer_python-0.4.0rc2/csrc/trtllm_alltoall.cu +0 -333
- flashinfer_python-0.4.0rc2/csrc/trtllm_batched_gemm_runner.cu +0 -431
- flashinfer_python-0.4.0rc2/csrc/trtllm_fmha_kernel_launcher.cu +0 -476
- flashinfer_python-0.4.0rc2/csrc/trtllm_fused_moe_dev_kernel.cu +0 -662
- flashinfer_python-0.4.0rc2/csrc/trtllm_fused_moe_kernel_launcher.cu +0 -1172
- flashinfer_python-0.4.0rc2/csrc/trtllm_fused_moe_routing_deepseek.cu +0 -565
- flashinfer_python-0.4.0rc2/csrc/trtllm_fused_moe_routing_llama4.cu +0 -501
- flashinfer_python-0.4.0rc2/csrc/trtllm_fused_moe_routing_renormalize.cu +0 -358
- flashinfer_python-0.4.0rc2/csrc/trtllm_fused_moe_runner.cu +0 -552
- flashinfer_python-0.4.0rc2/csrc/trtllm_gemm_runner.cu +0 -357
- flashinfer_python-0.4.0rc2/csrc/trtllm_mnnvl_allreduce.cu +0 -101
- flashinfer_python-0.4.0rc2/csrc/trtllm_moe_allreduce_fusion.cu +0 -137
- flashinfer_python-0.4.0rc2/csrc/vllm_custom_all_reduce.cu +0 -170
- flashinfer_python-0.4.0rc2/csrc/xqa/xqa_wrapper.cu +0 -53
- flashinfer_python-0.4.0rc2/custom_backend.py +0 -113
- flashinfer_python-0.4.0rc2/flashinfer/__init__.py +0 -154
- flashinfer_python-0.4.0rc2/flashinfer/__main__.py +0 -296
- flashinfer_python-0.4.0rc2/flashinfer/_build_meta.py +0 -1
- flashinfer_python-0.4.0rc2/flashinfer/activation.py +0 -216
- flashinfer_python-0.4.0rc2/flashinfer/aot.py +0 -801
- flashinfer_python-0.4.0rc2/flashinfer/artifacts.py +0 -170
- flashinfer_python-0.4.0rc2/flashinfer/autotuner.py +0 -775
- flashinfer_python-0.4.0rc2/flashinfer/cascade.py +0 -1075
- flashinfer_python-0.4.0rc2/flashinfer/comm/mnnvl.py +0 -1092
- flashinfer_python-0.4.0rc2/flashinfer/comm/nvshmem.py +0 -126
- flashinfer_python-0.4.0rc2/flashinfer/comm/nvshmem_allreduce.py +0 -133
- flashinfer_python-0.4.0rc2/flashinfer/comm/trtllm_alltoall.py +0 -616
- flashinfer_python-0.4.0rc2/flashinfer/comm/trtllm_ar.py +0 -1005
- flashinfer_python-0.4.0rc2/flashinfer/comm/trtllm_mnnvl_ar.py +0 -317
- flashinfer_python-0.4.0rc2/flashinfer/comm/vllm_ar.py +0 -155
- flashinfer_python-0.4.0rc2/flashinfer/compilation_context.py +0 -71
- flashinfer_python-0.4.0rc2/flashinfer/cuda_utils.py +0 -61
- flashinfer_python-0.4.0rc2/flashinfer/cute_dsl/gemm_allreduce_two_shot.py +0 -2030
- flashinfer_python-0.4.0rc2/flashinfer/decode.py +0 -2368
- flashinfer_python-0.4.0rc2/flashinfer/deep_gemm.py +0 -1514
- flashinfer_python-0.4.0rc2/flashinfer/fp4_quantization.py +0 -713
- flashinfer_python-0.4.0rc2/flashinfer/fp8_quantization.py +0 -203
- flashinfer_python-0.4.0rc2/flashinfer/fused_moe/__init__.py +0 -45
- flashinfer_python-0.4.0rc2/flashinfer/fused_moe/core.py +0 -2025
- flashinfer_python-0.4.0rc2/flashinfer/gemm.py +0 -3219
- flashinfer_python-0.4.0rc2/flashinfer/jit/__init__.py +0 -97
- flashinfer_python-0.4.0rc2/flashinfer/jit/activation.py +0 -90
- flashinfer_python-0.4.0rc2/flashinfer/jit/attention/__init__.py +0 -60
- flashinfer_python-0.4.0rc2/flashinfer/jit/attention/pytorch.py +0 -1698
- flashinfer_python-0.4.0rc2/flashinfer/jit/attention/tvm.py +0 -371
- flashinfer_python-0.4.0rc2/flashinfer/jit/attention/utils.py +0 -81
- flashinfer_python-0.4.0rc2/flashinfer/jit/core.py +0 -351
- flashinfer_python-0.4.0rc2/flashinfer/jit/cpp_ext.py +0 -285
- flashinfer_python-0.4.0rc2/flashinfer/jit/cubin_loader.py +0 -191
- flashinfer_python-0.4.0rc2/flashinfer/jit/env.py +0 -104
- flashinfer_python-0.4.0rc2/flashinfer/jit/gemm/__init__.py +0 -18
- flashinfer_python-0.4.0rc2/flashinfer/jit/gemm/tvm.py +0 -148
- flashinfer_python-0.4.0rc2/flashinfer/mla.py +0 -466
- flashinfer_python-0.4.0rc2/flashinfer/norm.py +0 -258
- flashinfer_python-0.4.0rc2/flashinfer/page.py +0 -425
- flashinfer_python-0.4.0rc2/flashinfer/pod.py +0 -612
- flashinfer_python-0.4.0rc2/flashinfer/prefill.py +0 -3498
- flashinfer_python-0.4.0rc2/flashinfer/quantization.py +0 -148
- flashinfer_python-0.4.0rc2/flashinfer/rope.py +0 -1220
- flashinfer_python-0.4.0rc2/flashinfer/sampling.py +0 -1415
- flashinfer_python-0.4.0rc2/flashinfer/utils.py +0 -739
- flashinfer_python-0.4.0rc2/flashinfer/xqa.py +0 -210
- flashinfer_python-0.4.0rc2/flashinfer_python.egg-info/PKG-INFO +0 -199
- flashinfer_python-0.4.0rc2/flashinfer_python.egg-info/SOURCES.txt +0 -1641
- flashinfer_python-0.4.0rc2/flashinfer_python.egg-info/requires.txt +0 -11
- flashinfer_python-0.4.0rc2/include/flashinfer/attention/persistent.cuh +0 -645
- flashinfer_python-0.4.0rc2/include/flashinfer/exception.h +0 -61
- flashinfer_python-0.4.0rc2/include/flashinfer/profiler.cuh +0 -149
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/batched_gemm/KernelRunner.h +0 -135
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmInterface.h +0 -801
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/common/cudaUtils.h +0 -161
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/common.h +0 -324
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/fmha/decoder_impl_common.h +0 -247
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/fmha/fmhaKernels.cuh +0 -674
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/fmha/fmhaRunner.cuh +0 -64
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/fmha/kernelParams.h +0 -703
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/fused_moe/DevKernel.h +0 -422
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/fused_moe/RoutingKernel.h +0 -290
- flashinfer_python-0.4.0rc2/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/GemmInterface.h +0 -594
- flashinfer_python-0.4.0rc2/pyproject.toml +0 -151
- flashinfer_python-0.4.0rc2/setup.py +0 -120
- flashinfer_python-0.4.0rc2/tests/test_activation.py +0 -80
- flashinfer_python-0.4.0rc2/tests/test_alibi.py +0 -98
- flashinfer_python-0.4.0rc2/tests/test_attention_sink.py +0 -1118
- flashinfer_python-0.4.0rc2/tests/test_attention_sink_blackwell.py +0 -243
- flashinfer_python-0.4.0rc2/tests/test_batch_attention.py +0 -250
- flashinfer_python-0.4.0rc2/tests/test_batch_decode_kernels.py +0 -597
- flashinfer_python-0.4.0rc2/tests/test_batch_invariant_fa2.py +0 -311
- flashinfer_python-0.4.0rc2/tests/test_batch_prefill.py +0 -120
- flashinfer_python-0.4.0rc2/tests/test_batch_prefill_kernels.py +0 -1041
- flashinfer_python-0.4.0rc2/tests/test_blackwell_fmha.py +0 -369
- flashinfer_python-0.4.0rc2/tests/test_block_sparse.py +0 -297
- flashinfer_python-0.4.0rc2/tests/test_block_sparse_indices_to_vector_sparse_offsets.py +0 -84
- flashinfer_python-0.4.0rc2/tests/test_bmm_fp8.py +0 -70
- flashinfer_python-0.4.0rc2/tests/test_create_ipc_buffer.py +0 -90
- flashinfer_python-0.4.0rc2/tests/test_cudnn_decode.py +0 -172
- flashinfer_python-0.4.0rc2/tests/test_cudnn_prefill.py +0 -182
- flashinfer_python-0.4.0rc2/tests/test_cudnn_prefill_deepseek.py +0 -172
- flashinfer_python-0.4.0rc2/tests/test_cute_dsl_blockscaled_gemm.py +0 -278
- flashinfer_python-0.4.0rc2/tests/test_cute_dsl_gemm_allreduce_two_shot.py +0 -478
- flashinfer_python-0.4.0rc2/tests/test_decode_fp8_calibration_scale.py +0 -162
- flashinfer_python-0.4.0rc2/tests/test_decode_prefill_lse.py +0 -75
- flashinfer_python-0.4.0rc2/tests/test_deepseek_mla.py +0 -738
- flashinfer_python-0.4.0rc2/tests/test_fp4_quantize.py +0 -357
- flashinfer_python-0.4.0rc2/tests/test_fp4_tensor_torch_cute.py +0 -53
- flashinfer_python-0.4.0rc2/tests/test_fp8_prefill.py +0 -200
- flashinfer_python-0.4.0rc2/tests/test_fp8_quantize.py +0 -144
- flashinfer_python-0.4.0rc2/tests/test_green_ctx.py +0 -128
- flashinfer_python-0.4.0rc2/tests/test_group_gemm.py +0 -123
- flashinfer_python-0.4.0rc2/tests/test_groupwise_scaled_gemm_fp8.py +0 -285
- flashinfer_python-0.4.0rc2/tests/test_groupwise_scaled_gemm_mxfp4.py +0 -359
- flashinfer_python-0.4.0rc2/tests/test_hopper.py +0 -552
- flashinfer_python-0.4.0rc2/tests/test_hopper_fp8_attention.py +0 -204
- flashinfer_python-0.4.0rc2/tests/test_jit_example.py +0 -717
- flashinfer_python-0.4.0rc2/tests/test_jit_warmup.py +0 -107
- flashinfer_python-0.4.0rc2/tests/test_logits_cap.py +0 -102
- flashinfer_python-0.4.0rc2/tests/test_logits_processor.py +0 -884
- flashinfer_python-0.4.0rc2/tests/test_mla_decode_kernel.py +0 -512
- flashinfer_python-0.4.0rc2/tests/test_mla_page.py +0 -122
- flashinfer_python-0.4.0rc2/tests/test_mm_fp4.py +0 -94
- flashinfer_python-0.4.0rc2/tests/test_mnnvl_custom_comm.py +0 -184
- flashinfer_python-0.4.0rc2/tests/test_mnnvl_memory.py +0 -270
- flashinfer_python-0.4.0rc2/tests/test_non_contiguous_decode.py +0 -100
- flashinfer_python-0.4.0rc2/tests/test_non_contiguous_prefill.py +0 -199
- flashinfer_python-0.4.0rc2/tests/test_norm.py +0 -202
- flashinfer_python-0.4.0rc2/tests/test_nvshmem.py +0 -17
- flashinfer_python-0.4.0rc2/tests/test_nvshmem_allreduce.py +0 -112
- flashinfer_python-0.4.0rc2/tests/test_page.py +0 -57
- flashinfer_python-0.4.0rc2/tests/test_pod_kernels.py +0 -277
- flashinfer_python-0.4.0rc2/tests/test_quantization.py +0 -65
- flashinfer_python-0.4.0rc2/tests/test_rope.py +0 -422
- flashinfer_python-0.4.0rc2/tests/test_sampling.py +0 -573
- flashinfer_python-0.4.0rc2/tests/test_shared_prefix_kernels.py +0 -314
- flashinfer_python-0.4.0rc2/tests/test_single_prefill.py +0 -103
- flashinfer_python-0.4.0rc2/tests/test_sliding_window.py +0 -407
- flashinfer_python-0.4.0rc2/tests/test_sm_constraint_gemm.py +0 -182
- flashinfer_python-0.4.0rc2/tests/test_tensor_cores_decode.py +0 -327
- flashinfer_python-0.4.0rc2/tests/test_tgv_gemm.py +0 -50
- flashinfer_python-0.4.0rc2/tests/test_triton_cascade.py +0 -97
- flashinfer_python-0.4.0rc2/tests/test_trtllm_allreduce.py +0 -292
- flashinfer_python-0.4.0rc2/tests/test_trtllm_allreduce_fusion.py +0 -373
- flashinfer_python-0.4.0rc2/tests/test_trtllm_alltoall.py +0 -864
- flashinfer_python-0.4.0rc2/tests/test_trtllm_cutlass_fused_moe.py +0 -1353
- flashinfer_python-0.4.0rc2/tests/test_trtllm_gen_attention.py +0 -828
- flashinfer_python-0.4.0rc2/tests/test_trtllm_gen_fused_moe.py +0 -2240
- flashinfer_python-0.4.0rc2/tests/test_trtllm_gen_mla.py +0 -228
- flashinfer_python-0.4.0rc2/tests/test_trtllm_mnnvl_allreduce.py +0 -313
- flashinfer_python-0.4.0rc2/tests/test_trtllm_moe_allreduce_fusion.py +0 -471
- flashinfer_python-0.4.0rc2/tests/test_trtllm_moe_allreduce_fusion_finalize.py +0 -312
- flashinfer_python-0.4.0rc2/tests/test_vllm_custom_allreduce.py +0 -140
- flashinfer_python-0.4.0rc2/tests/test_xqa.py +0 -357
- flashinfer_python-0.4.0rc2/tvm_binding/batch_decode.cu +0 -217
- flashinfer_python-0.4.0rc2/tvm_binding/batch_decode_customize_config.jinja +0 -64
- flashinfer_python-0.4.0rc2/tvm_binding/batch_decode_jit_tvm_binding.cu +0 -35
- flashinfer_python-0.4.0rc2/tvm_binding/batch_mla_config.jinja +0 -27
- flashinfer_python-0.4.0rc2/tvm_binding/batch_mla_jit_tvm_binding.cu +0 -32
- flashinfer_python-0.4.0rc2/tvm_binding/batch_mla_plan.cu +0 -55
- flashinfer_python-0.4.0rc2/tvm_binding/batch_mla_run.cu +0 -134
- flashinfer_python-0.4.0rc2/tvm_binding/batch_prefill.cu +0 -384
- flashinfer_python-0.4.0rc2/tvm_binding/batch_prefill_customize_config.jinja +0 -126
- flashinfer_python-0.4.0rc2/tvm_binding/batch_prefill_jit_tvm_binding.cu +0 -49
- flashinfer_python-0.4.0rc2/tvm_binding/batch_prefill_sm90.cu +0 -325
- flashinfer_python-0.4.0rc2/tvm_binding/batch_prefill_sm90_customize_config.jinja +0 -122
- flashinfer_python-0.4.0rc2/tvm_binding/batch_prefill_sm90_jit_tvm_binding.cu +0 -45
- flashinfer_python-0.4.0rc2/tvm_binding/grouped_gemm_fp8.cu +0 -161
- flashinfer_python-0.4.0rc2/tvm_binding/grouped_gemm_fp8_jit_tvm_binding.cu +0 -11
- flashinfer_python-0.4.0rc2/tvm_binding/sampling.cu +0 -32
- flashinfer_python-0.4.0rc2/tvm_binding/sampling_jit_tvm_binding.cu +0 -7
- flashinfer_python-0.4.0rc2/tvm_binding/tvm_binding_utils.h +0 -41
- flashinfer_python-0.4.0rc2/version.txt +0 -1
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/axpby.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/clear.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/cooperative_copy.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/cooperative_gemm.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/copy.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/fill.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/functional.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/gemm.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/prefer.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/prefetch.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/tensor_algorithms.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/tensor_reduce.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/algorithm/tuple_algorithms.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/cluster_sm100.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/cluster_sm90.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/config.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/copy.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/copy_sm100.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/copy_sm100_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/copy_sm50.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/copy_sm75.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/copy_sm80.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/copy_sm90.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/copy_sm90_desc.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/copy_sm90_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm100.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm100_desc.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm100_umma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm120.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm61.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm70.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm75.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm80.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm89.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm90.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm90_desc.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/simd_sm100.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/tmem_allocator_sm100.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/arch/util.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_im2col.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm50.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm75.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm80.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_im2col.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma_swizzle.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm100.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120_sparse.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm61.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm70.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm75.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm80.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm89.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_ext.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse_ext.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/atom/partitioner.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/config.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/container/alignment.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/container/array.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/container/array_aligned.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/container/array_subbyte.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/container/bit_field.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/container/cuda_types.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/container/tuple.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/container/type_list.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/int_tuple.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/layout.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/layout_composed.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/numeric/arithmetic_tuple.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/numeric/complex.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/numeric/int.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/numeric/integer_sequence.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/numeric/integral_constant.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/numeric/integral_ratio.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/numeric/math.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/numeric/numeric_types.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/numeric/real.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/pointer.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/pointer_base.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/pointer_flagged.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/pointer_sparse.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/pointer_swizzle.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/stride.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/swizzle.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/swizzle_layout.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/tensor.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/tensor_impl.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/tensor_zip.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/underscore.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/util/debug.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/util/print.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/util/print_latex.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/util/print_svg.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/util/print_tensor.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cute/util/type_traits.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/aligned_buffer.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/arch.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/barrier.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/cache_operation.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/config.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/memory.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/memory_sm75.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/memory_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sm100.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sm50.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sm60.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sm61.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sm70.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sm75.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sm89.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sm90.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm89.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/reg_reconfig.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/simd.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/simd_sm60.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/simd_sm61.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/synclog.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/wmma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/wmma_sm70.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/wmma_sm72.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/arch/wmma_sm75.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/array.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/array_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/array_subbyte.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/barrier.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/bfloat16.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/blas3.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/blas3_types.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/block_striped.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/cluster_launch.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/constants.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_umma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_gmma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/collective/collective_conv.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/collective/detail.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/collective/sm100_implicit_gemm_umma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/collective/sm90_implicit_gemm_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/conv2d_problem_size.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/conv3d_problem_size.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/convnd_problem_shape.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/convolution.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/detail.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/device/conv_universal_adapter.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/device/direct_convolution.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/dispatch_policy.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/conv_universal.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_dgrad.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_group_fprop.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_dgrad.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_wgrad.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/default_depthwise_fprop.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/direct_convolution.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_strided_dgrad.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/sm100_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/kernel/sm90_implicit_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/thread/depthwise_mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_few_channels.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_fixed_channels.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_tile_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_direct_conv_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_fixed_stride_dilation.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_direct_conv_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_filter_tile_access_iterator_direct_conv_optimized.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_pipelined.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_core_with_lane_access_size.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_fprop_fusion_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_pipelined.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_wgrad_fusion_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/conv/warp/scale_bias_relu_transform.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/coord.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/core_io.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/cuda_host_adapter.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/cutlass.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/blockwise_scale_layout.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/cluster.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/collective/sm103_kernel_type.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/collective.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/dependent_false.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/helper_macros.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/layout.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/mainloop_fusion_helper_scale_factor.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/mma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/sm100_blockscaled_layout.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/sm100_mixed_dtype_blockwise_layout.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/sm100_tmem_helper.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/detail/sm103_blockscaled_layout.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/device_kernel.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm103_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_builder.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_epilogue.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue_array.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/detail.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/epilogue_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_nosmem.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_nosmem.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized_array.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized_bias_elementwise.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/callbacks.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/operations.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_callbacks_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_compute_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_store_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_topk_softmax.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/activation.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/conversion_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/detail.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_elementwise.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_relu.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_clamp.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_dgelu.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_drelu.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_gelu.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic_with_scaling.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_hardswish.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_leaky_relu.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu0.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_residual_block.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_sigmoid.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_silu.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_tensor_broadcast.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_with_elementwise.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/reduction_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/thread/scale_type.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_direct_store.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_simt.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op_blas3.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_volta_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_simt.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_volta_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/direct_store_epilogue_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base_streamk.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_depthwise.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_direct_store.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_gemm_k_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_smem_accumulator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_visitor_with_softmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_scaling_factor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor_callbacks.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_workspace.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_2x.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_compute.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_load.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_store.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitors.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/interleaved_epilogue.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_iterator_parameter.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_tile_thread_map.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine_layout_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_blas3.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_conv.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_direct_conv.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_predicates.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_strided_dgrad.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_mixed.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_complex_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_simt.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/simt_policy.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/tensor_op_policy.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_simt.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op_mixed.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/volta_tensor_op_policy.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/epilogue/warp/wmma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/exmy_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/detail.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/dist_gemm_universal_wrapper.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/full_barrier.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/detail.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/dist_gemm_kernel_wrapper.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/full_barrier.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_1d_schedules.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_base_schedule.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/fast_math.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/float8.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/float_subbyte.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/floating_point_nvrtc.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/functional.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_9xBF16_umma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockwise_umma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_common.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_cpasync_umma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_mixed_input_umma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_pipeline_carveout.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_simt_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_sparse_umma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm103_blockscaled_umma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_mma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockwise_mma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_common.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_mma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_sparse_mma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_sparse_config.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_common.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_config.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_gmma_builder.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder_decl.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma_decl.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/fp8_accumulation.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_emulated.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_sparse_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm103_blockscaled_mma_array_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm103_blockscaled_mma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_array_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_array_tma_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma_blockwise_scaling.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_sparse_mma_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm70_mma_twostage.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_array_multistage.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_multistage.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/base_grouped.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/default_gemm_configuration.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/ell_gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_array.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_batched.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_grouped.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemv.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/gemv_blockscaled.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/rank_k.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/symm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/device/trmm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/gemm_enumerated_types.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_ell_gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_planar_complex_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_streamk_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_broadcast.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemv.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_grouped.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/ell_gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_array.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_batched.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_per_group_scale.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_pipelined.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex_array.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_splitk_parallel.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_streamk_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_transpose_operands.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_decl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_streamk.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor_streamk.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_fused_epilogue.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_k_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_batched_strided.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_blockscaled.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_sparse_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_universal_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped_problem_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_transpose_operands.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_k_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_mma_transform.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_input_transform.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mixed_input_transform.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_sparse_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm103_blockscaled_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm120_gemm_tma_warpspecialized_cooperative_asymmetric_dma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm_array.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_cooperative.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_group.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_stream_k.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_absmax.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/static_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/symm_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_detail.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/kernel/trmm_universal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/thread/mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm50.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm60.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm61.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_ell_mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_gemv_core.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_simt.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm70.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm75.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sparse_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_access_size.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_wmma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_layernorm_mainloop_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_softmax_mainloop_fusion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_with_reduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_trmm_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_sparse_mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_trmm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_pipelined.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/gemv.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/index_remat.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_blas3_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_layernorm_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_pipelined.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_pipelined.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_singlestage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_softmax_mainloop_fusion_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_with_reduction_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle_streamk.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_wmma_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/layernorm_scale_bias_transform.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_mixed_input_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_policy.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_tile_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_sparse_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fast_f32.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fragment_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_policy.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_access_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm70.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sparse.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_wmma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_wmma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_with_reduction_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/scale_bias_tile_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/softmax_scale_bias_transform.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm/warp/tile_iterator_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm_coord.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/gemm_coord.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/half.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/integer_subbyte.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/kernel_launch.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/layout/layout.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/layout/matrix.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/layout/permute.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/layout/pitch_linear.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/layout/tensor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm70.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm75.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/layout/vector.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/matrix_coord.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/matrix_shape.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/numeric_conversion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/numeric_size.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/numeric_types.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/pipeline/pipeline.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/pipeline/sm100_pipeline.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/pipeline/sm90_pipeline.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/pitch_linear_coord.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/predicate_vector.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/quaternion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/real.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/device/reduce_split_k.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_softmax_final.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_split_k.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_contiguous.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_strided.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/thread/reduce.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/thread/reduction_operators.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/reduction/threadblock_swizzle.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/relatively_equal.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/semaphore.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/subbyte_reference.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/tensor_coord.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/tensor_ref.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/tensor_ref_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/tensor_view.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/tensor_view_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/tfloat32.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/thread/matrix.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/trace.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/collective/sm90_wgmma_transpose.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/device/transform_universal_adapter.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/kernel/filter_format_transformer.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/kernel/sm90_sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/kernel/sparse_gemm_compressor.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/pitch_linear_thread_map.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/thread/transpose.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/thread/unary_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_2dthreadtile.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_triangular_matrix.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_vector_access_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_scale_bias_vector_access_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear_direct_conv.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear_2dthreadtile.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op_sm70.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/threadblock/vector_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/transform/warp/vector_fragment_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/uint128.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/uint256.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/wmma_array.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/include/cutlass/workspace.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/GPU_Clock.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/command_line.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/cublas_wrappers.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/debug.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_dump.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_groupnorm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_layernorm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_memory.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nchw_to_nhwc.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_padding.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_pooling.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_to_nchw.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_rmsnorm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/device_utils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/distribution.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/exceptions.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/gett_commandline.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/helper_cuda.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/host_reorder.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/host_uncompress.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/index_sequence.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/mixed_dtype_utils.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/packed_stride.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/print_error.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/inner_product.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/linear_to_coordinate.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/convolution.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gett.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_elementwise.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_foreach.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/rank_2k_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_compare.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_fill.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_foreach.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_reduce.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_relu.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/thread/gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/conv.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/convolution.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/error_metrics.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_planar_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gett.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_k_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_copy.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_elementwise.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_foreach.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_norm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm_complex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/tensor_view_io.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/cutlass/tools/util/include/cutlass/util/type_traits.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/async.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/async_logger-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/async_logger.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/cfg/argv.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/cfg/env.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/cfg/helpers-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/cfg/helpers.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/common-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/common.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/backtracer-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/backtracer.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/circular_q.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/console_globals.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/file_helper-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/file_helper.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/fmt_helper.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/log_msg-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/log_msg.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/mpmc_blocking_q.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/null_mutex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/os-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/os.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/periodic_worker-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/periodic_worker.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/registry-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/registry.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/synchronous_factory.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/tcp_client-windows.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/tcp_client.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/thread_pool-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/thread_pool.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/udp_client-windows.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/udp_client.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/details/windows_include.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bin_to_hex.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/args.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/chrono.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/color.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/compile.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/core.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/fmt.license.rst +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/format-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/format.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/locale.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/os.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/ostream.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/printf.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/ranges.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/std.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/bundled/xchar.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/chrono.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/compile.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/fmt.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/ostr.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/ranges.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/std.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fmt/xchar.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/formatter.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/fwd.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/logger-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/logger.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/mdc.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/pattern_formatter-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/pattern_formatter.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/android_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/base_sink-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/base_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/callback_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/daily_file_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/dist_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/dup_filter_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/hourly_file_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/kafka_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/mongo_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/msvc_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/null_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/ostream_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/qt_sinks.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/ringbuffer_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/sink-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/syslog_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/systemd_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/tcp_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/udp_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/win_eventlog_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/spdlog-inl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/spdlog.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/stopwatch.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/tweakme.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/3rdparty/spdlog/include/spdlog/version.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/LICENSE +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_attention_customize_config.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_attention_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_decode_mla_config.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_prefill_fp8_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_prefill_fp8_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_prefill_paged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_prefill_paged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_prefill_ragged_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/batch_prefill_ragged_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/cudnn_sdpa_utils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/fp4_gemm_cutlass.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/fp4_gemm_cutlass_sm120.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/fp8_gemm_cutlass.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_instantiation.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_kernels.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/gemm_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/gemm_groupwise_sm120_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/group_gemm_fp8_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/group_gemm_fp8_groupwise_sm120_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/group_gemm_mxfp4_groupwise_sm100_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/group_gemm_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/cpp/common/envUtils.cpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/cpp/common/logger.cpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/cpp/common/memoryUtils.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/cpp/common/stringUtils.cpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/cpp/common/tllmException.cpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/NvInferRuntime.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/assert.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/cudaBf16Wrapper.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/cudaFp8Utils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/cudaUtils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/dataType.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/logger.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/quantization.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/stringUtils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/include/tensorrt_llm/common/tllmException.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/common/cublasMMWrapper.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/common/cudaBf16Fallbacks.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/common/cudaDriverWrapper.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/common/cudaTypeUtils.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/common/envUtils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/common/memoryUtils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/common/quantTypeUtils.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/common/reduceKernelUtils.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/common/workspace.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_red_global.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_traits_sm90_multimem.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/grid_dependency_control.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/communication/collective/sm90_allreduce_nvls_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/compute_occupancy.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/detail/collective/mixed_input_utils.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/collective/epilogue_moe_finalize.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/fusion/sm90_visitor_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/thread/fused_activations.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue_helpers.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_gated.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_interleaved.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_mixed_input.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_gated.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_interleaved.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_mixed_input.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_array_mixed_input.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_gated.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_interleaved.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input_.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_gated_tma_gmma_ss_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_gated_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_interleaved_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/default_fpA_intB_traits.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_routine.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_traits.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_moe_problem_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_universal_allreduce.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/mixed_gemm_B_layout.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cute_util.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cutlass_kernel.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_problem_visitor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized_pingpong.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma_bf16.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_base.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_finegrained.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_percol.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_finegrained.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_percol.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/default_mma_tensor_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_compute_B_with_f16.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_dequantizer.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm_configs.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/interleaved_numeric_conversion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/system_barrier.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/tile_interleaved_layout.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/transform/threadblock/fine_grained_scale_zero_iterator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/util/gather_tensor.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/weight_only_quant_op.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.cpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_type_conversion.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm_stub.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_fg_scalebias.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_fg_scaleonly.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_per_col.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_fg_scalebias.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_fg_scaleonly.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_per_col.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scalebias_bf16_out_bf16.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scalebias_f16_out_f16.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scaleonly_bf16_out_bf16.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scaleonly_f16_out_f16.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_per_col_f16_out_f16.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_fg_scalebias.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_fg_scaleonly.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_per_col.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_fg_scalebias.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_fg_scaleonly.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_per_col.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm_template.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm_template_sm90.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/launchers/fpA_intB_launcher_sm90.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/launchers/fpA_intB_launcher_sm90.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/common.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/cutlass_kernel_selector.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_kernels.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.inl +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_bf16.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_fp4.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_fp8.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint4.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint8.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_fp16.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_fp4.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint4.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint8.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp32_fp32.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp4_fp4.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp4.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp8.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_uint4.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws_mixed_dtype.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_tma_warp_specialized_input.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_tma_warp_specialized_traits.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.cpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/pod_customize_config.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/runtime_utils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/single_decode_customize_config.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/single_decode_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/single_prefill_customize_config.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/single_prefill_fp8_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/single_prefill_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/single_prefill_sm90_customize_config.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/single_prefill_sm90_kernel_inst.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/tgv_gemm.jinja +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/trtllm_alltoall_prepare.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/barriers.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/cuda_hint.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/defines.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/hostUtils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/ldgsts.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/mha.cu +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/mha.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/mhaUtils.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/mha_components.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/mha_stdheaders.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/mma.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/platform.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/specDec.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/utils.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/csrc/xqa/utils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/attention.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/comm/__init__.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/comm/cuda_ipc.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/comm/dlpack_utils.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/comm/mapping.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/cudnn/__init__.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/cudnn/decode.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/cudnn/prefill.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/cute_dsl/blockscaled_gemm.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/cute_dsl/utils.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/fused_moe/utils.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/green_ctx.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/jit/attention/variants.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/jit/cutlass_gemm/__init__.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/jit/cutlass_gemm/cutlass_library.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/jit/cutlass_gemm/generate_kernels.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/jit/utils.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/__init__.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/compiler.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/fusion_rules.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/legalization.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/op.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/operators.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/pipeline.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/processors.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/types.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/logits_processor/validators.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/profiler/__init__.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/py.typed +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/sparse.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/testing/__init__.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/testing/utils.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/tllm_utils.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/__init__.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/activation.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/cascade.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/gemm.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/kernels/__init__.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/kernels/activation.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/kernels/cascade.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/kernels/norm.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/kernels/quant.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/kernels/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/norm.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/page.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/sm_constraint_gemm.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/triton/utils.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/tuning_configs/v0_1_trtllm_fused_moe_NVIDIA_B200.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer/tuning_configs/v0_1_trtllm_fused_moe_NVIDIA_GB200.py +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer_python.egg-info/dependency_links.txt +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/flashinfer_python.egg-info/top_level.txt +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/activation.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/allocator.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/arch_condition.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/collective/fmha_common.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/collective/fmha_fusion.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_epilogue_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_mainloop_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_epilogue_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_mainloop_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_cpasync_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/common/pow_2.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/device/fmha.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/device/sm100_mla.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/fmha_cutlass_sm100.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/kernel/fmha_options.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/kernel/fmha_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/kernel/gather_tensor.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_fwd_kernel_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_gen_kernel_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_reduction.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_tma_warpspecialized.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/kernel/sm100_mla_tile_scheduler.hpp +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/blackwell/plan.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/cascade.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/cutlass_mla.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/decode.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/decode_mla_cute_sm80.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/default_decode_params.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/default_prefill_params.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/heap.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/attention_updater.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/block_sparse_gather.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/default_params.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/epilogue.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/kernel_traits.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/mainloop.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/named_barrier.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/quantization/epilogue.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/quantization/kernel_traits.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/quantization/mainloop_load.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/quantization/mainloop_mma.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/quantization/mainloop_sparse_load.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/quantization/prefill_sm90.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/sparse_mainloop.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/tile_scheduler.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/utils.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/variant_helper.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper/variants.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/hopper.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/mask.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/mla.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/mla_hopper.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/mla_params.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/persistent_template.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/pod.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/prefill.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/scheduler.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/state.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/variant_helper.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention/variants.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/attention_impl.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/comm/trtllm_allreduce.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/comm/trtllm_allreduce_fusion.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/comm/trtllm_alltoall.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/comm/trtllm_alltoall_prepare.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/comm/trtllm_mnnvl_allreduce.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/comm/trtllm_moe_allreduce_fusion.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/comm/vllm_custom_all_reduce.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/cp_async.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/cubin_loader.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/cutlass_utils.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/fastdiv.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/fp16.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/fp4_layout.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/frag_layout_swizzle.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/bmm_fp8.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/cutlass_gemm_configs.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/fp4_gemm_cutlass.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/fp4_gemm_cutlass_template.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/fp4_gemm_cutlass_template_sm120.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/fp4_gemm_template_sm100.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/fp4_gemm_template_sm120.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/fp8_gemm_cutlass.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/fp8_gemm_cutlass_template.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/fp8_gemm_template_sm100.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/gemm_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/gemm_groupwise_sm120.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/group_gemm.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/group_gemm_fp8_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/group_gemm_fp8_groupwise_sm120.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/group_gemm_lora.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/group_gemm_mxfp4_groupwise_sm100.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/group_gemm_sm90.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/group_gemv.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/tgv_gemm.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/tgv_gemm_configs.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/gemm/tgv_gemm_template.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/layout.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/logging.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/math.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/mma.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/norm.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/page.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/permuted_smem.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/pos_enc.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/quantization.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/sampling.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmEnums.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmOptions.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/Enums.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmGatedActOptions.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmOptions.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParams.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParamsDecl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelTraits.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/TmaDescriptor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CommonUtils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CudaKernelLauncher.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/DtypeDecl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/MmaDecl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/SfLayoutDecl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/common/cudaBf16Fallbacks.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/common/cudaBf16Wrapper.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/common/cudaFp8Utils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/common/cudaTypeUtils.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/fmha/decoder_params.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/fmha/fmhaReduction.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/fmha/fmhaRunnerParams.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/fmha/kernelUtils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/fmha/lse.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/fused_moe/IntFastDiv.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/fused_moe/RoutingKernel.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/fused_moe/RoutingKernelTopK.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/fused_moe/runner.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/Enums.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/GemmOptions.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelParams.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelParamsDecl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelTraits.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/TmaDescriptor.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/CommonUtils.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/CudaKernelLauncher.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/DtypeDecl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/MmaDecl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/SfLayoutDecl.h +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/utils.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/include/flashinfer/vec_dtypes.cuh +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/licenses/LICENSE.cutlass.txt +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/licenses/LICENSE.flashattention3.txt +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/licenses/LICENSE.fmt.txt +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/licenses/LICENSE.spdlog.txt +0 -0
- {flashinfer_python-0.4.0rc2 → flashinfer_python-0.4.0rc4}/setup.cfg +0 -0
|
@@ -0,0 +1,691 @@
|
|
|
1
|
+
/***************************************************************************************************
|
|
2
|
+
* Copyright (c) 2023 - 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
*
|
|
11
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
* this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
* and/or other materials provided with the distribution.
|
|
14
|
+
*
|
|
15
|
+
* 3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
* contributors may be used to endorse or promote products derived from
|
|
17
|
+
* this software without specific prior written permission.
|
|
18
|
+
*
|
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29
|
+
*
|
|
30
|
+
**************************************************************************************************/
|
|
31
|
+
#pragma once
|
|
32
|
+
|
|
33
|
+
#include <cute/config.hpp> // CUTE_HOST_DEVICE
|
|
34
|
+
#include <cute/tensor_impl.hpp> // cute::Tensor
|
|
35
|
+
#include <cute/util/type_traits.hpp> // cute::__CUTE_REQUIRES
|
|
36
|
+
#include <cute/container/tuple.hpp> // cute::is_tuple
|
|
37
|
+
#include <cute/numeric/integral_constant.hpp> // cute::is_constant, cute::is_integral
|
|
38
|
+
#include <cute/atom/copy_traits.hpp> // cute::Copy_Traits
|
|
39
|
+
#include <cute/atom/mma_atom.hpp> // cute::TiledMMA
|
|
40
|
+
|
|
41
|
+
namespace cute
|
|
42
|
+
{
|
|
43
|
+
|
|
44
|
+
template <class... Args>
|
|
45
|
+
struct Copy_Atom;
|
|
46
|
+
|
|
47
|
+
template <class CopyOperation, class CopyInternalType>
|
|
48
|
+
struct Copy_Atom<CopyOperation, CopyInternalType> : Copy_Atom<Copy_Traits<CopyOperation>, CopyInternalType>
|
|
49
|
+
{};
|
|
50
|
+
|
|
51
|
+
template <class... Args, class CopyInternalType>
|
|
52
|
+
struct Copy_Atom<Copy_Traits<Args...>, CopyInternalType>
|
|
53
|
+
: Copy_Traits<Args...>
|
|
54
|
+
{
|
|
55
|
+
using Traits = Copy_Traits<Args...>;
|
|
56
|
+
|
|
57
|
+
// Bit and Thr layouts from the Copy_Traits
|
|
58
|
+
using ThrID = typename Traits::ThrID;
|
|
59
|
+
using BitLayoutSrc = typename Traits::SrcLayout;
|
|
60
|
+
using BitLayoutDst = typename Traits::DstLayout;
|
|
61
|
+
using BitLayoutRef = typename Traits::RefLayout;
|
|
62
|
+
|
|
63
|
+
using ValType = CopyInternalType;
|
|
64
|
+
|
|
65
|
+
using ValLayoutSrc = decltype(recast_layout<uint1_t, ValType>(BitLayoutSrc{}));
|
|
66
|
+
using ValLayoutDst = decltype(recast_layout<uint1_t, ValType>(BitLayoutDst{}));
|
|
67
|
+
using ValLayoutRef = decltype(recast_layout<uint1_t, ValType>(BitLayoutRef{}));
|
|
68
|
+
|
|
69
|
+
CUTE_STATIC_ASSERT_V(size<0>(ValLayoutSrc{}) == size(ThrID{}), "CopyOperation is not valid for Src of ValType.");
|
|
70
|
+
CUTE_STATIC_ASSERT_V(size<0>(ValLayoutDst{}) == size(ThrID{}), "CopyOperation is not valid for Dst of ValType.");
|
|
71
|
+
CUTE_STATIC_ASSERT_V(size<0>(ValLayoutRef{}) == size(ThrID{}), "CopyOperation is not valid for Ref of ValType.");
|
|
72
|
+
|
|
73
|
+
static constexpr int NumValSrc = size<1>(ValLayoutSrc{});
|
|
74
|
+
static constexpr int NumValDst = size<1>(ValLayoutDst{});
|
|
75
|
+
|
|
76
|
+
// Additional Trait parameters/transformations
|
|
77
|
+
template <class... TraitsArgs>
|
|
78
|
+
CUTE_HOST_DEVICE
|
|
79
|
+
auto
|
|
80
|
+
with(TraitsArgs&&... args) const {
|
|
81
|
+
auto traits = Traits::with(static_cast<TraitsArgs&&>(args)...);
|
|
82
|
+
return Copy_Atom<decltype(traits), CopyInternalType>{traits};
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
//
|
|
86
|
+
// Tensor call interfaces
|
|
87
|
+
//
|
|
88
|
+
|
|
89
|
+
// Check and call instruction, or recurse
|
|
90
|
+
template <class SEngine, class SLayout,
|
|
91
|
+
class DEngine, class DLayout>
|
|
92
|
+
CUTE_HOST_DEVICE
|
|
93
|
+
void
|
|
94
|
+
call(Tensor<SEngine,SLayout> const& src,
|
|
95
|
+
Tensor<DEngine,DLayout> & dst) const
|
|
96
|
+
{
|
|
97
|
+
static_assert(SLayout::rank == 1, "Expected rank-1 src tensor");
|
|
98
|
+
static_assert(DLayout::rank == 1, "Expected rank-1 dst tensor");
|
|
99
|
+
|
|
100
|
+
if constexpr (is_constant<NumValSrc, decltype(size(src))>::value ||
|
|
101
|
+
is_constant<NumValDst, decltype(size(dst))>::value) {
|
|
102
|
+
// Dispatch to unpack to execute instruction
|
|
103
|
+
return copy_unpack(static_cast<Traits const&>(*this), src, dst);
|
|
104
|
+
} else if constexpr (is_tuple<decltype(shape(src))>::value &&
|
|
105
|
+
is_tuple<decltype(shape(dst))>::value) {
|
|
106
|
+
// If the size of the src/dst doesn't match the instruction,
|
|
107
|
+
// recurse this rank-1 layout by peeling off the mode
|
|
108
|
+
// ((A,B,C,...)) -> (A,B,C,...)
|
|
109
|
+
return copy(*this, tensor<0>(src), tensor<0>(dst));
|
|
110
|
+
} else {
|
|
111
|
+
static_assert(dependent_false<SEngine>,
|
|
112
|
+
"CopyAtom: Src/Dst partitioning does not match the instruction requirement.");
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Accept mutable temporaries
|
|
117
|
+
template <class SEngine, class SLayout,
|
|
118
|
+
class DEngine, class DLayout>
|
|
119
|
+
CUTE_HOST_DEVICE
|
|
120
|
+
void
|
|
121
|
+
call(Tensor<SEngine,SLayout> const& src,
|
|
122
|
+
Tensor<DEngine,DLayout> && dst) const
|
|
123
|
+
{
|
|
124
|
+
return call(src, dst);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// Check and call instruction, or recurse
|
|
128
|
+
template <class PEngine, class PLayout,
|
|
129
|
+
class SEngine, class SLayout,
|
|
130
|
+
class DEngine, class DLayout>
|
|
131
|
+
CUTE_HOST_DEVICE
|
|
132
|
+
void
|
|
133
|
+
call(Tensor<PEngine,PLayout> const& prd,
|
|
134
|
+
Tensor<SEngine,SLayout> const& src,
|
|
135
|
+
Tensor<DEngine,DLayout> & dst) const
|
|
136
|
+
{
|
|
137
|
+
static_assert(PLayout::rank == 1, "Expected rank-1 prd tensor");
|
|
138
|
+
static_assert(SLayout::rank == 1, "Expected rank-1 src tensor");
|
|
139
|
+
static_assert(DLayout::rank == 1, "Expected rank-1 dst tensor");
|
|
140
|
+
|
|
141
|
+
if constexpr (is_constant<NumValSrc, decltype(size(src))>::value ||
|
|
142
|
+
is_constant<NumValDst, decltype(size(dst))>::value) {
|
|
143
|
+
// Dispatch to unpack to execute instruction
|
|
144
|
+
Traits const& traits = static_cast<Traits const&>(*this);
|
|
145
|
+
auto has_with_bool = cute::is_valid([](auto t)->void_t<decltype(t.with(true))>{}, traits);
|
|
146
|
+
if constexpr (has_with_bool) {
|
|
147
|
+
copy_unpack(traits.with(prd(Int<0>{})), src, dst);
|
|
148
|
+
} else {
|
|
149
|
+
if (prd(Int<0>{})) { copy_unpack(traits, src, dst); }
|
|
150
|
+
}
|
|
151
|
+
} else if constexpr (is_tuple<decltype(shape(prd))>::value &&
|
|
152
|
+
is_tuple<decltype(shape(src))>::value &&
|
|
153
|
+
is_tuple<decltype(shape(dst))>::value) {
|
|
154
|
+
// If the size of the src/dst doesn't match the instruction,
|
|
155
|
+
// recurse this rank-1 layout by peeling off the mode
|
|
156
|
+
// ((A,B,C,...)) -> (A,B,C,...)
|
|
157
|
+
return copy_if(*this, tensor<0>(prd), tensor<0>(src), tensor<0>(dst));
|
|
158
|
+
} else {
|
|
159
|
+
static_assert(dependent_false<SEngine>,
|
|
160
|
+
"CopyAtom: Src/Dst partitioning does not match the instruction requirement.");
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// Accept mutable temporaries
|
|
165
|
+
template <class PEngine, class PLayout,
|
|
166
|
+
class SEngine, class SLayout,
|
|
167
|
+
class DEngine, class DLayout>
|
|
168
|
+
CUTE_HOST_DEVICE
|
|
169
|
+
void
|
|
170
|
+
call(Tensor<PEngine,PLayout> const& prd,
|
|
171
|
+
Tensor<SEngine,SLayout> const& src,
|
|
172
|
+
Tensor<DEngine,DLayout> && dst) const
|
|
173
|
+
{
|
|
174
|
+
return call(prd, src, dst);
|
|
175
|
+
}
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
//
|
|
179
|
+
// A tiling of copy atoms
|
|
180
|
+
//
|
|
181
|
+
|
|
182
|
+
template <class TiledCopy, class ThrIdx>
|
|
183
|
+
struct ThrCopy;
|
|
184
|
+
|
|
185
|
+
template <class Copy_Atom,
|
|
186
|
+
class LayoutCopy_TV, // (tid,vid) -> coord [Need not be 2D...]
|
|
187
|
+
class ShapeTiler_MN> // coord space
|
|
188
|
+
struct TiledCopy : Copy_Atom
|
|
189
|
+
{
|
|
190
|
+
// Layout information from the CopyAtom
|
|
191
|
+
using AtomThrID = typename Copy_Atom::ThrID; // thrid -> thr_idx
|
|
192
|
+
using AtomLayoutSrc = typename Copy_Atom::ValLayoutSrc; // (thr,val) -> offset
|
|
193
|
+
using AtomLayoutDst = typename Copy_Atom::ValLayoutDst; // (thr,val) -> offset
|
|
194
|
+
using AtomLayoutRef = typename Copy_Atom::ValLayoutRef; // (thr,val) -> offset
|
|
195
|
+
|
|
196
|
+
using AtomNumThr = decltype(size<0>(AtomLayoutRef{}));
|
|
197
|
+
using AtomNumVal = decltype(size<1>(AtomLayoutRef{}));
|
|
198
|
+
|
|
199
|
+
// Layout information for the TiledCopy
|
|
200
|
+
using Tiler_MN = ShapeTiler_MN;
|
|
201
|
+
using TiledLayout_TV = LayoutCopy_TV;
|
|
202
|
+
using TiledNumThr = decltype(size<0>(TiledLayout_TV{}));
|
|
203
|
+
using TiledNumVal = decltype(size<1>(TiledLayout_TV{}));
|
|
204
|
+
|
|
205
|
+
CUTE_STATIC_ASSERT_V(TiledNumThr{} % AtomNumThr{} == Int<0>{}, "TiledCopy uses too few thrs for selected CopyAtom");
|
|
206
|
+
CUTE_STATIC_ASSERT_V(TiledNumVal{} % AtomNumVal{} == Int<0>{}, "TiledCopy uses too few vals for selected CopyAtom");
|
|
207
|
+
|
|
208
|
+
// Tile a tensor or a layout from shape
|
|
209
|
+
// (M,N,...)
|
|
210
|
+
// to shape
|
|
211
|
+
// (Thr,(FrgV,FrgX),(RestM,RestN,...))
|
|
212
|
+
// where
|
|
213
|
+
// Thr: The logical threads within the tiled copy.
|
|
214
|
+
// FrgV: The values local to a COPY_ATOM Src.
|
|
215
|
+
// FrgX: The values tiled across COPY_ATOMs Src.
|
|
216
|
+
// RestM: The values tiled in M.
|
|
217
|
+
// RestN: The values tiled in N.
|
|
218
|
+
template <class STensor>
|
|
219
|
+
CUTE_HOST_DEVICE constexpr static
|
|
220
|
+
auto
|
|
221
|
+
tidfrg_S(STensor&& stensor)
|
|
222
|
+
{
|
|
223
|
+
CUTE_STATIC_ASSERT_V(rank(stensor) >= rank(Tiler_MN{}), "Rank of tensor to be partitioned too small.");
|
|
224
|
+
|
|
225
|
+
// Tile the stensor and compute the (src-thr, src-val) -> (ref-thr, ref-val) layout
|
|
226
|
+
return tile2thrfrg(zipped_divide(stensor,Tiler_MN{}), right_inverse(AtomLayoutRef{}).compose(AtomLayoutSrc{}));
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
// Tile a tensor or a layout from shape
|
|
230
|
+
// (M,N,...)
|
|
231
|
+
// to shape
|
|
232
|
+
// (Thr,(FrgV,FrgX),(RestM,RestN,...))
|
|
233
|
+
// where
|
|
234
|
+
// Thr: The logical threads within the tiled copy.
|
|
235
|
+
// FrgV: The values local to a COPY_ATOM Dst.
|
|
236
|
+
// FrgX: The values tiled across COPY_ATOMs Dst.
|
|
237
|
+
// RestM: The values tiled in M.
|
|
238
|
+
// RestN: The values tiled in N.
|
|
239
|
+
template <class DTensor>
|
|
240
|
+
CUTE_HOST_DEVICE constexpr static
|
|
241
|
+
auto
|
|
242
|
+
tidfrg_D(DTensor&& dtensor)
|
|
243
|
+
{
|
|
244
|
+
CUTE_STATIC_ASSERT_V(rank(dtensor) >= rank(Tiler_MN{}), "Rank of tensor to be partitioned too small.");
|
|
245
|
+
|
|
246
|
+
// Tile the dtensor and compute the (dst-thr, dst-val) -> (ref-thr, ref-val) layout
|
|
247
|
+
return tile2thrfrg(zipped_divide(dtensor,Tiler_MN{}), right_inverse(AtomLayoutRef{}).compose(AtomLayoutDst{}));
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
// Tile a tensor or a layout from shape
|
|
251
|
+
// ((TileM,TileN,...), (RestM,RestN,...))
|
|
252
|
+
// to shape
|
|
253
|
+
// (Thr,(FrgV,FrgX),(RestM,RestN,...))
|
|
254
|
+
template <class Tensor, class Ref2TrgLayout>
|
|
255
|
+
CUTE_HOST_DEVICE constexpr static
|
|
256
|
+
auto
|
|
257
|
+
tile2thrfrg(Tensor&& tensor, Ref2TrgLayout const& ref2trg)
|
|
258
|
+
{
|
|
259
|
+
// Take the thrs/vals that the atom is interested in
|
|
260
|
+
// NOTE: Assumes the AtomNumThr are contiguous and identity within TiledThrID
|
|
261
|
+
auto atom_layout_TV = zipped_divide(TiledLayout_TV{}, make_shape(AtomNumThr{}, AtomNumVal{}));
|
|
262
|
+
// ((atom_tid,atom_val),(rest_tid,rest_val)) -> (m,n)
|
|
263
|
+
|
|
264
|
+
// Transform to the trg layout
|
|
265
|
+
auto trg_layout_TV = atom_layout_TV.compose(ref2trg, _);
|
|
266
|
+
// ((trg_tid,trg_val),(rest_tid,rest_val)) -> (m,n)
|
|
267
|
+
|
|
268
|
+
// Transform the thrs mode from thrid to thr_idx
|
|
269
|
+
// NOTE: Assumes the AtomNumThr are contiguous and identity within TiledThrID
|
|
270
|
+
auto thrval2mn = coalesce(zip(trg_layout_TV), Shape<_1,Shape<_1,_1>>{});
|
|
271
|
+
// ((trg_tid,rest_tid),(trg_val,rest_val)) -> (m,n)
|
|
272
|
+
|
|
273
|
+
/// ==================
|
|
274
|
+
|
|
275
|
+
// Transform the tile mode
|
|
276
|
+
auto tv_tensor = tensor.compose(thrval2mn, _);
|
|
277
|
+
// ((thrid,val),(RestM,RestN,...))
|
|
278
|
+
|
|
279
|
+
// Unfold and return
|
|
280
|
+
return tv_tensor(make_coord(_,_), _);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
// retile_S and retile_D assume they are working with the reference layout -- they are the same
|
|
284
|
+
template <class Tensor>
|
|
285
|
+
CUTE_HOST_DEVICE constexpr static
|
|
286
|
+
auto
|
|
287
|
+
retile(Tensor&& tensor)
|
|
288
|
+
{
|
|
289
|
+
constexpr int R = remove_cvref_t<Tensor>::rank;
|
|
290
|
+
// Assert that AtomLayoutSrc|Dst is identity so we can skip the Ref transformation
|
|
291
|
+
|
|
292
|
+
// Assume the first size<0>(tensor) elements are the first val_ids in TiledLayout_TV.
|
|
293
|
+
// Then, we only need the shape+layout of those size<0>(tensor) elements in TiledLayout_TV
|
|
294
|
+
// and that shape is what we gather from the other modes of tensor
|
|
295
|
+
|
|
296
|
+
auto V = size<0>(tensor);
|
|
297
|
+
|
|
298
|
+
auto frg_layout_mn = upcast<TiledNumThr{} * V>(right_inverse(TiledLayout_TV{}).with_shape(shape(Tiler_MN{})));
|
|
299
|
+
// (m,n) -> v_idx -- The shape and order of the V inside of TiledLayout_TV
|
|
300
|
+
|
|
301
|
+
auto frg_layout_v = zipped_divide(logical_product(make_layout(V), right_inverse(frg_layout_mn)), make_layout(AtomNumVal{}));
|
|
302
|
+
// (atom_vals,rest_vals) -> (v,m,n)
|
|
303
|
+
|
|
304
|
+
/// =======
|
|
305
|
+
|
|
306
|
+
// Tile the tensor for TileFrg
|
|
307
|
+
auto t_tensor = zipped_divide(tensor, prepend(product_each(shape(frg_layout_mn)), V));
|
|
308
|
+
// ((TileV,TileM,TileN,...),(1,RestM,RestN,...))
|
|
309
|
+
|
|
310
|
+
// Transform the tile mode
|
|
311
|
+
auto v_tensor = t_tensor.compose(frg_layout_v, _);
|
|
312
|
+
// ((atom_vals,rest_vals),(1,RM,RN,...))
|
|
313
|
+
|
|
314
|
+
// Unfold and return
|
|
315
|
+
return v_tensor(_, append<R>(Int<0>{},_));
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
CUTE_HOST_DEVICE constexpr static
|
|
319
|
+
auto
|
|
320
|
+
get_layoutS_TV()
|
|
321
|
+
{
|
|
322
|
+
// (M,N) -> (M,N)
|
|
323
|
+
auto ref_S = make_layout(make_shape(shape(Tiler_MN{}), Int<1>{}));
|
|
324
|
+
// (thr_idx,val_idx) -> (M,N)
|
|
325
|
+
return tile2thrfrg(ref_S, right_inverse(AtomLayoutRef{}).compose(AtomLayoutSrc{}))(_,_,Int<0>{});
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
CUTE_HOST_DEVICE constexpr static
|
|
329
|
+
auto
|
|
330
|
+
get_layoutD_TV()
|
|
331
|
+
{
|
|
332
|
+
// (M,N) -> (M,N)
|
|
333
|
+
auto ref_D = make_layout(make_shape(shape(Tiler_MN{}), Int<1>{}));
|
|
334
|
+
// (thr_idx,val_idx) -> (M,N)
|
|
335
|
+
return tile2thrfrg(ref_D, right_inverse(AtomLayoutRef{}).compose(AtomLayoutDst{}))(_,_,Int<0>{});
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
template <class ThrIdx,
|
|
339
|
+
__CUTE_REQUIRES(is_integral<ThrIdx>::value)>
|
|
340
|
+
CUTE_HOST_DEVICE static
|
|
341
|
+
auto
|
|
342
|
+
get_slice(ThrIdx const& thr_idx)
|
|
343
|
+
{
|
|
344
|
+
return ThrCopy<TiledCopy, ThrIdx>(thr_idx);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
template <class ThrIdx,
|
|
348
|
+
__CUTE_REQUIRES(is_integral<ThrIdx>::value)>
|
|
349
|
+
CUTE_HOST_DEVICE static
|
|
350
|
+
auto
|
|
351
|
+
get_thread_slice(ThrIdx const& thr_idx)
|
|
352
|
+
{
|
|
353
|
+
return get_slice(thr_idx);
|
|
354
|
+
}
|
|
355
|
+
};
|
|
356
|
+
|
|
357
|
+
template <class TiledCopy, class ThrIdx>
|
|
358
|
+
struct ThrCopy
|
|
359
|
+
{
|
|
360
|
+
ThrIdx thr_idx_;
|
|
361
|
+
|
|
362
|
+
CUTE_HOST_DEVICE
|
|
363
|
+
ThrCopy(ThrIdx const& thr_idx) : thr_idx_(thr_idx) {}
|
|
364
|
+
|
|
365
|
+
template <class STensor>
|
|
366
|
+
CUTE_HOST_DEVICE
|
|
367
|
+
auto
|
|
368
|
+
partition_S(STensor&& stensor) const {
|
|
369
|
+
//static_assert(sizeof(typename remove_cvref_t<STensor>::value_type) == sizeof(typename TiledCopy::ValType),
|
|
370
|
+
// "Expected ValType for tiling SrcTensor.");
|
|
371
|
+
auto thr_tensor = make_tensor(static_cast<STensor&&>(stensor).data(), TiledCopy::tidfrg_S(stensor.layout()));
|
|
372
|
+
return thr_tensor(thr_idx_, _, repeat<rank_v<STensor>>(_));
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
template <class DTensor>
|
|
376
|
+
CUTE_HOST_DEVICE
|
|
377
|
+
auto
|
|
378
|
+
partition_D(DTensor&& dtensor) const {
|
|
379
|
+
//static_assert(sizeof(typename remove_cvref_t<DTensor>::value_type) == sizeof(typename TiledCopy::ValType),
|
|
380
|
+
// "Expected ValType for tiling DstTensor.");
|
|
381
|
+
auto thr_tensor = make_tensor(static_cast<DTensor&&>(dtensor).data(), TiledCopy::tidfrg_D(dtensor.layout()));
|
|
382
|
+
return thr_tensor(thr_idx_, _, repeat<rank_v<DTensor>>(_));
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
template <class STensor>
|
|
386
|
+
CUTE_HOST_DEVICE static
|
|
387
|
+
auto
|
|
388
|
+
retile_S(STensor&& stensor) {
|
|
389
|
+
// static_assert(sizeof(typename remove_cvref_t<STensor>::value_type) == sizeof(typename TiledCopy::ValType),
|
|
390
|
+
// "Expected ValType for tiling SrcTensor.");
|
|
391
|
+
return make_tensor(static_cast<STensor&&>(stensor).data(), TiledCopy::retile(stensor.layout()));
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
template <class DTensor>
|
|
395
|
+
CUTE_HOST_DEVICE static
|
|
396
|
+
auto
|
|
397
|
+
retile_D(DTensor&& dtensor) {
|
|
398
|
+
// static_assert(sizeof(typename remove_cvref_t<DTensor>::value_type) == sizeof(typename TiledCopy::ValType),
|
|
399
|
+
// "Expected ValType for tiling DstTensor.");
|
|
400
|
+
return make_tensor(static_cast<DTensor&&>(dtensor).data(), TiledCopy::retile(dtensor.layout()));
|
|
401
|
+
}
|
|
402
|
+
};
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
template <class... Args,
|
|
406
|
+
class LayoutCopy_TV,
|
|
407
|
+
class Tiler>
|
|
408
|
+
CUTE_HOST_DEVICE
|
|
409
|
+
auto
|
|
410
|
+
make_tiled_copy_impl(Copy_Atom<Args...> const& atom,
|
|
411
|
+
LayoutCopy_TV const&,
|
|
412
|
+
Tiler const&)
|
|
413
|
+
{
|
|
414
|
+
return TiledCopy<Copy_Atom<Args...>, LayoutCopy_TV, Tiler>{atom};
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
//
|
|
418
|
+
// These tile the Copy_Atom as a whole
|
|
419
|
+
//
|
|
420
|
+
|
|
421
|
+
template <class... CArgs, class... MArgs>
|
|
422
|
+
CUTE_HOST_DEVICE
|
|
423
|
+
auto
|
|
424
|
+
make_tiled_copy_A(Copy_Atom<CArgs...> const& copy_atom,
|
|
425
|
+
TiledMMA<MArgs...> const& mma)
|
|
426
|
+
{
|
|
427
|
+
return make_tiled_copy_impl(copy_atom, mma.get_layoutA_TV(), make_shape(tile_size<0>(mma),tile_size<2>(mma)));
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
template <class... CArgs, class... MArgs>
|
|
431
|
+
CUTE_HOST_DEVICE
|
|
432
|
+
auto
|
|
433
|
+
make_tiled_copy_B(Copy_Atom<CArgs...> const& copy_atom,
|
|
434
|
+
TiledMMA<MArgs...> const& mma)
|
|
435
|
+
{
|
|
436
|
+
return make_tiled_copy_impl(copy_atom, mma.get_layoutB_TV(), make_shape(tile_size<1>(mma),tile_size<2>(mma)));
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
template <class... CArgs, class... MArgs>
|
|
440
|
+
CUTE_HOST_DEVICE
|
|
441
|
+
auto
|
|
442
|
+
make_tiled_copy_C(Copy_Atom<CArgs...> const& copy_atom,
|
|
443
|
+
TiledMMA<MArgs...> const& mma)
|
|
444
|
+
{
|
|
445
|
+
return make_tiled_copy_impl(copy_atom, mma.get_layoutC_TV(), make_shape(tile_size<0>(mma),tile_size<1>(mma)));
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
// returns the smallest tiled copy that can retile LayoutC_TV
|
|
449
|
+
// for use with pipelined epilogues with subtiled stores
|
|
450
|
+
template <class... CArgs, class... MArgs>
|
|
451
|
+
CUTE_HOST_DEVICE
|
|
452
|
+
auto
|
|
453
|
+
make_tiled_copy_C_atom(Copy_Atom<CArgs...> const& copy_atom,
|
|
454
|
+
TiledMMA<MArgs...> const& mma)
|
|
455
|
+
{
|
|
456
|
+
// Truncate the V-layout to just the Copy_Atom, keep the V-order
|
|
457
|
+
auto layoutC_TV = mma.get_layoutC_TV();
|
|
458
|
+
auto copy_V = Int<Copy_Atom<CArgs...>::NumValSrc>{};
|
|
459
|
+
CUTE_STATIC_ASSERT_V(copy_V <= size<1>(layoutC_TV));
|
|
460
|
+
auto layout_TV = composition(layoutC_TV, make_layout(make_shape(size<0>(layoutC_TV), copy_V)));
|
|
461
|
+
|
|
462
|
+
// Recompute tiler and restride the TV layout for the new tiler
|
|
463
|
+
|
|
464
|
+
// Tiler -- Find the active elements in the MMA tensor and generate a tiler to extract them
|
|
465
|
+
// Convert to the awkward by-mode tiler to preserve the modes of the tiled MMA
|
|
466
|
+
auto mma_tiler = make_shape(tile_size<0>(mma),tile_size<1>(mma));
|
|
467
|
+
auto mma_zeros = repeat_like(mma_tiler, Int<0>{});
|
|
468
|
+
|
|
469
|
+
auto tiler = transform(make_seq<rank(mma_tiler)>{}, [&](auto i) {
|
|
470
|
+
return filter(composition(make_layout(mma_tiler, replace<i>(mma_zeros, Int<1>{})), layout_TV));
|
|
471
|
+
});
|
|
472
|
+
|
|
473
|
+
// Layout_TV -- Find the (tid,vid) -> tile coord transformation
|
|
474
|
+
// Apply the tiler to a reference and transform the codomain
|
|
475
|
+
// tile_coord -> mma_coord
|
|
476
|
+
auto tile2mma = composition(make_layout(mma_tiler), tiler);
|
|
477
|
+
|
|
478
|
+
// (tid,vid) -> tile_coord
|
|
479
|
+
auto layout_tv = composition(left_inverse(tile2mma), layout_TV);
|
|
480
|
+
|
|
481
|
+
return make_tiled_copy_impl(copy_atom, layout_tv, tiler);
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
/** Produce a TiledCopy from logical thread and values layouts.
|
|
485
|
+
* The thread and value layouts map coordinates to thr_idx and val_idx.
|
|
486
|
+
* The product of these layouts is taken to produce the TV layout and the Tiler.
|
|
487
|
+
* Useful when threads and values need very specific mappings onto coordinates
|
|
488
|
+
* in the target tensors.
|
|
489
|
+
*/
|
|
490
|
+
template <class... Args,
|
|
491
|
+
class ThrLayout,
|
|
492
|
+
class ValLayout = Layout<_1>>
|
|
493
|
+
CUTE_HOST_DEVICE
|
|
494
|
+
auto
|
|
495
|
+
make_tiled_copy(Copy_Atom<Args...> const& copy_atom,
|
|
496
|
+
ThrLayout const& thr_layout = {}, // (m,n) -> thr_idx
|
|
497
|
+
ValLayout const& val_layout = {}) // (m,n) -> val_idx
|
|
498
|
+
{
|
|
499
|
+
// Take the raked_products to compute the Layout_MN
|
|
500
|
+
// (M,N) -> (thr_idx, val_idx)
|
|
501
|
+
auto layout_mn = raked_product(thr_layout, val_layout);
|
|
502
|
+
// (thr_idx, val_idx) -> (M,N)
|
|
503
|
+
auto layout_tv = right_inverse(layout_mn).with_shape(make_shape(size(thr_layout), size(val_layout)));
|
|
504
|
+
// Tiler for extracting relevant elements
|
|
505
|
+
// (M,N) -> tensor coord
|
|
506
|
+
auto tiler = product_each(shape(layout_mn));
|
|
507
|
+
|
|
508
|
+
#if 0
|
|
509
|
+
print("thr_layout: "); print(thr_layout); print("\n");
|
|
510
|
+
print("val_layout: "); print(val_layout); print("\n");
|
|
511
|
+
print("layout_mn : "); print(layout_mn); print("\n");
|
|
512
|
+
print("layout_tv : "); print(layout_tv); print("\n");
|
|
513
|
+
print("tiler : "); print(tiler); print("\n");
|
|
514
|
+
#endif
|
|
515
|
+
|
|
516
|
+
return make_tiled_copy_impl(copy_atom, layout_tv, tiler);
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
/** Produce a TiledCopy from thread and value offset maps.
|
|
520
|
+
* The TV Layout maps threads and values to the codomain of the data_layout.
|
|
521
|
+
* It is verified that the intended codomain is valid within data_layout.
|
|
522
|
+
* Useful when threads and values don't care about owning specific coordinates, but
|
|
523
|
+
* care more about the vector-width and offsets between them.
|
|
524
|
+
*/
|
|
525
|
+
template <class... Args, class AtomTVLayout, class DataLayout>
|
|
526
|
+
CUTE_HOST_DEVICE constexpr
|
|
527
|
+
auto
|
|
528
|
+
make_cotiled_copy(Copy_Atom<Args...> const& copy_atom,
|
|
529
|
+
AtomTVLayout const& atom_tv_layout, // atom (thr,val) -> data addr
|
|
530
|
+
DataLayout const& data_layout) // coord -> data addr The target layout
|
|
531
|
+
{
|
|
532
|
+
static_assert(is_static<AtomTVLayout>::value);
|
|
533
|
+
static_assert(is_static<DataLayout>::value);
|
|
534
|
+
|
|
535
|
+
// data addr -> data coord Append 1:0 so off-the-ends get the stride-0
|
|
536
|
+
auto inv_data_layout = make_layout(left_inverse(data_layout), Layout<_1,_0>{});
|
|
537
|
+
|
|
538
|
+
// (tid,vid) -> data_coord
|
|
539
|
+
auto layout_tv_data = composition(inv_data_layout, atom_tv_layout);
|
|
540
|
+
|
|
541
|
+
// Check validity
|
|
542
|
+
// Append 1:0 to data_layout so that OOB coordinates get the stride-0
|
|
543
|
+
CUTE_STATIC_ASSERT_V(coalesce(composition(make_layout(data_layout, Layout<_1,_0>{}), layout<1>(layout_tv_data))) == coalesce(layout<1>(atom_tv_layout)),
|
|
544
|
+
"The memory pointed to by AtomTVLayout does not exist in the DataLayout.");
|
|
545
|
+
//
|
|
546
|
+
// Tiler -- Find the active elements in the DATA tensor and generate a tiler to extract them
|
|
547
|
+
//
|
|
548
|
+
|
|
549
|
+
// Convert to the awkward by-mode tiler to preserve the modes of the tiled DATA
|
|
550
|
+
auto flat_data_shape = product_each(shape(data_layout));
|
|
551
|
+
auto flat_data_zeros = repeat<rank(flat_data_shape)>(Int<0>{});
|
|
552
|
+
|
|
553
|
+
auto tiler = transform(make_seq<rank(flat_data_shape)>{}, [&](auto i) {
|
|
554
|
+
return filter(composition(make_layout(flat_data_shape, replace<i>(flat_data_zeros, Int<1>{})), layout_tv_data));
|
|
555
|
+
});
|
|
556
|
+
|
|
557
|
+
//
|
|
558
|
+
// Layout_TV -- Find the (tid,vid) -> tile coord transformation
|
|
559
|
+
//
|
|
560
|
+
|
|
561
|
+
// Apply the tiler to a reference and transform the codomain
|
|
562
|
+
// tile_coord -> data_coord
|
|
563
|
+
auto tile2data = composition(make_layout(flat_data_shape), tiler);
|
|
564
|
+
|
|
565
|
+
// (tid,vid) -> tile_coord
|
|
566
|
+
auto layout_tv = composition(left_inverse(tile2data), layout_tv_data);
|
|
567
|
+
return make_tiled_copy_impl(copy_atom, layout_tv, tiler);
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
// Make a TiledCopy out of the copy_atom that matches the Src-Layout of tiled_copy
|
|
571
|
+
template <class... Args,
|
|
572
|
+
class TiledCopy>
|
|
573
|
+
CUTE_HOST_DEVICE
|
|
574
|
+
auto
|
|
575
|
+
make_tiled_copy_S(Copy_Atom<Args...> const& copy_atom,
|
|
576
|
+
TiledCopy const& tiled_copy)
|
|
577
|
+
{
|
|
578
|
+
return make_tiled_copy_impl(copy_atom, tiled_copy.get_layoutS_TV(), typename TiledCopy::Tiler_MN{});
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
// Make a TiledCopy out of the copy_atom that matches the Dst-Layout of tiled_copy
|
|
582
|
+
template <class... Args,
|
|
583
|
+
class TiledCopy>
|
|
584
|
+
CUTE_HOST_DEVICE
|
|
585
|
+
auto
|
|
586
|
+
make_tiled_copy_D(Copy_Atom<Args...> const& copy_atom,
|
|
587
|
+
TiledCopy const& tiled_copy)
|
|
588
|
+
{
|
|
589
|
+
return make_tiled_copy_impl(copy_atom, tiled_copy.get_layoutD_TV(), typename TiledCopy::Tiler_MN{});
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
//
|
|
593
|
+
// Size
|
|
594
|
+
//
|
|
595
|
+
|
|
596
|
+
// The logical size of a TileCopy
|
|
597
|
+
template <int... I, class... Args>
|
|
598
|
+
CUTE_HOST_DEVICE constexpr
|
|
599
|
+
auto
|
|
600
|
+
tile_size(TiledCopy<Args...> const&)
|
|
601
|
+
{
|
|
602
|
+
return size<I...>(typename TiledCopy<Args...>::Tiler_MN{});
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
// The number of threads involved in a TiledCopy
|
|
606
|
+
template <class... Args>
|
|
607
|
+
CUTE_HOST_DEVICE constexpr
|
|
608
|
+
auto
|
|
609
|
+
size(TiledCopy<Args...> const&)
|
|
610
|
+
{
|
|
611
|
+
return typename TiledCopy<Args...>::TiledNumThr{};
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
//
|
|
615
|
+
// Display utilities
|
|
616
|
+
//
|
|
617
|
+
|
|
618
|
+
template <class... Args, class T>
|
|
619
|
+
CUTE_HOST_DEVICE
|
|
620
|
+
void
|
|
621
|
+
print(Copy_Atom<Copy_Traits<Args...>, T> const&)
|
|
622
|
+
{
|
|
623
|
+
using Atom = Copy_Atom<Copy_Traits<Args...>, T>;
|
|
624
|
+
print("Copy_Atom\n");
|
|
625
|
+
print(" ThrID: "); print(typename Atom::ThrID{}); print("\n");
|
|
626
|
+
print(" ValLayoutSrc: "); print(typename Atom::ValLayoutSrc{}); print("\n");
|
|
627
|
+
print(" ValLayoutDst: "); print(typename Atom::ValLayoutDst{}); print("\n");
|
|
628
|
+
print(" ValLayoutRef: "); print(typename Atom::ValLayoutRef{}); print("\n");
|
|
629
|
+
print(" ValueType: "); print(sizeof_bits<typename Atom::ValType>::value); print("b\n");
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
template <class Atom, class... Args>
|
|
633
|
+
CUTE_HOST_DEVICE
|
|
634
|
+
void
|
|
635
|
+
print(TiledCopy<Atom, Args...> const& copy, char const* pad = "")
|
|
636
|
+
{
|
|
637
|
+
using Copy = TiledCopy<Atom, Args...>;
|
|
638
|
+
print("TiledCopy\n");
|
|
639
|
+
print(" Tiler_MN: "); print(typename Copy::Tiler_MN{}); print("\n");
|
|
640
|
+
print(" TiledLayout_TV: "); print(typename Copy::TiledLayout_TV{}); print("\n");
|
|
641
|
+
print(static_cast<Atom const&>(copy));
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
template <class TiledCopy, class ThrIdx>
|
|
645
|
+
CUTE_HOST_DEVICE
|
|
646
|
+
void
|
|
647
|
+
print(ThrCopy<TiledCopy, ThrIdx> const& thr_copy)
|
|
648
|
+
{
|
|
649
|
+
print("ThrCopy\n");
|
|
650
|
+
print(" ThrIdx: "); print(thr_copy.thr_idx_); print("\n");
|
|
651
|
+
print(TiledCopy{});
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
} // end namespace cute
|
|
655
|
+
|
|
656
|
+
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
657
|
+
|
|
658
|
+
#include <cute/atom/copy_traits_sm50.hpp>
|
|
659
|
+
#include <cute/atom/copy_traits_sm75.hpp>
|
|
660
|
+
#include <cute/atom/copy_traits_sm80.hpp>
|
|
661
|
+
#include <cute/atom/copy_traits_sm90.hpp>
|
|
662
|
+
#include <cute/atom/copy_traits_sm100.hpp>
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
// Config
|
|
666
|
+
#if (__CUDACC_VER_MAJOR__ >= 12)
|
|
667
|
+
# define CUTE_COPY_ATOM_TMA_SM90_ENABLED
|
|
668
|
+
# define CUTE_COPY_ATOM_TMA_SM100_ENABLED
|
|
669
|
+
#endif
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
#if (!defined(CUTE_COPY_ATOM_TMA_SM90_ENABLED))
|
|
673
|
+
# define CUTE_COPY_ATOM_TMA_SM90_ENABLED
|
|
674
|
+
#endif
|
|
675
|
+
|
|
676
|
+
#if (!defined(CUTE_COPY_ATOM_TMA_SM100_ENABLED))
|
|
677
|
+
# define CUTE_COPY_ATOM_TMA_SM100_ENABLED
|
|
678
|
+
#endif
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
#if defined(CUTE_COPY_ATOM_TMA_SM90_ENABLED)
|
|
682
|
+
#include <cute/atom/copy_traits_sm90_tma.hpp>
|
|
683
|
+
#endif
|
|
684
|
+
|
|
685
|
+
|
|
686
|
+
#if defined(CUTE_COPY_ATOM_TMA_SM100_ENABLED)
|
|
687
|
+
#include <cute/atom/copy_traits_sm100_tma.hpp>
|
|
688
|
+
#endif
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
////////////////////////////////////////////////////////////////////////////////////////////////////
|