flashinfer-python 0.5.3__tar.gz → 0.6.0rc1__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.
Files changed (2104) hide show
  1. flashinfer_python-0.6.0rc1/PKG-INFO +265 -0
  2. flashinfer_python-0.6.0rc1/README.md +240 -0
  3. flashinfer_python-0.6.0rc1/csrc/batch_attention.cu +187 -0
  4. flashinfer_python-0.6.0rc1/csrc/batch_decode.cu +201 -0
  5. flashinfer_python-0.6.0rc1/csrc/batch_decode_mla_cute_sm80.cu +113 -0
  6. flashinfer_python-0.6.0rc1/csrc/batch_decode_mla_plan.cu +46 -0
  7. flashinfer_python-0.6.0rc1/csrc/batch_decode_mla_run.cu +83 -0
  8. flashinfer_python-0.6.0rc1/csrc/batch_mla_plan.cu +58 -0
  9. flashinfer_python-0.6.0rc1/csrc/batch_mla_run.cu +126 -0
  10. flashinfer_python-0.6.0rc1/csrc/batch_mla_sm90_plan.cu +55 -0
  11. flashinfer_python-0.6.0rc1/csrc/batch_mla_sm90_run.cu +127 -0
  12. flashinfer_python-0.6.0rc1/csrc/batch_pod.cu +350 -0
  13. flashinfer_python-0.6.0rc1/csrc/batch_prefill.cu +334 -0
  14. flashinfer_python-0.6.0rc1/csrc/batch_prefill_fp8_ragged_sm90_kernel_inst.jinja +15 -0
  15. flashinfer_python-0.6.0rc1/csrc/batch_prefill_fp8_sm90.cu +286 -0
  16. flashinfer_python-0.6.0rc1/csrc/batch_prefill_sm90.cu +274 -0
  17. flashinfer_python-0.6.0rc1/csrc/batch_prefill_sm90_customize_config.jinja +122 -0
  18. flashinfer_python-0.6.0rc1/csrc/blackwell_fmha_plan.cu +38 -0
  19. flashinfer_python-0.6.0rc1/csrc/bmm_fp8.cu +63 -0
  20. flashinfer_python-0.6.0rc1/csrc/cascade.cu +130 -0
  21. flashinfer_python-0.6.0rc1/csrc/cutlass_mla.cu +46 -0
  22. flashinfer_python-0.6.0rc1/csrc/flashinfer_page_binding.cu +31 -0
  23. flashinfer_python-0.6.0rc1/csrc/flashinfer_sampling_binding.cu +89 -0
  24. flashinfer_python-0.6.0rc1/csrc/flashinfer_topk_binding.cu +24 -0
  25. flashinfer_python-0.6.0rc1/csrc/flashinfer_xqa_binding.cu +43 -0
  26. flashinfer_python-0.6.0rc1/csrc/fmhaReduction.cu +373 -0
  27. flashinfer_python-0.6.0rc1/csrc/fmha_cutlass_sm100.cu +140 -0
  28. flashinfer_python-0.6.0rc1/csrc/fmha_cutlass_sm100_binding.cu +34 -0
  29. flashinfer_python-0.6.0rc1/csrc/fmha_v2/convert.cu +196 -0
  30. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/alibi_params.h +50 -0
  31. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/fragment.h +2311 -0
  32. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/gemm.h +35 -0
  33. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/gmem_tile_o.h +465 -0
  34. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/gmem_tile_o_packed.h +1349 -0
  35. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/gmem_tile_ps.h +837 -0
  36. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/gmem_tile_qkv.h +167 -0
  37. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/gmem_tile_qkv_packed.h +1307 -0
  38. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/arrive_wait.h +396 -0
  39. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/compute_tile.h +503 -0
  40. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/fragment.h +491 -0
  41. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/gmem_tile_o_packed.h +1138 -0
  42. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/gmem_tile_qkv_packed.h +146 -0
  43. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/gmma_descriptor.h +547 -0
  44. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/kernel_traits.h +365 -0
  45. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/smem_tile.h +2423 -0
  46. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/smem_tile_o.h +325 -0
  47. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/tma_descriptor.h +348 -0
  48. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/tma_types.h +123 -0
  49. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/utils_gmma.h +18 -0
  50. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/utils_hgmma.h +874 -0
  51. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/utils_hgmma_bf16.h +475 -0
  52. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/utils_igmma.h +396 -0
  53. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/utils_qgmma.h +2089 -0
  54. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/utils_tma.h +155 -0
  55. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/hopper/utils_warpgroup.h +44 -0
  56. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/kernel_traits.h +879 -0
  57. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/mask.h +785 -0
  58. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/numeric_types.h +57 -0
  59. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/paged_kv_cache.h +63 -0
  60. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/smem_tile.h +2071 -0
  61. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/smem_tile_o.h +1646 -0
  62. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/smem_tile_qkv.h +592 -0
  63. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/smem_tile_v.h +1008 -0
  64. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/softmax.h +3964 -0
  65. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/traits.h +942 -0
  66. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/utils.h +2355 -0
  67. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/warpspec/circular_buffer.h +399 -0
  68. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/warpspec/compute.h +606 -0
  69. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/warpspec/dma.h +874 -0
  70. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/warpspec/epilogue.h +1091 -0
  71. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fmha/warpspec/kernel_traits.h +574 -0
  72. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention.cpp +1982 -0
  73. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention.h +326 -0
  74. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_demo_bert_params.h +171 -0
  75. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_kernel.h +237 -0
  76. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_kernel_1xN.h +360 -0
  77. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_kernel_1xN_multi_cta.h +465 -0
  78. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_kernel_1xN_noloop.h +316 -0
  79. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_kernel_2x2.h +286 -0
  80. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_kernel_4x1_hopper.h +742 -0
  81. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_kernel_4x1_hopper_noloop.h +330 -0
  82. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_kernel_4xN_hopper.h +371 -0
  83. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_kernel_4xN_hopper_noloop.h +382 -0
  84. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_attention_utils.h +1472 -0
  85. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_cross_attention.cpp +939 -0
  86. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_cross_attention.h +67 -0
  87. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_cross_attention_kernel_1xN.h +361 -0
  88. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_cross_attention_kernel_1xN_noloop.h +319 -0
  89. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_flash_attention_kernel.h +568 -0
  90. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_flash_attention_kernel_noloop.h +645 -0
  91. flashinfer_python-0.6.0rc1/csrc/fmha_v2/fused_multihead_flash_attention_kernel_noloop_tiled.h +577 -0
  92. flashinfer_python-0.6.0rc1/csrc/fmha_v2/softmax_bf16.cu +21 -0
  93. flashinfer_python-0.6.0rc1/csrc/fmha_v2/softmax_fp16.cu +21 -0
  94. flashinfer_python-0.6.0rc1/csrc/fmha_v2/softmax_fp32.cu +21 -0
  95. flashinfer_python-0.6.0rc1/csrc/fmha_v2/softmax_fp8.cu +22 -0
  96. flashinfer_python-0.6.0rc1/csrc/fmha_v2/softmax_impl.h +1004 -0
  97. flashinfer_python-0.6.0rc1/csrc/fmha_v2/softmax_int8.cu +22 -0
  98. flashinfer_python-0.6.0rc1/csrc/fp8_blockscale_gemm_sm90_binding.cu +240 -0
  99. flashinfer_python-0.6.0rc1/csrc/fused_moe/cutlass_backend/deepgemm_jit_setup.cu +36 -0
  100. flashinfer_python-0.6.0rc1/csrc/fused_moe/cutlass_backend/flashinfer_cutlass_fused_moe_binding.cu +1205 -0
  101. flashinfer_python-0.6.0rc1/csrc/gemm_groupwise_sm100.cu +121 -0
  102. flashinfer_python-0.6.0rc1/csrc/gemm_groupwise_sm120.cu +135 -0
  103. flashinfer_python-0.6.0rc1/csrc/group_gemm.cu +40 -0
  104. flashinfer_python-0.6.0rc1/csrc/group_gemm_fp8_groupwise_sm100.cu +122 -0
  105. flashinfer_python-0.6.0rc1/csrc/group_gemm_fp8_groupwise_sm120.cu +122 -0
  106. flashinfer_python-0.6.0rc1/csrc/group_gemm_mxfp4_groupwise_sm100.cu +177 -0
  107. flashinfer_python-0.6.0rc1/csrc/group_gemm_sm90.cu +75 -0
  108. flashinfer_python-0.6.0rc1/csrc/norm.cu +196 -0
  109. flashinfer_python-0.6.0rc1/csrc/nv_internal/cpp/common/envUtils.cpp +359 -0
  110. flashinfer_python-0.6.0rc1/csrc/nv_internal/cpp/kernels/quantization.cu +418 -0
  111. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/common/envUtils.h +104 -0
  112. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/deep_gemm/compiler.cuh +492 -0
  113. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/deep_gemm/jit_utils.cuh +232 -0
  114. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/deep_gemm/runtime.cuh +186 -0
  115. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/kernels/communicationKernels/moeAlltoAllKernels.cu +874 -0
  116. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/kernels/communicationKernels/moeAlltoAllKernels.h +181 -0
  117. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.cpp +772 -0
  118. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm_kernel.cuh +1679 -0
  119. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch.h +1018 -0
  120. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/kernels/quantization.h +83 -0
  121. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/thop/fp4Op.cpp +394 -0
  122. flashinfer_python-0.6.0rc1/csrc/nv_internal/tensorrt_llm/thop/moeAlltoAllMeta.h +61 -0
  123. flashinfer_python-0.6.0rc1/csrc/page.cu +189 -0
  124. flashinfer_python-0.6.0rc1/csrc/pod.cu +277 -0
  125. flashinfer_python-0.6.0rc1/csrc/renorm.cu +105 -0
  126. flashinfer_python-0.6.0rc1/csrc/rope.cu +617 -0
  127. flashinfer_python-0.6.0rc1/csrc/sampling.cu +227 -0
  128. flashinfer_python-0.6.0rc1/csrc/sampling_utils.h +41 -0
  129. flashinfer_python-0.6.0rc1/csrc/single_decode.cu +105 -0
  130. flashinfer_python-0.6.0rc1/csrc/single_prefill.cu +112 -0
  131. flashinfer_python-0.6.0rc1/csrc/single_prefill_fp8_sm90.cu +101 -0
  132. flashinfer_python-0.6.0rc1/csrc/single_prefill_sm90.cu +93 -0
  133. flashinfer_python-0.6.0rc1/csrc/topk.cu +60 -0
  134. flashinfer_python-0.6.0rc1/csrc/trtllm_allreduce.cu +168 -0
  135. flashinfer_python-0.6.0rc1/csrc/trtllm_allreduce_fusion.cu +87 -0
  136. flashinfer_python-0.6.0rc1/csrc/trtllm_fmha_kernel_launcher.cu +549 -0
  137. flashinfer_python-0.6.0rc1/csrc/trtllm_fmha_v2_binding.cu +430 -0
  138. flashinfer_python-0.6.0rc1/csrc/trtllm_fused_moe_dev_kernel.cu +1003 -0
  139. flashinfer_python-0.6.0rc1/csrc/trtllm_fused_moe_kernel_launcher.cu +1932 -0
  140. flashinfer_python-0.6.0rc1/csrc/trtllm_mnnvl_allreduce.cu +115 -0
  141. flashinfer_python-0.6.0rc1/csrc/trtllm_moe_allreduce_fusion.cu +136 -0
  142. flashinfer_python-0.6.0rc1/csrc/trtllm_moe_alltoall.cu +413 -0
  143. flashinfer_python-0.6.0rc1/csrc/tvm_ffi_utils.h +306 -0
  144. flashinfer_python-0.6.0rc1/csrc/vllm_custom_all_reduce.cu +155 -0
  145. flashinfer_python-0.6.0rc1/csrc/xqa/mha.cu +2658 -0
  146. flashinfer_python-0.6.0rc1/csrc/xqa/mha_sm90.cu +3112 -0
  147. flashinfer_python-0.6.0rc1/csrc/xqa/mla_sm120.cu +1845 -0
  148. flashinfer_python-0.6.0rc1/csrc/xqa/xqa_wrapper.cu +105 -0
  149. flashinfer_python-0.6.0rc1/flashinfer/__init__.py +155 -0
  150. flashinfer_python-0.6.0rc1/flashinfer/_build_meta.py +3 -0
  151. flashinfer_python-0.6.0rc1/flashinfer/activation.py +224 -0
  152. flashinfer_python-0.6.0rc1/flashinfer/aot.py +885 -0
  153. flashinfer_python-0.6.0rc1/flashinfer/api_logging.py +565 -0
  154. flashinfer_python-0.6.0rc1/flashinfer/artifacts.py +250 -0
  155. flashinfer_python-0.6.0rc1/flashinfer/attention.py +279 -0
  156. flashinfer_python-0.6.0rc1/flashinfer/autotuner.py +791 -0
  157. flashinfer_python-0.6.0rc1/flashinfer/cascade.py +1080 -0
  158. flashinfer_python-0.6.0rc1/flashinfer/comm/__init__.py +68 -0
  159. flashinfer_python-0.6.0rc1/flashinfer/comm/allreduce.py +702 -0
  160. flashinfer_python-0.6.0rc1/flashinfer/comm/mnnvl.py +1280 -0
  161. flashinfer_python-0.6.0rc1/flashinfer/comm/trtllm_ar.py +1098 -0
  162. flashinfer_python-0.6.0rc1/flashinfer/comm/trtllm_mnnvl_ar.py +725 -0
  163. flashinfer_python-0.6.0rc1/flashinfer/comm/trtllm_moe_alltoall.py +743 -0
  164. flashinfer_python-0.6.0rc1/flashinfer/comm/workspace_base.py +89 -0
  165. flashinfer_python-0.6.0rc1/flashinfer/cudnn/decode.py +350 -0
  166. flashinfer_python-0.6.0rc1/flashinfer/cudnn/prefill.py +724 -0
  167. flashinfer_python-0.6.0rc1/flashinfer/cute_dsl/blockscaled_gemm.py +3046 -0
  168. flashinfer_python-0.6.0rc1/flashinfer/cute_dsl/gemm_allreduce_two_shot.py +2105 -0
  169. flashinfer_python-0.6.0rc1/flashinfer/decode.py +2652 -0
  170. flashinfer_python-0.6.0rc1/flashinfer/deep_gemm.py +1611 -0
  171. flashinfer_python-0.6.0rc1/flashinfer/dsv3_ops/__init__.py +7 -0
  172. flashinfer_python-0.6.0rc1/flashinfer/fp4_quantization.py +1001 -0
  173. flashinfer_python-0.6.0rc1/flashinfer/fp8_quantization.py +208 -0
  174. flashinfer_python-0.6.0rc1/flashinfer/fused_moe/__init__.py +60 -0
  175. flashinfer_python-0.6.0rc1/flashinfer/fused_moe/core.py +2664 -0
  176. flashinfer_python-0.6.0rc1/flashinfer/fused_moe/fused_routing_dsv3.py +194 -0
  177. flashinfer_python-0.6.0rc1/flashinfer/gemm/__init__.py +36 -0
  178. flashinfer_python-0.6.0rc1/flashinfer/gemm/gemm_base.py +3757 -0
  179. flashinfer_python-0.6.0rc1/flashinfer/gemm/routergemm_dsv3.py +136 -0
  180. flashinfer_python-0.6.0rc1/flashinfer/jit/__init__.py +94 -0
  181. flashinfer_python-0.6.0rc1/flashinfer/jit/attention/__init__.py +54 -0
  182. flashinfer_python-0.6.0rc1/flashinfer/jit/attention/fmha_v2/generate_kernels.py +182 -0
  183. flashinfer_python-0.6.0rc1/flashinfer/jit/attention/fmha_v2/generator_utils.py +6927 -0
  184. flashinfer_python-0.6.0rc1/flashinfer/jit/attention/modules.py +1933 -0
  185. flashinfer_python-0.6.0rc1/flashinfer/jit/attention/variants.py +171 -0
  186. flashinfer_python-0.6.0rc1/flashinfer/jit/comm.py +109 -0
  187. flashinfer_python-0.6.0rc1/flashinfer/jit/core.py +417 -0
  188. flashinfer_python-0.6.0rc1/flashinfer/jit/fused_moe.py +270 -0
  189. flashinfer_python-0.6.0rc1/flashinfer/jit/gemm/__init__.py +45 -0
  190. flashinfer_python-0.6.0rc1/flashinfer/jit/gemm/fp8_blockscale.py +56 -0
  191. flashinfer_python-0.6.0rc1/flashinfer/jit/topk.py +28 -0
  192. flashinfer_python-0.6.0rc1/flashinfer/jit/xqa.py +192 -0
  193. flashinfer_python-0.6.0rc1/flashinfer/logits_processor/operators.py +628 -0
  194. flashinfer_python-0.6.0rc1/flashinfer/mla.py +792 -0
  195. flashinfer_python-0.6.0rc1/flashinfer/norm.py +292 -0
  196. flashinfer_python-0.6.0rc1/flashinfer/page.py +381 -0
  197. flashinfer_python-0.6.0rc1/flashinfer/pod.py +1201 -0
  198. flashinfer_python-0.6.0rc1/flashinfer/prefill.py +3756 -0
  199. flashinfer_python-0.6.0rc1/flashinfer/quantization.py +139 -0
  200. flashinfer_python-0.6.0rc1/flashinfer/rope.py +1671 -0
  201. flashinfer_python-0.6.0rc1/flashinfer/sampling.py +1587 -0
  202. flashinfer_python-0.6.0rc1/flashinfer/sparse.py +1168 -0
  203. flashinfer_python-0.6.0rc1/flashinfer/testing/utils.py +1780 -0
  204. flashinfer_python-0.6.0rc1/flashinfer/topk.py +168 -0
  205. flashinfer_python-0.6.0rc1/flashinfer/triton/kernels/cascade.py +160 -0
  206. flashinfer_python-0.6.0rc1/flashinfer/utils.py +1184 -0
  207. flashinfer_python-0.6.0rc1/flashinfer/xqa.py +529 -0
  208. flashinfer_python-0.6.0rc1/flashinfer_python.egg-info/PKG-INFO +265 -0
  209. flashinfer_python-0.6.0rc1/flashinfer_python.egg-info/SOURCES.txt +1949 -0
  210. flashinfer_python-0.6.0rc1/flashinfer_python.egg-info/requires.txt +13 -0
  211. flashinfer_python-0.6.0rc1/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_mainloop_tma_warpspecialized.hpp +1167 -0
  212. flashinfer_python-0.6.0rc1/include/flashinfer/attention/blackwell/fmha_cutlass_sm100.cuh +180 -0
  213. flashinfer_python-0.6.0rc1/include/flashinfer/attention/blackwell/kernel/sm100_fmha_fwd_kernel_tma_warpspecialized.hpp +532 -0
  214. flashinfer_python-0.6.0rc1/include/flashinfer/attention/hopper/default_params.cuh +173 -0
  215. flashinfer_python-0.6.0rc1/include/flashinfer/attention/hopper/epilogue.cuh +258 -0
  216. flashinfer_python-0.6.0rc1/include/flashinfer/attention/hopper/kernel_traits.cuh +124 -0
  217. flashinfer_python-0.6.0rc1/include/flashinfer/attention/hopper/mainloop_mma.cuh +332 -0
  218. flashinfer_python-0.6.0rc1/include/flashinfer/attention/hopper/prefill_sm90.cuh +622 -0
  219. flashinfer_python-0.6.0rc1/include/flashinfer/attention/hopper/quantization/mainloop_sparse_load.cuh +467 -0
  220. flashinfer_python-0.6.0rc1/include/flashinfer/attention/hopper/quantization/prefill_sm90.cuh +598 -0
  221. flashinfer_python-0.6.0rc1/include/flashinfer/attention/hopper/sparse_mainloop.cuh +448 -0
  222. flashinfer_python-0.6.0rc1/include/flashinfer/attention/hopper/variants.cuh +173 -0
  223. flashinfer_python-0.6.0rc1/include/flashinfer/attention/variant_helper.cuh +104 -0
  224. flashinfer_python-0.6.0rc1/include/flashinfer/comm/trtllm_mnnvl_allreduce.cuh +1209 -0
  225. flashinfer_python-0.6.0rc1/include/flashinfer/page.cuh +597 -0
  226. flashinfer_python-0.6.0rc1/include/flashinfer/pos_enc.cuh +1625 -0
  227. flashinfer_python-0.6.0rc1/include/flashinfer/sampling.cuh +3538 -0
  228. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmInterface.h +815 -0
  229. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmOptions.h +445 -0
  230. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/Enums.h +156 -0
  231. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmGatedActOptions.h +232 -0
  232. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmOptions.h +1546 -0
  233. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParams.h +602 -0
  234. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelTraits.h +659 -0
  235. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/TmaDescriptor.h +297 -0
  236. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CudaArchDecl.h +95 -0
  237. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/DtypeDecl.h +277 -0
  238. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/fmha/fmhaKernels.cuh +701 -0
  239. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/fmha/fmhaRunnerParams.h +372 -0
  240. flashinfer_python-0.6.0rc1/include/flashinfer/trtllm/fmha/kernelParams.h +748 -0
  241. flashinfer_python-0.6.0rc1/include/flashinfer/utils.cuh +457 -0
  242. flashinfer_python-0.6.0rc1/pyproject.toml +124 -0
  243. flashinfer_python-0.6.0rc1/requirements.txt +13 -0
  244. flashinfer_python-0.5.3/PKG-INFO +0 -247
  245. flashinfer_python-0.5.3/README.md +0 -222
  246. flashinfer_python-0.5.3/csrc/batch_attention.cu +0 -187
  247. flashinfer_python-0.5.3/csrc/batch_decode.cu +0 -195
  248. flashinfer_python-0.5.3/csrc/batch_decode_mla_cute_sm80.cu +0 -113
  249. flashinfer_python-0.5.3/csrc/batch_decode_mla_plan.cu +0 -44
  250. flashinfer_python-0.5.3/csrc/batch_decode_mla_run.cu +0 -79
  251. flashinfer_python-0.5.3/csrc/batch_mla_plan.cu +0 -54
  252. flashinfer_python-0.5.3/csrc/batch_mla_run.cu +0 -124
  253. flashinfer_python-0.5.3/csrc/batch_mla_sm90_plan.cu +0 -55
  254. flashinfer_python-0.5.3/csrc/batch_mla_sm90_run.cu +0 -127
  255. flashinfer_python-0.5.3/csrc/batch_pod.cu +0 -350
  256. flashinfer_python-0.5.3/csrc/batch_prefill.cu +0 -334
  257. flashinfer_python-0.5.3/csrc/batch_prefill_fp8_ragged_sm90_kernel_inst.jinja +0 -1
  258. flashinfer_python-0.5.3/csrc/batch_prefill_fp8_sm90.cu +0 -188
  259. flashinfer_python-0.5.3/csrc/batch_prefill_sm90.cu +0 -263
  260. flashinfer_python-0.5.3/csrc/batch_prefill_sm90_customize_config.jinja +0 -117
  261. flashinfer_python-0.5.3/csrc/blackwell_fmha_plan.cu +0 -38
  262. flashinfer_python-0.5.3/csrc/bmm_fp8.cu +0 -63
  263. flashinfer_python-0.5.3/csrc/cascade.cu +0 -130
  264. flashinfer_python-0.5.3/csrc/cutlass_mla.cu +0 -46
  265. flashinfer_python-0.5.3/csrc/flashinfer_page_binding.cu +0 -38
  266. flashinfer_python-0.5.3/csrc/flashinfer_sampling_binding.cu +0 -87
  267. flashinfer_python-0.5.3/csrc/flashinfer_xqa_binding.cu +0 -45
  268. flashinfer_python-0.5.3/csrc/fmhaReduction.cu +0 -358
  269. flashinfer_python-0.5.3/csrc/fmha_cutlass_sm100.cu +0 -131
  270. flashinfer_python-0.5.3/csrc/fmha_cutlass_sm100_binding.cu +0 -34
  271. flashinfer_python-0.5.3/csrc/fused_moe/cutlass_backend/flashinfer_cutlass_fused_moe_sm100_binding.cu +0 -1201
  272. flashinfer_python-0.5.3/csrc/gemm_groupwise_sm100.cu +0 -121
  273. flashinfer_python-0.5.3/csrc/gemm_groupwise_sm120.cu +0 -135
  274. flashinfer_python-0.5.3/csrc/group_gemm.cu +0 -40
  275. flashinfer_python-0.5.3/csrc/group_gemm_fp8_groupwise_sm100.cu +0 -122
  276. flashinfer_python-0.5.3/csrc/group_gemm_fp8_groupwise_sm120.cu +0 -122
  277. flashinfer_python-0.5.3/csrc/group_gemm_mxfp4_groupwise_sm100.cu +0 -177
  278. flashinfer_python-0.5.3/csrc/group_gemm_sm90.cu +0 -75
  279. flashinfer_python-0.5.3/csrc/norm.cu +0 -196
  280. flashinfer_python-0.5.3/csrc/nv_internal/cpp/common/envUtils.cpp +0 -331
  281. flashinfer_python-0.5.3/csrc/nv_internal/cpp/kernels/quantization.cu +0 -407
  282. flashinfer_python-0.5.3/csrc/nv_internal/tensorrt_llm/common/envUtils.h +0 -95
  283. flashinfer_python-0.5.3/csrc/nv_internal/tensorrt_llm/deep_gemm/compiler.cuh +0 -540
  284. flashinfer_python-0.5.3/csrc/nv_internal/tensorrt_llm/deep_gemm/jit_utils.cuh +0 -231
  285. flashinfer_python-0.5.3/csrc/nv_internal/tensorrt_llm/deep_gemm/runtime.cuh +0 -186
  286. flashinfer_python-0.5.3/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.cpp +0 -772
  287. flashinfer_python-0.5.3/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm_kernel.cuh +0 -1676
  288. flashinfer_python-0.5.3/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch.h +0 -1016
  289. flashinfer_python-0.5.3/csrc/nv_internal/tensorrt_llm/kernels/quantization.h +0 -83
  290. flashinfer_python-0.5.3/csrc/nv_internal/tensorrt_llm/thop/fp4Op.cpp +0 -357
  291. flashinfer_python-0.5.3/csrc/page.cu +0 -214
  292. flashinfer_python-0.5.3/csrc/pod.cu +0 -277
  293. flashinfer_python-0.5.3/csrc/renorm.cu +0 -78
  294. flashinfer_python-0.5.3/csrc/rope.cu +0 -617
  295. flashinfer_python-0.5.3/csrc/sampling.cu +0 -215
  296. flashinfer_python-0.5.3/csrc/single_decode.cu +0 -105
  297. flashinfer_python-0.5.3/csrc/single_prefill.cu +0 -112
  298. flashinfer_python-0.5.3/csrc/single_prefill_fp8_sm90.cu +0 -101
  299. flashinfer_python-0.5.3/csrc/single_prefill_sm90.cu +0 -93
  300. flashinfer_python-0.5.3/csrc/trtllm_allreduce.cu +0 -168
  301. flashinfer_python-0.5.3/csrc/trtllm_allreduce_fusion.cu +0 -87
  302. flashinfer_python-0.5.3/csrc/trtllm_fmha_kernel_launcher.cu +0 -545
  303. flashinfer_python-0.5.3/csrc/trtllm_fused_moe_dev_kernel.cu +0 -993
  304. flashinfer_python-0.5.3/csrc/trtllm_fused_moe_kernel_launcher.cu +0 -1689
  305. flashinfer_python-0.5.3/csrc/trtllm_mnnvl_allreduce.cu +0 -102
  306. flashinfer_python-0.5.3/csrc/trtllm_moe_allreduce_fusion.cu +0 -136
  307. flashinfer_python-0.5.3/csrc/tvm_ffi_utils.h +0 -284
  308. flashinfer_python-0.5.3/csrc/vllm_custom_all_reduce.cu +0 -155
  309. flashinfer_python-0.5.3/csrc/xqa/mha.cu +0 -2631
  310. flashinfer_python-0.5.3/csrc/xqa/mha_sm90.cu +0 -3112
  311. flashinfer_python-0.5.3/csrc/xqa/mla_sm120.cu +0 -1845
  312. flashinfer_python-0.5.3/csrc/xqa/xqa_wrapper.cu +0 -99
  313. flashinfer_python-0.5.3/flashinfer/__init__.py +0 -153
  314. flashinfer_python-0.5.3/flashinfer/_build_meta.py +0 -3
  315. flashinfer_python-0.5.3/flashinfer/activation.py +0 -219
  316. flashinfer_python-0.5.3/flashinfer/aot.py +0 -881
  317. flashinfer_python-0.5.3/flashinfer/artifacts.py +0 -250
  318. flashinfer_python-0.5.3/flashinfer/attention.py +0 -275
  319. flashinfer_python-0.5.3/flashinfer/autotuner.py +0 -786
  320. flashinfer_python-0.5.3/flashinfer/cascade.py +0 -1065
  321. flashinfer_python-0.5.3/flashinfer/comm/__init__.py +0 -42
  322. flashinfer_python-0.5.3/flashinfer/comm/mnnvl.py +0 -1014
  323. flashinfer_python-0.5.3/flashinfer/comm/trtllm_ar.py +0 -1089
  324. flashinfer_python-0.5.3/flashinfer/comm/trtllm_mnnvl_ar.py +0 -320
  325. flashinfer_python-0.5.3/flashinfer/cudnn/decode.py +0 -348
  326. flashinfer_python-0.5.3/flashinfer/cudnn/prefill.py +0 -541
  327. flashinfer_python-0.5.3/flashinfer/cute_dsl/blockscaled_gemm.py +0 -3045
  328. flashinfer_python-0.5.3/flashinfer/cute_dsl/gemm_allreduce_two_shot.py +0 -2029
  329. flashinfer_python-0.5.3/flashinfer/decode.py +0 -2956
  330. flashinfer_python-0.5.3/flashinfer/deep_gemm.py +0 -1518
  331. flashinfer_python-0.5.3/flashinfer/dsv3_ops/__init__.py +0 -7
  332. flashinfer_python-0.5.3/flashinfer/fp4_quantization.py +0 -989
  333. flashinfer_python-0.5.3/flashinfer/fp8_quantization.py +0 -205
  334. flashinfer_python-0.5.3/flashinfer/fused_moe/__init__.py +0 -58
  335. flashinfer_python-0.5.3/flashinfer/fused_moe/core.py +0 -2379
  336. flashinfer_python-0.5.3/flashinfer/fused_moe/fused_routing_dsv3.py +0 -194
  337. flashinfer_python-0.5.3/flashinfer/gemm/__init__.py +0 -34
  338. flashinfer_python-0.5.3/flashinfer/gemm/gemm_base.py +0 -3113
  339. flashinfer_python-0.5.3/flashinfer/gemm/routergemm_dsv3.py +0 -134
  340. flashinfer_python-0.5.3/flashinfer/jit/__init__.py +0 -92
  341. flashinfer_python-0.5.3/flashinfer/jit/attention/__init__.py +0 -52
  342. flashinfer_python-0.5.3/flashinfer/jit/attention/modules.py +0 -1871
  343. flashinfer_python-0.5.3/flashinfer/jit/attention/variants.py +0 -169
  344. flashinfer_python-0.5.3/flashinfer/jit/comm.py +0 -80
  345. flashinfer_python-0.5.3/flashinfer/jit/core.py +0 -414
  346. flashinfer_python-0.5.3/flashinfer/jit/fused_moe.py +0 -268
  347. flashinfer_python-0.5.3/flashinfer/jit/gemm/__init__.py +0 -43
  348. flashinfer_python-0.5.3/flashinfer/jit/xqa.py +0 -170
  349. flashinfer_python-0.5.3/flashinfer/logits_processor/operators.py +0 -614
  350. flashinfer_python-0.5.3/flashinfer/mla.py +0 -451
  351. flashinfer_python-0.5.3/flashinfer/norm.py +0 -286
  352. flashinfer_python-0.5.3/flashinfer/page.py +0 -413
  353. flashinfer_python-0.5.3/flashinfer/pod.py +0 -1194
  354. flashinfer_python-0.5.3/flashinfer/prefill.py +0 -3542
  355. flashinfer_python-0.5.3/flashinfer/quantization.py +0 -136
  356. flashinfer_python-0.5.3/flashinfer/rope.py +0 -1657
  357. flashinfer_python-0.5.3/flashinfer/sampling.py +0 -1464
  358. flashinfer_python-0.5.3/flashinfer/sparse.py +0 -1271
  359. flashinfer_python-0.5.3/flashinfer/testing/utils.py +0 -1195
  360. flashinfer_python-0.5.3/flashinfer/triton/kernels/cascade.py +0 -159
  361. flashinfer_python-0.5.3/flashinfer/utils.py +0 -1172
  362. flashinfer_python-0.5.3/flashinfer/xqa.py +0 -494
  363. flashinfer_python-0.5.3/flashinfer_python.egg-info/PKG-INFO +0 -247
  364. flashinfer_python-0.5.3/flashinfer_python.egg-info/SOURCES.txt +0 -1861
  365. flashinfer_python-0.5.3/flashinfer_python.egg-info/requires.txt +0 -13
  366. flashinfer_python-0.5.3/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_mainloop_tma_warpspecialized.hpp +0 -1166
  367. flashinfer_python-0.5.3/include/flashinfer/attention/blackwell/fmha_cutlass_sm100.cuh +0 -178
  368. flashinfer_python-0.5.3/include/flashinfer/attention/blackwell/kernel/sm100_fmha_fwd_kernel_tma_warpspecialized.hpp +0 -532
  369. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/block_sparse_gather.cuh +0 -196
  370. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/default_params.cuh +0 -168
  371. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/epilogue.cuh +0 -259
  372. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/kernel_traits.cuh +0 -123
  373. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/mainloop_mma.cuh +0 -330
  374. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/prefill_sm90.cuh +0 -618
  375. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/quantization/mainloop_sparse_load.cuh +0 -366
  376. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/quantization/prefill_sm90.cuh +0 -477
  377. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/sparse_mainloop.cuh +0 -362
  378. flashinfer_python-0.5.3/include/flashinfer/attention/hopper/variants.cuh +0 -108
  379. flashinfer_python-0.5.3/include/flashinfer/attention/variant_helper.cuh +0 -89
  380. flashinfer_python-0.5.3/include/flashinfer/comm/trtllm_mnnvl_allreduce.cuh +0 -675
  381. flashinfer_python-0.5.3/include/flashinfer/page.cuh +0 -646
  382. flashinfer_python-0.5.3/include/flashinfer/pos_enc.cuh +0 -1559
  383. flashinfer_python-0.5.3/include/flashinfer/sampling.cuh +0 -2252
  384. flashinfer_python-0.5.3/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmInterface.h +0 -811
  385. flashinfer_python-0.5.3/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmOptions.h +0 -435
  386. flashinfer_python-0.5.3/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/Enums.h +0 -145
  387. flashinfer_python-0.5.3/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmGatedActOptions.h +0 -231
  388. flashinfer_python-0.5.3/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/GemmOptions.h +0 -1531
  389. flashinfer_python-0.5.3/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParams.h +0 -591
  390. flashinfer_python-0.5.3/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelTraits.h +0 -658
  391. flashinfer_python-0.5.3/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/TmaDescriptor.h +0 -297
  392. flashinfer_python-0.5.3/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/DtypeDecl.h +0 -271
  393. flashinfer_python-0.5.3/include/flashinfer/trtllm/fmha/fmhaKernels.cuh +0 -681
  394. flashinfer_python-0.5.3/include/flashinfer/trtllm/fmha/fmhaRunnerParams.h +0 -368
  395. flashinfer_python-0.5.3/include/flashinfer/trtllm/fmha/kernelParams.h +0 -727
  396. flashinfer_python-0.5.3/include/flashinfer/utils.cuh +0 -435
  397. flashinfer_python-0.5.3/pyproject.toml +0 -138
  398. flashinfer_python-0.5.3/requirements.txt +0 -13
  399. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/40_cutlass_py/conv2d.py +0 -0
  400. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/40_cutlass_py/customizable/conv2d.py +0 -0
  401. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/40_cutlass_py/customizable/gemm.py +0 -0
  402. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/40_cutlass_py/customizable/gemm_grouped.py +0 -0
  403. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/40_cutlass_py/gemm.py +0 -0
  404. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/40_cutlass_py/gemm_grouped.py +0 -0
  405. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/41_fused_multi_head_attention/fmha_backward_test.py +0 -0
  406. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/41_fused_multi_head_attention/piped_subprocess.py +0 -0
  407. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_all_code.py +0 -0
  408. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_cmake.py +0 -0
  409. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_customized_epilogue.py +0 -0
  410. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_device.py +0 -0
  411. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_ir.py +0 -0
  412. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_kernel.py +0 -0
  413. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_sample.py +0 -0
  414. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_threadblock.py +0 -0
  415. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_turing_and_volta.py +0 -0
  416. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/gen_verify.py +0 -0
  417. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/helper.py +0 -0
  418. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/44_multi_gemm_ir_and_codegen/ir_gen/replace_fix_impl_header.py +0 -0
  419. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/call_bypass_dlpack.py +0 -0
  420. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/call_from_jit.py +0 -0
  421. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/dynamic_smem_size.py +0 -0
  422. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/elementwise_add.py +0 -0
  423. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/elementwise_apply.py +0 -0
  424. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/flash_attention_v2.py +0 -0
  425. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/sgemm.py +0 -0
  426. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/smem_allocator.py +0 -0
  427. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/ampere/tensorop_gemm.py +0 -0
  428. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/dense_blockscaled_gemm_persistent.py +0 -0
  429. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/dense_gemm.py +0 -0
  430. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/dense_gemm_persistent.py +0 -0
  431. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/dense_gemm_software_pipeline.py +0 -0
  432. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/fmha.py +0 -0
  433. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/grouped_gemm.py +0 -0
  434. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/mamba2_ssd/mamba2_ssd.py +0 -0
  435. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/mamba2_ssd/mamba2_ssd_reference.py +0 -0
  436. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/blackwell/mamba2_ssd/mamba2_ssd_tile_scheduler.py +0 -0
  437. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/cute/ffi/jit_argument.py +0 -0
  438. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/examples/python/CuTeDSL/hopper/dense_gemm.py +0 -0
  439. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/axpby.hpp +0 -0
  440. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/clear.hpp +0 -0
  441. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/cooperative_copy.hpp +0 -0
  442. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/cooperative_gemm.hpp +0 -0
  443. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/copy.hpp +0 -0
  444. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/fill.hpp +0 -0
  445. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/functional.hpp +0 -0
  446. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/gemm.hpp +0 -0
  447. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/prefer.hpp +0 -0
  448. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/prefetch.hpp +0 -0
  449. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/tensor_algorithms.hpp +0 -0
  450. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/tensor_reduce.hpp +0 -0
  451. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/algorithm/tuple_algorithms.hpp +0 -0
  452. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/cluster_sm100.hpp +0 -0
  453. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/cluster_sm90.hpp +0 -0
  454. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/config.hpp +0 -0
  455. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/copy.hpp +0 -0
  456. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/copy_sm100.hpp +0 -0
  457. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/copy_sm100_tma.hpp +0 -0
  458. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/copy_sm50.hpp +0 -0
  459. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/copy_sm75.hpp +0 -0
  460. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/copy_sm80.hpp +0 -0
  461. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/copy_sm90.hpp +0 -0
  462. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/copy_sm90_desc.hpp +0 -0
  463. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/copy_sm90_tma.hpp +0 -0
  464. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma.hpp +0 -0
  465. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm100.hpp +0 -0
  466. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm100_desc.hpp +0 -0
  467. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm100_umma.hpp +0 -0
  468. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm120.hpp +0 -0
  469. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm120_sparse.hpp +0 -0
  470. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm61.hpp +0 -0
  471. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm70.hpp +0 -0
  472. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm75.hpp +0 -0
  473. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm80.hpp +0 -0
  474. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm89.hpp +0 -0
  475. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90.hpp +0 -0
  476. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_desc.hpp +0 -0
  477. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma.hpp +0 -0
  478. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_ext.hpp +0 -0
  479. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse.hpp +0 -0
  480. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse_ext.hpp +0 -0
  481. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/simd_sm100.hpp +0 -0
  482. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/tmem_allocator_sm100.hpp +0 -0
  483. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/arch/util.hpp +0 -0
  484. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_atom.hpp +0 -0
  485. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits.hpp +0 -0
  486. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100.hpp +0 -0
  487. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_im2col.hpp +0 -0
  488. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm100_tma.hpp +0 -0
  489. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm50.hpp +0 -0
  490. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm75.hpp +0 -0
  491. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm80.hpp +0 -0
  492. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90.hpp +0 -0
  493. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_im2col.hpp +0 -0
  494. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma.hpp +0 -0
  495. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma_swizzle.hpp +0 -0
  496. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_atom.hpp +0 -0
  497. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits.hpp +0 -0
  498. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm100.hpp +0 -0
  499. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120.hpp +0 -0
  500. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm120_sparse.hpp +0 -0
  501. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm61.hpp +0 -0
  502. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm70.hpp +0 -0
  503. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm75.hpp +0 -0
  504. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm80.hpp +0 -0
  505. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm89.hpp +0 -0
  506. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90.hpp +0 -0
  507. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma.hpp +0 -0
  508. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_ext.hpp +0 -0
  509. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse.hpp +0 -0
  510. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse_ext.hpp +0 -0
  511. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/atom/partitioner.hpp +0 -0
  512. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/config.hpp +0 -0
  513. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/container/alignment.hpp +0 -0
  514. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/container/array.hpp +0 -0
  515. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/container/array_aligned.hpp +0 -0
  516. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/container/array_subbyte.hpp +0 -0
  517. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/container/bit_field.hpp +0 -0
  518. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/container/cuda_types.hpp +0 -0
  519. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/container/tuple.hpp +0 -0
  520. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/container/type_list.hpp +0 -0
  521. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/int_tuple.hpp +0 -0
  522. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/layout.hpp +0 -0
  523. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/layout_composed.hpp +0 -0
  524. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/numeric/arithmetic_tuple.hpp +0 -0
  525. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/numeric/complex.hpp +0 -0
  526. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/numeric/int.hpp +0 -0
  527. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/numeric/integer_sequence.hpp +0 -0
  528. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/numeric/integral_constant.hpp +0 -0
  529. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/numeric/integral_ratio.hpp +0 -0
  530. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/numeric/math.hpp +0 -0
  531. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/numeric/numeric_types.hpp +0 -0
  532. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/numeric/real.hpp +0 -0
  533. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/pointer.hpp +0 -0
  534. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/pointer_base.hpp +0 -0
  535. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/pointer_flagged.hpp +0 -0
  536. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/pointer_sparse.hpp +0 -0
  537. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/pointer_swizzle.hpp +0 -0
  538. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/stride.hpp +0 -0
  539. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/swizzle.hpp +0 -0
  540. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/swizzle_layout.hpp +0 -0
  541. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/tensor.hpp +0 -0
  542. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/tensor_impl.hpp +0 -0
  543. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/tensor_zip.hpp +0 -0
  544. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/underscore.hpp +0 -0
  545. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/util/debug.hpp +0 -0
  546. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/util/print.hpp +0 -0
  547. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/util/print_latex.hpp +0 -0
  548. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/util/print_svg.hpp +0 -0
  549. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/util/print_tensor.hpp +0 -0
  550. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cute/util/type_traits.hpp +0 -0
  551. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/aligned_buffer.h +0 -0
  552. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/arch.h +0 -0
  553. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/barrier.h +0 -0
  554. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/cache_operation.h +0 -0
  555. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/config.h +0 -0
  556. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/grid_dependency_control.h +0 -0
  557. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/memory.h +0 -0
  558. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/memory_sm75.h +0 -0
  559. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/memory_sm80.h +0 -0
  560. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma.h +0 -0
  561. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm100.h +0 -0
  562. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm50.h +0 -0
  563. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm60.h +0 -0
  564. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm61.h +0 -0
  565. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm70.h +0 -0
  566. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm75.h +0 -0
  567. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm80.h +0 -0
  568. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm89.h +0 -0
  569. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sm90.h +0 -0
  570. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm80.h +0 -0
  571. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm89.h +0 -0
  572. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/reg_reconfig.h +0 -0
  573. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/simd.h +0 -0
  574. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/simd_sm60.h +0 -0
  575. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/simd_sm61.h +0 -0
  576. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/synclog.hpp +0 -0
  577. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/wmma.h +0 -0
  578. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/wmma_sm70.h +0 -0
  579. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/wmma_sm72.h +0 -0
  580. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/arch/wmma_sm75.h +0 -0
  581. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/array.h +0 -0
  582. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/array_planar_complex.h +0 -0
  583. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/array_subbyte.h +0 -0
  584. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/barrier.h +0 -0
  585. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/bfloat16.h +0 -0
  586. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/blas3.h +0 -0
  587. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/blas3_types.h +0 -0
  588. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/block_striped.h +0 -0
  589. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/cluster_launch.hpp +0 -0
  590. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/complex.h +0 -0
  591. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/constants.h +0 -0
  592. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_common.inl +0 -0
  593. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm100_umma_builder.inl +0 -0
  594. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_common.inl +0 -0
  595. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_gmma_builder.inl +0 -0
  596. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/collective/collective_builder.hpp +0 -0
  597. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/collective/collective_conv.hpp +0 -0
  598. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/collective/detail.hpp +0 -0
  599. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/collective/sm100_implicit_gemm_umma_warpspecialized.hpp +0 -0
  600. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/collective/sm90_implicit_gemm_gmma_ss_warpspecialized.hpp +0 -0
  601. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/conv2d_problem_size.h +0 -0
  602. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/conv3d_problem_size.h +0 -0
  603. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/convnd_problem_shape.hpp +0 -0
  604. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/convolution.h +0 -0
  605. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/detail.hpp +0 -0
  606. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/device/conv_universal_adapter.hpp +0 -0
  607. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/device/direct_convolution.h +0 -0
  608. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution.h +0 -0
  609. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution_fusion.h +0 -0
  610. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/dispatch_policy.hpp +0 -0
  611. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/conv_universal.hpp +0 -0
  612. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d.h +0 -0
  613. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_dgrad.h +0 -0
  614. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop.h +0 -0
  615. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_fusion.h +0 -0
  616. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_absmax.h +0 -0
  617. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_broadcast.h +0 -0
  618. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_reduction.h +0 -0
  619. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_group_fprop.h +0 -0
  620. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad.h +0 -0
  621. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad_fusion.h +0 -0
  622. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_dgrad.h +0 -0
  623. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop.h +0 -0
  624. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_fusion.h +0 -0
  625. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_with_broadcast.h +0 -0
  626. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_wgrad.h +0 -0
  627. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d.h +0 -0
  628. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d_with_broadcast.h +0 -0
  629. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d.h +0 -0
  630. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d_with_broadcast.h +0 -0
  631. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/default_depthwise_fprop.h +0 -0
  632. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/direct_convolution.h +0 -0
  633. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution.h +0 -0
  634. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_fusion.h +0 -0
  635. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_strided_dgrad.h +0 -0
  636. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_absmax.h +0 -0
  637. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_fused_epilogue.h +0 -0
  638. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/sm100_implicit_gemm_tma_warpspecialized.hpp +0 -0
  639. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/kernel/sm90_implicit_gemm_tma_warpspecialized.hpp +0 -0
  640. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/thread/depthwise_mma.h +0 -0
  641. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
  642. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
  643. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
  644. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
  645. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_analytic.h +0 -0
  646. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_few_channels.h +0 -0
  647. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_fixed_channels.h +0 -0
  648. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_optimized.h +0 -0
  649. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_analytic.h +0 -0
  650. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_few_channels.h +0 -0
  651. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_fixed_channels.h +0 -0
  652. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_optimized.h +0 -0
  653. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_params.h +0 -0
  654. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_tile_iterator.h +0 -0
  655. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
  656. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
  657. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
  658. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
  659. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_analytic.h +0 -0
  660. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_optimized.h +0 -0
  661. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
  662. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
  663. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_analytic.h +0 -0
  664. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_optimized.h +0 -0
  665. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_analytic.h +0 -0
  666. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_optimized.h +0 -0
  667. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_params.h +0 -0
  668. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_analytic.h +0 -0
  669. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_optimized.h +0 -0
  670. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_analytic.h +0 -0
  671. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_optimized.h +0 -0
  672. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_direct_conv_params.h +0 -0
  673. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_fixed_stride_dilation.h +0 -0
  674. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_optimized.h +0 -0
  675. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_direct_conv_multistage.h +0 -0
  676. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_filter_tile_access_iterator_direct_conv_optimized.h +0 -0
  677. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_pipelined.h +0 -0
  678. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_base.h +0 -0
  679. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_core_with_lane_access_size.h +0 -0
  680. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_fprop_fusion_multistage.h +0 -0
  681. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_multistage.h +0 -0
  682. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_pipelined.h +0 -0
  683. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_wgrad_fusion_multistage.h +0 -0
  684. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
  685. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
  686. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/threadblock/threadblock_swizzle.h +0 -0
  687. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt.h +0 -0
  688. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt_tile_iterator.h +0 -0
  689. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/conv/warp/scale_bias_relu_transform.h +0 -0
  690. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/coord.h +0 -0
  691. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/core_io.h +0 -0
  692. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/cuda_host_adapter.hpp +0 -0
  693. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/cutlass.h +0 -0
  694. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/blockwise_scale_layout.hpp +0 -0
  695. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/cluster.hpp +0 -0
  696. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/collective/mixed_input_utils.hpp +0 -0
  697. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/collective/sm103_kernel_type.hpp +0 -0
  698. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/collective.hpp +0 -0
  699. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/dependent_false.hpp +0 -0
  700. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/helper_macros.hpp +0 -0
  701. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/layout.hpp +0 -0
  702. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/mainloop_fusion_helper_scale_factor.hpp +0 -0
  703. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/mma.hpp +0 -0
  704. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/sm100_blockscaled_layout.hpp +0 -0
  705. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/sm100_mixed_dtype_blockwise_layout.hpp +0 -0
  706. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/sm100_tmem_helper.hpp +0 -0
  707. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/detail/sm103_blockscaled_layout.hpp +0 -0
  708. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/device_kernel.h +0 -0
  709. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm100_builder.inl +0 -0
  710. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm103_builder.inl +0 -0
  711. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_builder.inl +0 -0
  712. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm120_common.inl +0 -0
  713. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_builder.inl +0 -0
  714. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_common.inl +0 -0
  715. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_builder.hpp +0 -0
  716. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_epilogue.hpp +0 -0
  717. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue.hpp +0 -0
  718. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue_array.hpp +0 -0
  719. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/detail.hpp +0 -0
  720. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/epilogue_tensor_broadcast.hpp +0 -0
  721. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_nosmem.hpp +0 -0
  722. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_array_tma_warpspecialized.hpp +0 -0
  723. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_nosmem.hpp +0 -0
  724. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm100_epilogue_tma_warpspecialized.hpp +0 -0
  725. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized.hpp +0 -0
  726. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized_array.hpp +0 -0
  727. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_array_tma_warpspecialized.hpp +0 -0
  728. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized.hpp +0 -0
  729. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized_bias_elementwise.hpp +0 -0
  730. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/dispatch_policy.hpp +0 -0
  731. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/callbacks.hpp +0 -0
  732. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/operations.hpp +0 -0
  733. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_callbacks_tma_warpspecialized.hpp +0 -0
  734. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_compute_tma_warpspecialized.hpp +0 -0
  735. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm100_visitor_store_tma_warpspecialized.hpp +0 -0
  736. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_callbacks_tma_warpspecialized.hpp +0 -0
  737. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm120_visitor_store_tma_warpspecialized.hpp +0 -0
  738. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_callbacks_tma_warpspecialized.hpp +0 -0
  739. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_compute_tma_warpspecialized.hpp +0 -0
  740. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_load_tma_warpspecialized.hpp +0 -0
  741. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_store_tma_warpspecialized.hpp +0 -0
  742. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_tma_warpspecialized.hpp +0 -0
  743. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_topk_softmax.hpp +0 -0
  744. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/activation.h +0 -0
  745. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/conversion_op.h +0 -0
  746. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/detail.hpp +0 -0
  747. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination.h +0 -0
  748. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_elementwise.h +0 -0
  749. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_relu.h +0 -0
  750. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_clamp.h +0 -0
  751. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_dgelu.h +0 -0
  752. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_drelu.h +0 -0
  753. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_gelu.h +0 -0
  754. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic.h +0 -0
  755. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic_with_scaling.h +0 -0
  756. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_hardswish.h +0 -0
  757. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_leaky_relu.h +0 -0
  758. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_params.h +0 -0
  759. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_planar_complex.h +0 -0
  760. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu.h +0 -0
  761. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu0.h +0 -0
  762. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_residual_block.h +0 -0
  763. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_sigmoid.h +0 -0
  764. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_silu.h +0 -0
  765. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_tensor_broadcast.hpp +0 -0
  766. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_with_elementwise.h +0 -0
  767. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/reduction_op.h +0 -0
  768. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/thread/scale_type.h +0 -0
  769. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op.h +0 -0
  770. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op_blas3.h +0 -0
  771. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_direct_store.h +0 -0
  772. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_planar_complex.h +0 -0
  773. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_simt.h +0 -0
  774. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op.h +0 -0
  775. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op_blas3.h +0 -0
  776. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_volta_tensor_op.h +0 -0
  777. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_absmax.h +0 -0
  778. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_broadcast.h +0 -0
  779. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_reduction.h +0 -0
  780. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_wmma_tensor_op.h +0 -0
  781. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_simt.h +0 -0
  782. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_tensor_op.h +0 -0
  783. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_volta_tensor_op.h +0 -0
  784. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_wmma_tensor_op.h +0 -0
  785. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/direct_store_epilogue_iterator.h +0 -0
  786. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue.h +0 -0
  787. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base.h +0 -0
  788. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base_streamk.h +0 -0
  789. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_depthwise.h +0 -0
  790. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_direct_store.h +0 -0
  791. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_gemm_k_reduction.h +0 -0
  792. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_planar_complex.h +0 -0
  793. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_smem_accumulator.h +0 -0
  794. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_streamk_with_broadcast.h +0 -0
  795. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_visitor_with_softmax.h +0 -0
  796. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_absmax.h +0 -0
  797. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_broadcast.h +0 -0
  798. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_reduction.h +0 -0
  799. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_scaling_factor.h +0 -0
  800. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor.h +0 -0
  801. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor_callbacks.h +0 -0
  802. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_workspace.h +0 -0
  803. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_2x.hpp +0 -0
  804. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_compute.hpp +0 -0
  805. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_load.hpp +0 -0
  806. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_store.hpp +0 -0
  807. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitors.hpp +0 -0
  808. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/interleaved_epilogue.h +0 -0
  809. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_iterator_parameter.h +0 -0
  810. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_tile_thread_map.h +0 -0
  811. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator.h +0 -0
  812. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine.h +0 -0
  813. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine_layout_params.h +0 -0
  814. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_blas3.h +0 -0
  815. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_conv.h +0 -0
  816. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_direct_conv.h +0 -0
  817. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_params.h +0 -0
  818. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_predicates.h +0 -0
  819. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_strided_dgrad.h +0 -0
  820. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator.h +0 -0
  821. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_mixed.h +0 -0
  822. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_pitch_linear.h +0 -0
  823. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_complex_tensor_op.h +0 -0
  824. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_gaussian_complex_tensor_op.h +0 -0
  825. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_simt.h +0 -0
  826. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_tensor_op.h +0 -0
  827. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_volta_tensor_op.h +0 -0
  828. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_wmma_tensor_op.h +0 -0
  829. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/simt_policy.h +0 -0
  830. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tensor_op_policy.h +0 -0
  831. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_simt.h +0 -0
  832. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op.h +0 -0
  833. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op_mixed.h +0 -0
  834. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h +0 -0
  835. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_wmma_tensor_op.h +0 -0
  836. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/volta_tensor_op_policy.h +0 -0
  837. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/epilogue/warp/wmma_tensor_op_policy.h +0 -0
  838. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/exmy_base.h +0 -0
  839. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/detail.hpp +0 -0
  840. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/dist_gemm_universal_wrapper.hpp +0 -0
  841. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/device/full_barrier.hpp +0 -0
  842. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/detail.hpp +0 -0
  843. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/dist_gemm_kernel_wrapper.hpp +0 -0
  844. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/kernel/full_barrier.hpp +0 -0
  845. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_1d_schedules.hpp +0 -0
  846. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/experimental/distributed/schedules/dist_gemm_base_schedule.hpp +0 -0
  847. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/fast_math.h +0 -0
  848. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/float8.h +0 -0
  849. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/float_subbyte.h +0 -0
  850. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/floating_point_nvrtc.h +0 -0
  851. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/functional.h +0 -0
  852. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_9xBF16_umma_builder.inl +0 -0
  853. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_mixed_tma_cpasync_umma_builder.inl +0 -0
  854. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_sparse_umma_builder.inl +0 -0
  855. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockscaled_umma_builder.inl +0 -0
  856. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_blockwise_umma_builder.inl +0 -0
  857. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_common.inl +0 -0
  858. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_cpasync_umma_builder.inl +0 -0
  859. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_mixed_input_umma_builder.inl +0 -0
  860. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_mixed_tma_cpasync_umma_builder.inl +0 -0
  861. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_pipeline_carveout.inl +0 -0
  862. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_simt_builder.inl +0 -0
  863. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_sparse_umma_builder.inl +0 -0
  864. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm100_umma_builder.inl +0 -0
  865. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm103_blockscaled_umma_builder.inl +0 -0
  866. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_mma_builder.inl +0 -0
  867. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockscaled_sparse_mma_builder.inl +0 -0
  868. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_blockwise_mma_builder.inl +0 -0
  869. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_common.inl +0 -0
  870. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_mma_builder.inl +0 -0
  871. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm120_sparse_mma_builder.inl +0 -0
  872. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_common.inl +0 -0
  873. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm1xx_sparse_config.inl +0 -0
  874. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_common.inl +0 -0
  875. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_gmma_builder.inl +0 -0
  876. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_config.inl +0 -0
  877. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_gmma_builder.inl +0 -0
  878. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder.hpp +0 -0
  879. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder_decl.hpp +0 -0
  880. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma.hpp +0 -0
  881. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma_decl.hpp +0 -0
  882. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/fp8_accumulation.hpp +0 -0
  883. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_array_warpspecialized.hpp +0 -0
  884. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_mixed_tma_cpasync_warpspecialized.hpp +0 -0
  885. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_mma_warpspecialized.hpp +0 -0
  886. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_blockscaled_sparse_mma_warpspecialized.hpp +0 -0
  887. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized.hpp +0 -0
  888. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_blockwise_scaling.hpp +0 -0
  889. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_array_warpspecialized_emulated.hpp +0 -0
  890. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_cpasync_warpspecialized.hpp +0 -0
  891. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_mixed_tma_cpasync_warpspecialized.hpp +0 -0
  892. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized.hpp +0 -0
  893. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_blockwise_scaling.hpp +0 -0
  894. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_emulated.hpp +0 -0
  895. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_mma_warpspecialized_mixed_input.hpp +0 -0
  896. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm100_sparse_mma_warpspecialized.hpp +0 -0
  897. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm103_blockscaled_mma_array_warpspecialized.hpp +0 -0
  898. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm103_blockscaled_mma_warpspecialized.hpp +0 -0
  899. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_array_tma.hpp +0 -0
  900. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_mma_tma.hpp +0 -0
  901. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_blockscaled_sparse_mma_tma.hpp +0 -0
  902. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_array_tma_blockwise_scaling.hpp +0 -0
  903. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma.hpp +0 -0
  904. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_mma_tma_blockwise_scaling.hpp +0 -0
  905. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm120_sparse_mma_tma.hpp +0 -0
  906. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm70_mma_twostage.hpp +0 -0
  907. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_array_multistage.hpp +0 -0
  908. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_multistage.hpp +0 -0
  909. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
  910. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized.hpp +0 -0
  911. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
  912. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
  913. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_rs_warpspecialized.hpp +0 -0
  914. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_ss_warpspecialized.hpp +0 -0
  915. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized.hpp +0 -0
  916. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
  917. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss.hpp +0 -0
  918. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
  919. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
  920. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8_blockwise_scaling.hpp +0 -0
  921. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized.hpp +0 -0
  922. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
  923. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/base_grouped.h +0 -0
  924. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/default_gemm_configuration.h +0 -0
  925. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/ell_gemm.h +0 -0
  926. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm.h +0 -0
  927. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_array.h +0 -0
  928. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_batched.h +0 -0
  929. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_complex.h +0 -0
  930. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_grouped.h +0 -0
  931. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_layernorm_mainloop_fusion.h +0 -0
  932. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse.h +0 -0
  933. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal.h +0 -0
  934. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal_with_absmax.h +0 -0
  935. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_absmax.h +0 -0
  936. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_visitor.h +0 -0
  937. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_splitk_parallel.h +0 -0
  938. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal.h +0 -0
  939. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h +0 -0
  940. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_base.h +0 -0
  941. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_streamk_with_broadcast.h +0 -0
  942. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_absmax.h +0 -0
  943. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_broadcast.h +0 -0
  944. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemm_with_k_reduction.h +0 -0
  945. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemv.h +0 -0
  946. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/gemv_blockscaled.h +0 -0
  947. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k.h +0 -0
  948. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k_grouped.h +0 -0
  949. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/rank_k.h +0 -0
  950. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/symm.h +0 -0
  951. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/device/trmm.h +0 -0
  952. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/dispatch_policy.hpp +0 -0
  953. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/gemm.h +0 -0
  954. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/gemm_enumerated_types.h +0 -0
  955. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/group_array_problem_shape.hpp +0 -0
  956. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_ell_gemm.h +0 -0
  957. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm.h +0 -0
  958. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_complex.h +0 -0
  959. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped.h +0 -0
  960. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_per_group_scale.h +0 -0
  961. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_softmax_mainloop_fusion.h +0 -0
  962. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_layernorm_mainloop_fusion.h +0 -0
  963. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_planar_complex_universal.h +0 -0
  964. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse.h +0 -0
  965. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal.h +0 -0
  966. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal_with_absmax.h +0 -0
  967. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_absmax.h +0 -0
  968. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_visitor.h +0 -0
  969. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_splitk_parallel.h +0 -0
  970. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_streamk_with_broadcast.h +0 -0
  971. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal.h +0 -0
  972. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal_with_visitor.h +0 -0
  973. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_absmax.h +0 -0
  974. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_broadcast.h +0 -0
  975. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_k_reduction.h +0 -0
  976. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_reduction.h +0 -0
  977. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemv.h +0 -0
  978. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k.h +0 -0
  979. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_complex.h +0 -0
  980. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_grouped.h +0 -0
  981. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_universal.h +0 -0
  982. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k.h +0 -0
  983. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_complex.h +0 -0
  984. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_universal.h +0 -0
  985. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm.h +0 -0
  986. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_complex.h +0 -0
  987. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_universal.h +0 -0
  988. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm.h +0 -0
  989. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_complex.h +0 -0
  990. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_universal.h +0 -0
  991. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/ell_gemm.h +0 -0
  992. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm.h +0 -0
  993. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_array.h +0 -0
  994. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_batched.h +0 -0
  995. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped.h +0 -0
  996. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_per_group_scale.h +0 -0
  997. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_problem_visitor.h +0 -0
  998. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_softmax_mainloop_fusion.h +0 -0
  999. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_layernorm_mainloop_fusion.h +0 -0
  1000. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_params.h +0 -0
  1001. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_pipelined.h +0 -0
  1002. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex.h +0 -0
  1003. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex_array.h +0 -0
  1004. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal.h +0 -0
  1005. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal_with_absmax.h +0 -0
  1006. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_splitk_parallel.h +0 -0
  1007. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_streamk_with_fused_epilogue.h +0 -0
  1008. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_transpose_operands.h +0 -0
  1009. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.h +0 -0
  1010. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.hpp +0 -0
  1011. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_decl.h +0 -0
  1012. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_streamk.h +0 -0
  1013. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h +0 -0
  1014. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor_streamk.h +0 -0
  1015. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_absmax.h +0 -0
  1016. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_fused_epilogue.h +0 -0
  1017. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_k_reduction.h +0 -0
  1018. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv.h +0 -0
  1019. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_batched_strided.h +0 -0
  1020. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_blockscaled.h +0 -0
  1021. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/grouped_problem_visitor.h +0 -0
  1022. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_sparse_base.h +0 -0
  1023. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/params_universal_base.h +0 -0
  1024. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped.h +0 -0
  1025. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped_problem_visitor.h +0 -0
  1026. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_transpose_operands.h +0 -0
  1027. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_universal.h +0 -0
  1028. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_k_universal.h +0 -0
  1029. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized.hpp +0 -0
  1030. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_input_transform.hpp +0 -0
  1031. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_array_tma_warpspecialized_mma_transform.hpp +0 -0
  1032. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_cpasync_warpspecialized.hpp +0 -0
  1033. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_mixed_tma_cpasync_warpspecialized.hpp +0 -0
  1034. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized.hpp +0 -0
  1035. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_input_transform.hpp +0 -0
  1036. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mixed_input_transform.hpp +0 -0
  1037. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_gemm_tma_warpspecialized_mma_transform.hpp +0 -0
  1038. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_sparse_gemm_tma_warpspecialized.hpp +0 -0
  1039. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_static_tile_scheduler.hpp +0 -0
  1040. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler.hpp +0 -0
  1041. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_group.hpp +0 -0
  1042. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm100_tile_scheduler_stream_k.hpp +0 -0
  1043. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm103_blockscaled_gemm_array_tma_warpspecialized.hpp +0 -0
  1044. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm103_blockscaled_gemm_tma_warpspecialized.hpp +0 -0
  1045. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm120_gemm_tma_warpspecialized_cooperative_asymmetric_dma.hpp +0 -0
  1046. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm.hpp +0 -0
  1047. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm_array.hpp +0 -0
  1048. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp +0 -0
  1049. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_pingpong.hpp +0 -0
  1050. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma.hpp +0 -0
  1051. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized.hpp +0 -0
  1052. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_cooperative.hpp +0 -0
  1053. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp +0 -0
  1054. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized.hpp +0 -0
  1055. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_cooperative.hpp +0 -0
  1056. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_pingpong.hpp +0 -0
  1057. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler.hpp +0 -0
  1058. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_group.hpp +0 -0
  1059. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_stream_k.hpp +0 -0
  1060. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm.h +0 -0
  1061. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_absmax.h +0 -0
  1062. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_visitor.h +0 -0
  1063. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/static_tile_scheduler.hpp +0 -0
  1064. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/symm_universal.h +0 -0
  1065. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler.hpp +0 -0
  1066. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_detail.hpp +0 -0
  1067. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_params.h +0 -0
  1068. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/kernel/trmm_universal.h +0 -0
  1069. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma.h +0 -0
  1070. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm50.h +0 -0
  1071. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm60.h +0 -0
  1072. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm61.h +0 -0
  1073. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_ell_mma.h +0 -0
  1074. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_gemv_core.h +0 -0
  1075. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma.h +0 -0
  1076. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core.h +0 -0
  1077. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_simt.h +0 -0
  1078. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm70.h +0 -0
  1079. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm75.h +0 -0
  1080. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm80.h +0 -0
  1081. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sparse_sm80.h +0 -0
  1082. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_access_size.h +0 -0
  1083. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_reduction.h +0 -0
  1084. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_wmma.h +0 -0
  1085. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_layernorm_mainloop_fusion.h +0 -0
  1086. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_multistage.h +0 -0
  1087. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_pipelined.h +0 -0
  1088. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_softmax_mainloop_fusion.h +0 -0
  1089. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_with_reduction.h +0 -0
  1090. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex.h +0 -0
  1091. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core.h +0 -0
  1092. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core_sm80.h +0 -0
  1093. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_trmm_complex.h +0 -0
  1094. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_sparse_mma.h +0 -0
  1095. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_trmm.h +0 -0
  1096. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_multistage.h +0 -0
  1097. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_pipelined.h +0 -0
  1098. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/gemv.h +0 -0
  1099. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/index_remat.h +0 -0
  1100. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_base.h +0 -0
  1101. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_blas3_multistage.h +0 -0
  1102. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_layernorm_mainloop_fusion_multistage.h +0 -0
  1103. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_multistage.h +0 -0
  1104. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_pipelined.h +0 -0
  1105. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_base.h +0 -0
  1106. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_multistage.h +0 -0
  1107. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_pipelined.h +0 -0
  1108. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_singlestage.h +0 -0
  1109. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_softmax_mainloop_fusion_multistage.h +0 -0
  1110. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_base.h +0 -0
  1111. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_multistage.h +0 -0
  1112. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_with_reduction_multistage.h +0 -0
  1113. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle.h +0 -0
  1114. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle_streamk.h +0 -0
  1115. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_complex_tensor_op.h +0 -0
  1116. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_sparse_tensor_op.h +0 -0
  1117. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op.h +0 -0
  1118. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op_sm80.h +0 -0
  1119. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_with_reduction_tensor_op.h +0 -0
  1120. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_wmma_tensor_op.h +0 -0
  1121. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/layernorm_scale_bias_transform.h +0 -0
  1122. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma.h +0 -0
  1123. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op.h +0 -0
  1124. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_fast_f32.h +0 -0
  1125. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_tile_iterator_sm80.h +0 -0
  1126. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op.h +0 -0
  1127. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op_tile_iterator_sm80.h +0 -0
  1128. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_mixed_input_tensor_op.h +0 -0
  1129. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_planar_complex.h +0 -0
  1130. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt.h +0 -0
  1131. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_policy.h +0 -0
  1132. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_tile_iterator.h +0 -0
  1133. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_sparse_tensor_op.h +0 -0
  1134. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op.h +0 -0
  1135. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fast_f32.h +0 -0
  1136. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fragment_iterator.h +0 -0
  1137. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_policy.h +0 -0
  1138. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_sm70.h +0 -0
  1139. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_access_iterator.h +0 -0
  1140. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator.h +0 -0
  1141. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm70.h +0 -0
  1142. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm80.h +0 -0
  1143. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sparse.h +0 -0
  1144. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_wmma.h +0 -0
  1145. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_wmma.h +0 -0
  1146. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/mma_with_reduction_tensor_op.h +0 -0
  1147. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/scale_bias_tile_iterator.h +0 -0
  1148. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/softmax_scale_bias_transform.h +0 -0
  1149. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm/warp/tile_iterator_planar_complex.h +0 -0
  1150. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm_coord.h +0 -0
  1151. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/gemm_coord.hpp +0 -0
  1152. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/half.h +0 -0
  1153. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/integer_subbyte.h +0 -0
  1154. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.h +0 -0
  1155. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/kernel_hardware_info.hpp +0 -0
  1156. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/kernel_launch.h +0 -0
  1157. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/layout/layout.h +0 -0
  1158. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/layout/matrix.h +0 -0
  1159. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/layout/permute.h +0 -0
  1160. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/layout/pitch_linear.h +0 -0
  1161. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/layout/tensor.h +0 -0
  1162. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm70.h +0 -0
  1163. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm75.h +0 -0
  1164. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm80.h +0 -0
  1165. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/layout/vector.h +0 -0
  1166. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/matrix.h +0 -0
  1167. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/matrix_coord.h +0 -0
  1168. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/matrix_shape.h +0 -0
  1169. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/numeric_conversion.h +0 -0
  1170. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/numeric_size.h +0 -0
  1171. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/numeric_types.h +0 -0
  1172. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/pipeline/pipeline.hpp +0 -0
  1173. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/pipeline/sm100_pipeline.hpp +0 -0
  1174. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/pipeline/sm90_pipeline.hpp +0 -0
  1175. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/pitch_linear_coord.h +0 -0
  1176. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/platform/platform.h +0 -0
  1177. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/predicate_vector.h +0 -0
  1178. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/quaternion.h +0 -0
  1179. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/real.h +0 -0
  1180. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/device/reduce_split_k.h +0 -0
  1181. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce.h +0 -0
  1182. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_contiguous.h +0 -0
  1183. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_strided.h +0 -0
  1184. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_softmax_final.h +0 -0
  1185. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_split_k.h +0 -0
  1186. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_contiguous.h +0 -0
  1187. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_strided.h +0 -0
  1188. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/thread/reduce.h +0 -0
  1189. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/thread/reduction_operators.h +0 -0
  1190. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/reduction/threadblock_swizzle.h +0 -0
  1191. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/relatively_equal.h +0 -0
  1192. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/semaphore.h +0 -0
  1193. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/subbyte_reference.h +0 -0
  1194. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/tensor_coord.h +0 -0
  1195. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/tensor_ref.h +0 -0
  1196. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/tensor_ref_planar_complex.h +0 -0
  1197. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/tensor_view.h +0 -0
  1198. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/tensor_view_planar_complex.h +0 -0
  1199. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/tfloat32.h +0 -0
  1200. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/thread/matrix.h +0 -0
  1201. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/trace.h +0 -0
  1202. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/collective/sm90_wgmma_transpose.hpp +0 -0
  1203. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/device/transform_universal_adapter.hpp +0 -0
  1204. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/kernel/filter_format_transformer.hpp +0 -0
  1205. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/kernel/sm90_sparse_gemm_compressor.hpp +0 -0
  1206. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/kernel/sparse_gemm_compressor.hpp +0 -0
  1207. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/pitch_linear_thread_map.h +0 -0
  1208. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/thread/transpose.h +0 -0
  1209. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/thread/unary_op.h +0 -0
  1210. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_iterator.h +0 -0
  1211. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_access_iterator.h +0 -0
  1212. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_iterator.h +0 -0
  1213. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_access_iterator.h +0 -0
  1214. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_iterator.h +0 -0
  1215. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator.h +0 -0
  1216. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_2dthreadtile.h +0 -0
  1217. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_params.h +0 -0
  1218. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_triangular_matrix.h +0 -0
  1219. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator.h +0 -0
  1220. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_2dthreadtile.h +0 -0
  1221. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_triangular_matrix.h +0 -0
  1222. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_vector_access_iterator.h +0 -0
  1223. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_scale_bias_vector_access_iterator.h +0 -0
  1224. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator.h +0 -0
  1225. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear.h +0 -0
  1226. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear_direct_conv.h +0 -0
  1227. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op.h +0 -0
  1228. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op_sm80.h +0 -0
  1229. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator.h +0 -0
  1230. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear.h +0 -0
  1231. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear_2dthreadtile.h +0 -0
  1232. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op.h +0 -0
  1233. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op_sm70.h +0 -0
  1234. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/threadblock/vector_iterator.h +0 -0
  1235. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/transform/warp/vector_fragment_iterator.h +0 -0
  1236. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/uint128.h +0 -0
  1237. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/uint256.h +0 -0
  1238. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/version.h +0 -0
  1239. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/wmma_array.h +0 -0
  1240. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/include/cutlass/workspace.h +0 -0
  1241. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/__init__.py +0 -0
  1242. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/__init__.py +0 -0
  1243. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/arith.py +0 -0
  1244. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/gpu.py +0 -0
  1245. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/lru_cache_ir.py +0 -0
  1246. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/_mlir_helpers/op.py +0 -0
  1247. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/ast_helpers.py +0 -0
  1248. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/ast_preprocessor.py +0 -0
  1249. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/cache_helpers.py +0 -0
  1250. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/common.py +0 -0
  1251. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/compiler.py +0 -0
  1252. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/dsl.py +0 -0
  1253. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/env_manager.py +0 -0
  1254. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/jit_executor.py +0 -0
  1255. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/__init__.py +0 -0
  1256. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/cuda.py +0 -0
  1257. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/device_tensor.py +0 -0
  1258. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/dlpack_types.py +0 -0
  1259. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/jit_arg_adapters.py +0 -0
  1260. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/runtime/tensor_descriptor.py +0 -0
  1261. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/typing.py +0 -0
  1262. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/utils/__init__.py +0 -0
  1263. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/utils/logger.py +0 -0
  1264. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/utils/stacktrace.py +0 -0
  1265. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/base_dsl/utils/timer.py +0 -0
  1266. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/__init__.py +0 -0
  1267. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/__init__.py +0 -0
  1268. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/__init__.py +0 -0
  1269. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/elect.py +0 -0
  1270. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/mbar.py +0 -0
  1271. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/nvvm_wrappers.py +0 -0
  1272. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/smem.py +0 -0
  1273. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/arch/tmem.py +0 -0
  1274. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/core.py +0 -0
  1275. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/math.py +0 -0
  1276. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/__init__.py +0 -0
  1277. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/common.py +0 -0
  1278. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/cpasync/__init__.py +0 -0
  1279. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/cpasync/copy.py +0 -0
  1280. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/cpasync/helpers.py +0 -0
  1281. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/helpers.py +0 -0
  1282. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/tcgen05/__init__.py +0 -0
  1283. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/tcgen05/copy.py +0 -0
  1284. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/tcgen05/helpers.py +0 -0
  1285. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/tcgen05/mma.py +0 -0
  1286. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warp/__init__.py +0 -0
  1287. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warp/copy.py +0 -0
  1288. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warp/mma.py +0 -0
  1289. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warpgroup/__init__.py +0 -0
  1290. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warpgroup/helpers.py +0 -0
  1291. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/nvgpu/warpgroup/mma.py +0 -0
  1292. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/runtime.py +0 -0
  1293. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/testing.py +0 -0
  1294. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/cute/typing.py +0 -0
  1295. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/impl_utils.py +0 -0
  1296. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/pipeline/__init__.py +0 -0
  1297. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/pipeline/helpers.py +0 -0
  1298. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/pipeline/sm100.py +0 -0
  1299. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/pipeline/sm90.py +0 -0
  1300. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/torch.py +0 -0
  1301. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/__init__.py +0 -0
  1302. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/ampere_helpers.py +0 -0
  1303. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/blackwell_helpers.py +0 -0
  1304. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/blockscaled_layout.py +0 -0
  1305. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/distributed_helpers.py +0 -0
  1306. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/grouped_gemm_tile_scheduler_helper.py +0 -0
  1307. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/hardware_info.py +0 -0
  1308. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/hopper_helpers.py +0 -0
  1309. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/layout.py +0 -0
  1310. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/smem_allocator.py +0 -0
  1311. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/smem_capacity.py +0 -0
  1312. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/static_persistent_tile_scheduler.py +0 -0
  1313. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass/utils/tensormap_manager.py +0 -0
  1314. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass_dsl/__init__.py +0 -0
  1315. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass_dsl/cutlass.py +0 -0
  1316. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass_dsl/cutlass_ast_decorators.py +0 -0
  1317. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/CuTeDSL/cutlass_dsl/tree_utils.py +0 -0
  1318. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/__init__.py +0 -0
  1319. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/__init__.py +0 -0
  1320. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/arguments.py +0 -0
  1321. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/c_types.py +0 -0
  1322. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/compiler.py +0 -0
  1323. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/conv2d_operation.py +0 -0
  1324. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/epilogue.py +0 -0
  1325. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/__init__.py +0 -0
  1326. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/__init__.py +0 -0
  1327. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/emitter_base.py +0 -0
  1328. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm100_emitter.py +0 -0
  1329. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm100_nodes.py +0 -0
  1330. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm80_emitter.py +0 -0
  1331. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm80_nodes.py +0 -0
  1332. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm90_emitter.py +0 -0
  1333. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/backend/sm90_nodes.py +0 -0
  1334. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/epilogue.py +0 -0
  1335. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/frontend/__init__.py +0 -0
  1336. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/frontend/frontend_base.py +0 -0
  1337. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/frontend/python_ast.py +0 -0
  1338. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/__init__.py +0 -0
  1339. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/compute_nodes.py +0 -0
  1340. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/dag_ir.py +0 -0
  1341. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/layout_algorithm.py +0 -0
  1342. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/layout_nodes.py +0 -0
  1343. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/load_nodes.py +0 -0
  1344. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/node.py +0 -0
  1345. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/store_nodes.py +0 -0
  1346. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/ir/tensor.py +0 -0
  1347. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/__init__.py +0 -0
  1348. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/graph_drawer.py +0 -0
  1349. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_argument_type.py +0 -0
  1350. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_dag_2_tree.py +0 -0
  1351. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_fix_element_d.py +0 -0
  1352. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_get_impl.py +0 -0
  1353. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_layout_elimination.py +0 -0
  1354. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_manager.py +0 -0
  1355. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_no_op_elimination.py +0 -0
  1356. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_preprocess_red.py +0 -0
  1357. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/pass_shape_type_propagation.py +0 -0
  1358. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/smem_size_calculator.py +0 -0
  1359. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/evt/passes/util.py +0 -0
  1360. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/frontend.py +0 -0
  1361. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/gemm_operation.py +0 -0
  1362. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/library.py +0 -0
  1363. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/memory_manager.py +0 -0
  1364. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/operation.py +0 -0
  1365. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/reduction_operation.py +0 -0
  1366. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/type_hint.py +0 -0
  1367. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/utils/__init__.py +0 -0
  1368. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/backend/utils/device.py +0 -0
  1369. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/emit/__init__.py +0 -0
  1370. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/emit/common.py +0 -0
  1371. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/emit/pytorch.py +0 -0
  1372. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/epilogue/__init__.py +0 -0
  1373. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/epilogue/epilogue.py +0 -0
  1374. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/epilogue/evt_ops.py +0 -0
  1375. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/library_defaults.py +0 -0
  1376. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/op/__init__.py +0 -0
  1377. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/op/conv.py +0 -0
  1378. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/op/gemm.py +0 -0
  1379. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/op/gemm_grouped.py +0 -0
  1380. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/op/op.py +0 -0
  1381. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/shape.py +0 -0
  1382. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/swizzle.py +0 -0
  1383. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/utils/__init__.py +0 -0
  1384. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/utils/check.py +0 -0
  1385. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/utils/datatypes.py +0 -0
  1386. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/utils/lazy_import.py +0 -0
  1387. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_cppgen/utils/profiler.py +0 -0
  1388. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/__init__.py +0 -0
  1389. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/conv2d_operation.py +0 -0
  1390. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/conv3d_operation.py +0 -0
  1391. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/conv3x_emitter.py +0 -0
  1392. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/emit_kernel_listing.py +0 -0
  1393. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/gemm_operation.py +0 -0
  1394. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/generator.py +0 -0
  1395. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/heuristics.py +0 -0
  1396. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/heuristics_provider.py +0 -0
  1397. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/library.py +0 -0
  1398. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/manifest.py +0 -0
  1399. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/rank_2k_operation.py +0 -0
  1400. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/rank_k_operation.py +0 -0
  1401. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/sm100_shapes.py +0 -0
  1402. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/sm100_utils.py +0 -0
  1403. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/sm90_shapes.py +0 -0
  1404. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/sm90_utils.py +0 -0
  1405. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/symm_operation.py +0 -0
  1406. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/cutlass_library/trmm_operation.py +0 -0
  1407. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/docs_src/source/conf.py +0 -0
  1408. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/pycute/__init__.py +0 -0
  1409. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/pycute/int_tuple.py +0 -0
  1410. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/pycute/layout.py +0 -0
  1411. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/pycute/swizzle.py +0 -0
  1412. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/pycute/typing.py +0 -0
  1413. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/setup_cutlass.py +0 -0
  1414. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/setup_library.py +0 -0
  1415. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/python/setup_pycute.py +0 -0
  1416. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/conv2d/conv2d_problem_sizes.py +0 -0
  1417. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/conv2d/conv2d_sm80.py +0 -0
  1418. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/conv2d/conv2d_test_utils.py +0 -0
  1419. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/conv2d/run_all_tests.py +0 -0
  1420. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/emit/pytorch.py +0 -0
  1421. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/evt/evt_compute_sm80_90.py +0 -0
  1422. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/evt/evt_layout_sm80_90.py +0 -0
  1423. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/evt/evt_load_sm80_90.py +0 -0
  1424. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/evt/evt_mixed_sm80_90.py +0 -0
  1425. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/evt/evt_store_sm80_90.py +0 -0
  1426. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/evt/run_all_tests.py +0 -0
  1427. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/evt/utils/evt_testbed.py +0 -0
  1428. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_batched.py +0 -0
  1429. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f16_sm80.py +0 -0
  1430. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f16_sm90.py +0 -0
  1431. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f32_sm80.py +0 -0
  1432. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f64_sm80.py +0 -0
  1433. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f64_sm90.py +0 -0
  1434. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_f8_sm90.py +0 -0
  1435. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_mixed_sm80.py +0 -0
  1436. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_s8_sm80.py +0 -0
  1437. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_s8_sm90.py +0 -0
  1438. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/gemm_testbed.py +0 -0
  1439. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/run_all_tests.py +0 -0
  1440. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/gemm/utils.py +0 -0
  1441. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/installation.py +0 -0
  1442. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/interface/conv2d_interface.py +0 -0
  1443. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/interface/evt_interface.py +0 -0
  1444. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/interface/gemm_interface.py +0 -0
  1445. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/cutlass/interface/utils.py +0 -0
  1446. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/pycute/run_all_tests.py +0 -0
  1447. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/pycute/test_coalesce.py +0 -0
  1448. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/pycute/test_complement.py +0 -0
  1449. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/pycute/test_composition.py +0 -0
  1450. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/pycute/test_int_tuple.py +0 -0
  1451. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/pycute/test_left_inverse.py +0 -0
  1452. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/pycute/test_right_inverse.py +0 -0
  1453. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/python/pycute/test_typing.py +0 -0
  1454. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/test/unit/gemm/device/simt_sm50.py +0 -0
  1455. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/GPU_Clock.hpp +0 -0
  1456. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/command_line.h +0 -0
  1457. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/cublas_wrappers.hpp +0 -0
  1458. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/debug.h +0 -0
  1459. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_dump.h +0 -0
  1460. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_groupnorm.h +0 -0
  1461. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_layernorm.h +0 -0
  1462. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_memory.h +0 -0
  1463. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nchw_to_nhwc.h +0 -0
  1464. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_padding.h +0 -0
  1465. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_pooling.h +0 -0
  1466. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_to_nchw.h +0 -0
  1467. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_rmsnorm.h +0 -0
  1468. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/device_utils.h +0 -0
  1469. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/distribution.h +0 -0
  1470. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/exceptions.h +0 -0
  1471. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/gett_commandline.hpp +0 -0
  1472. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/helper_cuda.hpp +0 -0
  1473. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_reorder.h +0 -0
  1474. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor.h +0 -0
  1475. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor_planar_complex.h +0 -0
  1476. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/host_uncompress.h +0 -0
  1477. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/index_sequence.h +0 -0
  1478. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/mixed_dtype_utils.hpp +0 -0
  1479. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/packed_stride.hpp +0 -0
  1480. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/print_error.hpp +0 -0
  1481. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/inner_product.h +0 -0
  1482. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/linear_to_coordinate.h +0 -0
  1483. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/convolution.h +0 -0
  1484. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm.h +0 -0
  1485. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_complex.h +0 -0
  1486. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_planar_complex.h +0 -0
  1487. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gett.hpp +0 -0
  1488. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/gemm.h +0 -0
  1489. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_elementwise.h +0 -0
  1490. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_foreach.h +0 -0
  1491. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/rank_2k_complex.h +0 -0
  1492. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_compare.h +0 -0
  1493. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_fill.h +0 -0
  1494. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_foreach.h +0 -0
  1495. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_reduce.h +0 -0
  1496. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_relu.h +0 -0
  1497. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/thread/gemm.h +0 -0
  1498. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/conv.hpp +0 -0
  1499. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/convolution.h +0 -0
  1500. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/error_metrics.h +0 -0
  1501. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm.h +0 -0
  1502. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_complex.h +0 -0
  1503. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_planar_complex.h +0 -0
  1504. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gett.hpp +0 -0
  1505. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k.h +0 -0
  1506. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k_complex.h +0 -0
  1507. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_k_complex.h +0 -0
  1508. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm.h +0 -0
  1509. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm_complex.h +0 -0
  1510. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.h +0 -0
  1511. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.hpp +0 -0
  1512. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_copy.h +0 -0
  1513. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_elementwise.h +0 -0
  1514. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.h +0 -0
  1515. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.hpp +0 -0
  1516. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_foreach.h +0 -0
  1517. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_norm.h +0 -0
  1518. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.h +0 -0
  1519. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.hpp +0 -0
  1520. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm.h +0 -0
  1521. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm_complex.h +0 -0
  1522. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/tensor_view_io.h +0 -0
  1523. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/include/cutlass/util/type_traits.h +0 -0
  1524. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/cutlass/tools/util/scripts/split_test_cmake.py +0 -0
  1525. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/async.h +0 -0
  1526. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/async_logger-inl.h +0 -0
  1527. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/async_logger.h +0 -0
  1528. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/cfg/argv.h +0 -0
  1529. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/cfg/env.h +0 -0
  1530. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/cfg/helpers-inl.h +0 -0
  1531. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/cfg/helpers.h +0 -0
  1532. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/common-inl.h +0 -0
  1533. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/common.h +0 -0
  1534. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/backtracer-inl.h +0 -0
  1535. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/backtracer.h +0 -0
  1536. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/circular_q.h +0 -0
  1537. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/console_globals.h +0 -0
  1538. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/file_helper-inl.h +0 -0
  1539. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/file_helper.h +0 -0
  1540. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/fmt_helper.h +0 -0
  1541. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/log_msg-inl.h +0 -0
  1542. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/log_msg.h +0 -0
  1543. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer-inl.h +0 -0
  1544. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/log_msg_buffer.h +0 -0
  1545. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/mpmc_blocking_q.h +0 -0
  1546. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/null_mutex.h +0 -0
  1547. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/os-inl.h +0 -0
  1548. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/os.h +0 -0
  1549. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/periodic_worker-inl.h +0 -0
  1550. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/periodic_worker.h +0 -0
  1551. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/registry-inl.h +0 -0
  1552. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/registry.h +0 -0
  1553. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/synchronous_factory.h +0 -0
  1554. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/tcp_client-windows.h +0 -0
  1555. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/tcp_client.h +0 -0
  1556. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/thread_pool-inl.h +0 -0
  1557. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/thread_pool.h +0 -0
  1558. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/udp_client-windows.h +0 -0
  1559. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/udp_client.h +0 -0
  1560. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/details/windows_include.h +0 -0
  1561. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bin_to_hex.h +0 -0
  1562. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/args.h +0 -0
  1563. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/chrono.h +0 -0
  1564. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/color.h +0 -0
  1565. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/compile.h +0 -0
  1566. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/core.h +0 -0
  1567. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/fmt.license.rst +0 -0
  1568. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/format-inl.h +0 -0
  1569. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/format.h +0 -0
  1570. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/locale.h +0 -0
  1571. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/os.h +0 -0
  1572. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/ostream.h +0 -0
  1573. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/printf.h +0 -0
  1574. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/ranges.h +0 -0
  1575. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/std.h +0 -0
  1576. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/bundled/xchar.h +0 -0
  1577. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/chrono.h +0 -0
  1578. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/compile.h +0 -0
  1579. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/fmt.h +0 -0
  1580. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/ostr.h +0 -0
  1581. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/ranges.h +0 -0
  1582. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/std.h +0 -0
  1583. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fmt/xchar.h +0 -0
  1584. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/formatter.h +0 -0
  1585. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/fwd.h +0 -0
  1586. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/logger-inl.h +0 -0
  1587. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/logger.h +0 -0
  1588. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/mdc.h +0 -0
  1589. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/pattern_formatter-inl.h +0 -0
  1590. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/pattern_formatter.h +0 -0
  1591. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/android_sink.h +0 -0
  1592. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink-inl.h +0 -0
  1593. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/ansicolor_sink.h +0 -0
  1594. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/base_sink-inl.h +0 -0
  1595. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/base_sink.h +0 -0
  1596. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink-inl.h +0 -0
  1597. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/basic_file_sink.h +0 -0
  1598. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/callback_sink.h +0 -0
  1599. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/daily_file_sink.h +0 -0
  1600. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/dist_sink.h +0 -0
  1601. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/dup_filter_sink.h +0 -0
  1602. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/hourly_file_sink.h +0 -0
  1603. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/kafka_sink.h +0 -0
  1604. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/mongo_sink.h +0 -0
  1605. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/msvc_sink.h +0 -0
  1606. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/null_sink.h +0 -0
  1607. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/ostream_sink.h +0 -0
  1608. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/qt_sinks.h +0 -0
  1609. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/ringbuffer_sink.h +0 -0
  1610. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink-inl.h +0 -0
  1611. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/rotating_file_sink.h +0 -0
  1612. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/sink-inl.h +0 -0
  1613. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/sink.h +0 -0
  1614. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks-inl.h +0 -0
  1615. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/stdout_color_sinks.h +0 -0
  1616. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks-inl.h +0 -0
  1617. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/stdout_sinks.h +0 -0
  1618. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/syslog_sink.h +0 -0
  1619. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/systemd_sink.h +0 -0
  1620. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/tcp_sink.h +0 -0
  1621. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/udp_sink.h +0 -0
  1622. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/win_eventlog_sink.h +0 -0
  1623. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink-inl.h +0 -0
  1624. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/sinks/wincolor_sink.h +0 -0
  1625. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/spdlog-inl.h +0 -0
  1626. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/spdlog.h +0 -0
  1627. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/stopwatch.h +0 -0
  1628. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/tweakme.h +0 -0
  1629. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/include/spdlog/version.h +0 -0
  1630. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/3rdparty/spdlog/scripts/extract_version.py +0 -0
  1631. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/LICENSE +0 -0
  1632. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/build_backend.py +0 -0
  1633. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/build_utils.py +0 -0
  1634. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_attention_customize_config.jinja +0 -0
  1635. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_attention_jit_binding.cu +0 -0
  1636. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_attention_paged_kernel_inst.jinja +0 -0
  1637. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_decode_customize_config.jinja +0 -0
  1638. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_decode_jit_binding.cu +0 -0
  1639. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_decode_kernel_inst.jinja +0 -0
  1640. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_decode_mla_binding.cu +0 -0
  1641. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_decode_mla_config.jinja +0 -0
  1642. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_mla_binding.cu +0 -0
  1643. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_mla_config.jinja +0 -0
  1644. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_mla_sm90_binding.cu +0 -0
  1645. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_pod_customize_config.jinja +0 -0
  1646. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_pod_jit_binding.cu +0 -0
  1647. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_pod_kernel_inst.jinja +0 -0
  1648. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_prefill_customize_config.jinja +0 -0
  1649. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_prefill_fp8_paged_sm90_kernel_inst.jinja +0 -0
  1650. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_prefill_jit_binding.cu +0 -0
  1651. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_prefill_paged_kernel_inst.jinja +0 -0
  1652. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_prefill_paged_sm90_kernel_inst.jinja +0 -0
  1653. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_prefill_ragged_kernel_inst.jinja +0 -0
  1654. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_prefill_ragged_sm90_kernel_inst.jinja +0 -0
  1655. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/batch_prefill_sm90_jit_binding.cu +0 -0
  1656. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/cudnn_sdpa_kernel_launcher.cu +0 -0
  1657. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/cudnn_sdpa_utils.h +0 -0
  1658. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/dsv3_router_gemm.cu +0 -0
  1659. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/flashinfer_cascade_binding.cu +0 -0
  1660. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/flashinfer_gemm_binding.cu +0 -0
  1661. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/flashinfer_gemm_sm90_binding.cu +0 -0
  1662. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/flashinfer_mla_binding.cu +0 -0
  1663. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/flashinfer_norm_binding.cu +0 -0
  1664. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/flashinfer_quantization_binding.cu +0 -0
  1665. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/flashinfer_rope_binding.cu +0 -0
  1666. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fp4_gemm_cutlass.cu +0 -0
  1667. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fp4_gemm_cutlass.jinja +0 -0
  1668. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fp4_gemm_cutlass_sm120.cu +0 -0
  1669. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fp4_gemm_cutlass_sm120.jinja +0 -0
  1670. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fp8_gemm_cutlass.cu +0 -0
  1671. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fp8_gemm_cutlass.jinja +0 -0
  1672. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_instantiation.cu +0 -0
  1673. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fused_moe/cutlass_backend/cutlass_fused_moe_kernels.cuh +0 -0
  1674. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fused_moe/moeTopKFuncs.cuh +0 -0
  1675. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/fused_moe/noAuxTcKernels.cu +0 -0
  1676. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/gemm_groupwise_sm100_kernel_inst.jinja +0 -0
  1677. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/gemm_groupwise_sm120_kernel_inst.jinja +0 -0
  1678. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/gemm_sm100_binding.cu +0 -0
  1679. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/gemm_sm120_binding.cu +0 -0
  1680. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/group_gemm_fp8_groupwise_sm100_kernel_inst.jinja +0 -0
  1681. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/group_gemm_fp8_groupwise_sm120_kernel_inst.jinja +0 -0
  1682. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/group_gemm_mxfp4_groupwise_sm100_kernel_inst.jinja +0 -0
  1683. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/group_gemm_sm100_binding.cu +0 -0
  1684. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/group_gemm_sm120_binding.cu +0 -0
  1685. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/group_gemm_sm90_kernel_inst.jinja +0 -0
  1686. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/logging.cc +0 -0
  1687. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/cpp/common/logger.cpp +0 -0
  1688. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/cpp/common/memoryUtils.cu +0 -0
  1689. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/cpp/common/stringUtils.cpp +0 -0
  1690. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/cpp/common/tllmException.cpp +0 -0
  1691. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/NvInferRuntime.h +0 -0
  1692. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/assert.h +0 -0
  1693. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/cudaBf16Wrapper.h +0 -0
  1694. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/cudaFp8Utils.h +0 -0
  1695. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/cudaUtils.h +0 -0
  1696. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/dataType.h +0 -0
  1697. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/logger.h +0 -0
  1698. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/quantization.h +0 -0
  1699. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/stringUtils.h +0 -0
  1700. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/include/tensorrt_llm/common/tllmException.h +0 -0
  1701. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/common/cublasMMWrapper.h +0 -0
  1702. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/common/cudaBf16Fallbacks.cuh +0 -0
  1703. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/common/cudaDriverWrapper.h +0 -0
  1704. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/common/cudaTypeUtils.cuh +0 -0
  1705. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/common/memoryUtils.h +0 -0
  1706. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/common/quantTypeUtils.cuh +0 -0
  1707. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/common/reduceKernelUtils.cuh +0 -0
  1708. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/common/workspace.h +0 -0
  1709. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_red_global.hpp +0 -0
  1710. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_sm90_multimem.hpp +0 -0
  1711. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/copy_traits_sm90_multimem.hpp +0 -0
  1712. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/grid_dependency_control.h +0 -0
  1713. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/arch/mma.h +0 -0
  1714. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/communication/collective/sm90_allreduce_nvls_warpspecialized.hpp +0 -0
  1715. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/compute_occupancy.h +0 -0
  1716. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/detail/collective/mixed_input_utils.hpp +0 -0
  1717. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/collective/epilogue_moe_finalize.hpp +0 -0
  1718. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/fusion/sm90_visitor_allreduce_tma_warpspecialized.hpp +0 -0
  1719. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/fusion/sm90_visitor_scatter.hpp +0 -0
  1720. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue/thread/fused_activations.h +0 -0
  1721. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/epilogue_helpers.h +0 -0
  1722. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_gated.inl +0 -0
  1723. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_interleaved.inl +0 -0
  1724. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/builders/sm90_gmma_builder_mixed_input.inl +0 -0
  1725. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_gated.hpp +0 -0
  1726. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_interleaved.hpp +0 -0
  1727. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_builder_mixed_input.hpp +0 -0
  1728. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_array_mixed_input.hpp +0 -0
  1729. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_gated.hpp +0 -0
  1730. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/collective_mma_interleaved.hpp +0 -0
  1731. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_array_tma_gmma_rs_warpspecialized_mixed_input_.hpp +0 -0
  1732. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_gated_tma_gmma_ss_warpspecialized.hpp +0 -0
  1733. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_gated_tma_gmma_ss_warpspecialized_fp8.hpp +0 -0
  1734. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/collective/sm90_mma_interleaved_tma_gmma_rs_warpspecialized_mixed_input.hpp +0 -0
  1735. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/default_fpA_intB_traits.h +0 -0
  1736. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel.cuh +0 -0
  1737. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_routine.cuh +0 -0
  1738. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/fused_moe_kernel_traits.cuh +0 -0
  1739. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_moe_problem_visitor.h +0 -0
  1740. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/gemm_universal_allreduce.hpp +0 -0
  1741. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/mixed_gemm_B_layout.h +0 -0
  1742. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cute_util.cuh +0 -0
  1743. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_cutlass_kernel.h +0 -0
  1744. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/moe_problem_visitor.h +0 -0
  1745. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized.hpp +0 -0
  1746. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/kernel/sm90_gemm_allreduce_tma_warpspecialized_pingpong.hpp +0 -0
  1747. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma.h +0 -0
  1748. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_multistage.h +0 -0
  1749. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_dq_mma_pipelined.h +0 -0
  1750. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma.h +0 -0
  1751. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/default_mma_bf16.h +0 -0
  1752. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_base.h +0 -0
  1753. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage.h +0 -0
  1754. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_finegrained.h +0 -0
  1755. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_multistage_percol.h +0 -0
  1756. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined.h +0 -0
  1757. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_finegrained.h +0 -0
  1758. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/threadblock/dq_mma_pipelined_percol.h +0 -0
  1759. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/default_mma_tensor_op.h +0 -0
  1760. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_compute_B_with_f16.h +0 -0
  1761. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm/warp/mma_tensorop_dequantizer.h +0 -0
  1762. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/gemm_configs.h +0 -0
  1763. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/interleaved_numeric_conversion.h +0 -0
  1764. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/system_barrier.h +0 -0
  1765. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/tile_interleaved_layout.h +0 -0
  1766. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/transform/threadblock/fine_grained_scale_zero_iterator.h +0 -0
  1767. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/util/gather_tensor.hpp +0 -0
  1768. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/cutlass_extensions/include/cutlass_extensions/weight_only_quant_op.h +0 -0
  1769. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/deep_gemm/fp8_gemm.cuh +0 -0
  1770. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/deep_gemm/fp8_gemm_impl.cuh +0 -0
  1771. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/deep_gemm/mma_utils.cuh +0 -0
  1772. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/deep_gemm/nvrtc_cutlass.cuh +0 -0
  1773. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/deep_gemm/nvrtc_std.cuh +0 -0
  1774. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/deep_gemm/scheduler.cuh +0 -0
  1775. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/deep_gemm/tma_utils.cuh +0 -0
  1776. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/deep_gemm/utils.cuh +0 -0
  1777. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_heuristic.h +0 -0
  1778. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/cutlass_type_conversion.h +0 -0
  1779. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/ada_blockwise_gemm/sm89_fp8_gemm_1d1d.cuh +0 -0
  1780. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/ada_blockwise_gemm/sm89_utils.cuh +0 -0
  1781. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm.cu +0 -0
  1782. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_gemm.h +0 -0
  1783. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_mma_utils.cuh +0 -0
  1784. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fp8_blockscale_gemm/fp8_blockscale_tma_utils.cuh +0 -0
  1785. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_fg_scalebias.cu +0 -0
  1786. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_fg_scaleonly.cu +0 -0
  1787. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int4_gemm_per_col.cu +0 -0
  1788. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_fg_scalebias.cu +0 -0
  1789. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_fg_scaleonly.cu +0 -0
  1790. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/bf16_int8_gemm_per_col.cu +0 -0
  1791. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scalebias_bf16_out_bf16.cu +0 -0
  1792. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scalebias_f16_out_f16.cu +0 -0
  1793. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scaleonly_bf16_out_bf16.cu +0 -0
  1794. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_fg_scaleonly_f16_out_f16.cu +0 -0
  1795. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/e4m3_int4_gemm_per_col_f16_out_f16.cu +0 -0
  1796. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_fg_scalebias.cu +0 -0
  1797. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_fg_scaleonly.cu +0 -0
  1798. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int4_gemm_per_col.cu +0 -0
  1799. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_fg_scalebias.cu +0 -0
  1800. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_fg_scaleonly.cu +0 -0
  1801. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fp16_int8_gemm_per_col.cu +0 -0
  1802. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm.h +0 -0
  1803. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm_template.h +0 -0
  1804. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/fpA_intB_gemm_template_sm90.h +0 -0
  1805. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/launchers/fpA_intB_launcher_sm90.h +0 -0
  1806. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/fpA_intB_gemm/launchers/fpA_intB_launcher_sm90.inl +0 -0
  1807. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/common.h +0 -0
  1808. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/cutlass_kernel_selector.h +0 -0
  1809. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_gemm_kernels.h +0 -0
  1810. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_kernels.h +0 -0
  1811. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/include/moe_util_kernels.h +0 -0
  1812. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.h +0 -0
  1813. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/fused_moe_gemm_launcher_sm80.inl +0 -0
  1814. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.h +0 -0
  1815. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_launcher.inl +0 -0
  1816. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.h +0 -0
  1817. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/launchers/moe_gemm_tma_ws_mixed_input_launcher.inl +0 -0
  1818. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_bf16.cu +0 -0
  1819. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_fp4.cu +0 -0
  1820. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_fp8.cu +0 -0
  1821. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint4.cu +0 -0
  1822. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_bf16_uint8.cu +0 -0
  1823. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_fp16.cu +0 -0
  1824. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_fp4.cu +0 -0
  1825. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint4.cu +0 -0
  1826. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp16_uint8.cu +0 -0
  1827. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp32_fp32.cu +0 -0
  1828. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp4_fp4.cu +0 -0
  1829. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp4.cu +0 -0
  1830. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_fp8.cu +0 -0
  1831. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_kernels_fp8_uint4.cu +0 -0
  1832. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws.h +0 -0
  1833. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_template_dispatch_tma_ws_mixed_dtype.h +0 -0
  1834. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_gemm_tma_warp_specialized_input.cu +0 -0
  1835. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/cutlass_kernels/moe_gemm/moe_tma_warp_specialized_traits.h +0 -0
  1836. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.cu +0 -0
  1837. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/delayStream.h +0 -0
  1838. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.cpp +0 -0
  1839. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/lora/lora.h +0 -0
  1840. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.cu +0 -0
  1841. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/preQuantScaleKernel.h +0 -0
  1842. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/kernels/quantization.cuh +0 -0
  1843. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.cpp +0 -0
  1844. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/thop/fp4Quantize.h +0 -0
  1845. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.cpp +0 -0
  1846. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/thop/fp8Quantize.h +0 -0
  1847. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nv_internal/tensorrt_llm/thop/utils.h +0 -0
  1848. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/nvshmem_binding.cu +0 -0
  1849. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/pod_customize_config.jinja +0 -0
  1850. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/pod_jit_binding.cu +0 -0
  1851. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/pod_kernel_inst.jinja +0 -0
  1852. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/quantization.cu +0 -0
  1853. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/runtime_utils.h +0 -0
  1854. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_decode_customize_config.jinja +0 -0
  1855. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_decode_jit_binding.cu +0 -0
  1856. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_decode_kernel_inst.jinja +0 -0
  1857. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_prefill_customize_config.jinja +0 -0
  1858. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_prefill_fp8_sm90_kernel_inst.jinja +0 -0
  1859. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_prefill_jit_binding.cu +0 -0
  1860. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_prefill_kernel_inst.jinja +0 -0
  1861. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_prefill_sm90_customize_config.jinja +0 -0
  1862. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_prefill_sm90_jit_binding.cu +0 -0
  1863. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/single_prefill_sm90_kernel_inst.jinja +0 -0
  1864. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/tgv_gemm.cu +0 -0
  1865. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/tgv_gemm.jinja +0 -0
  1866. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/trtllm_alltoall.cu +0 -0
  1867. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/trtllm_alltoall_prepare.cu +0 -0
  1868. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/trtllm_batched_gemm_runner.cu +0 -0
  1869. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/trtllm_fused_moe_routing_deepseek.cu +0 -0
  1870. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/trtllm_fused_moe_routing_llama4.cu +0 -0
  1871. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/trtllm_fused_moe_routing_renormalize.cu +0 -0
  1872. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/trtllm_fused_moe_runner.cu +0 -0
  1873. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/trtllm_gemm_runner.cu +0 -0
  1874. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/trtllm_low_latency_gemm_runner.cu +0 -0
  1875. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/barriers.cuh +0 -0
  1876. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/cuda_hint.cuh +0 -0
  1877. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/defines.h +0 -0
  1878. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/gmma.cuh +0 -0
  1879. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/gmma_impl.cuh +0 -0
  1880. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/hostUtils.h +0 -0
  1881. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/ldgsts.cuh +0 -0
  1882. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/mha.h +0 -0
  1883. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/mhaUtils.cuh +0 -0
  1884. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/mha_components.cuh +0 -0
  1885. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/mha_stdheaders.cuh +0 -0
  1886. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/mla_sm120.cuh +0 -0
  1887. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/mma.cuh +0 -0
  1888. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/platform.h +0 -0
  1889. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/specDec.h +0 -0
  1890. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/tensorMap.cpp +0 -0
  1891. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/tensorMap.h +0 -0
  1892. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/tma.h +0 -0
  1893. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/utils.cuh +0 -0
  1894. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/csrc/xqa/utils.h +0 -0
  1895. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/__main__.py +0 -0
  1896. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/comm/cuda_ipc.py +0 -0
  1897. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/comm/dlpack_utils.py +0 -0
  1898. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/comm/mapping.py +0 -0
  1899. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/comm/nvshmem.py +0 -0
  1900. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/comm/nvshmem_allreduce.py +0 -0
  1901. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/comm/trtllm_alltoall.py +0 -0
  1902. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/comm/vllm_ar.py +0 -0
  1903. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/compilation_context.py +0 -0
  1904. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/cuda_utils.py +0 -0
  1905. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/cudnn/__init__.py +0 -0
  1906. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/cudnn/utils.py +0 -0
  1907. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/cute_dsl/utils.py +0 -0
  1908. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/fused_moe/utils.py +0 -0
  1909. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/green_ctx.py +0 -0
  1910. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/activation.py +0 -0
  1911. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/attention/utils.py +0 -0
  1912. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/cascade.py +0 -0
  1913. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/cpp_ext.py +0 -0
  1914. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/cubin_loader.py +0 -0
  1915. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/dsv3_optimizations.py +0 -0
  1916. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/env.py +0 -0
  1917. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/fp4_quantization.py +0 -0
  1918. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/fp8_quantization.py +0 -0
  1919. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/gemm/core.py +0 -0
  1920. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/gemm/cutlass/__init__.py +0 -0
  1921. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/gemm/cutlass/cutlass_library.py +0 -0
  1922. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/gemm/cutlass/generate_kernels.py +0 -0
  1923. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/gemm/deepgemm.py +0 -0
  1924. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/mla.py +0 -0
  1925. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/norm.py +0 -0
  1926. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/page.py +0 -0
  1927. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/quantization.py +0 -0
  1928. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/rope.py +0 -0
  1929. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/sampling.py +0 -0
  1930. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/spdlog.py +0 -0
  1931. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/tllm_utils.py +0 -0
  1932. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/jit/utils.py +0 -0
  1933. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/logits_processor/__init__.py +0 -0
  1934. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/logits_processor/compiler.py +0 -0
  1935. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/logits_processor/fusion_rules.py +0 -0
  1936. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/logits_processor/legalization.py +0 -0
  1937. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/logits_processor/op.py +0 -0
  1938. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/logits_processor/pipeline.py +0 -0
  1939. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/logits_processor/processors.py +0 -0
  1940. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/logits_processor/types.py +0 -0
  1941. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/logits_processor/validators.py +0 -0
  1942. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/profiler/__init__.py +0 -0
  1943. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/py.typed +0 -0
  1944. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/testing/__init__.py +0 -0
  1945. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/tllm_utils.py +0 -0
  1946. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/__init__.py +0 -0
  1947. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/activation.py +0 -0
  1948. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/cascade.py +0 -0
  1949. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/gemm.py +0 -0
  1950. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/kernels/__init__.py +0 -0
  1951. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/kernels/activation.py +0 -0
  1952. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/kernels/norm.py +0 -0
  1953. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/kernels/quant.py +0 -0
  1954. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/kernels/sm_constraint_gemm.py +0 -0
  1955. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/norm.py +0 -0
  1956. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/page.py +0 -0
  1957. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/sm_constraint_gemm.py +0 -0
  1958. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/triton/utils.py +0 -0
  1959. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/trtllm_low_latency_gemm.py +0 -0
  1960. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/tuning_configs/v0_1_trtllm_fused_moe_NVIDIA_B200.py +0 -0
  1961. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/tuning_configs/v0_1_trtllm_fused_moe_NVIDIA_GB200.py +0 -0
  1962. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer/version.py +0 -0
  1963. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer_python.egg-info/dependency_links.txt +0 -0
  1964. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer_python.egg-info/entry_points.txt +0 -0
  1965. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/flashinfer_python.egg-info/top_level.txt +0 -0
  1966. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/activation.cuh +0 -0
  1967. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/allocator.h +0 -0
  1968. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/arch_condition.h +0 -0
  1969. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/batch_pod.cuh +0 -0
  1970. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/collective/fmha_common.hpp +0 -0
  1971. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/collective/fmha_fusion.hpp +0 -0
  1972. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_fwd_epilogue_tma_warpspecialized.hpp +0 -0
  1973. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_epilogue_warpspecialized.hpp +0 -0
  1974. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_gen_mainloop_warpspecialized.hpp +0 -0
  1975. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_cpasync_warpspecialized.hpp +0 -0
  1976. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/collective/sm100_fmha_load_tma_warpspecialized.hpp +0 -0
  1977. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/common/pow_2.hpp +0 -0
  1978. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/device/fmha.hpp +0 -0
  1979. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/device/sm100_mla.hpp +0 -0
  1980. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/kernel/fmha_options.hpp +0 -0
  1981. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/kernel/fmha_tile_scheduler.hpp +0 -0
  1982. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/kernel/gather_tensor.hpp +0 -0
  1983. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_gen_kernel_warpspecialized.hpp +0 -0
  1984. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_reduction.hpp +0 -0
  1985. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/kernel/sm100_fmha_mla_tma_warpspecialized.hpp +0 -0
  1986. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/kernel/sm100_mla_tile_scheduler.hpp +0 -0
  1987. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/blackwell/plan.cuh +0 -0
  1988. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/cascade.cuh +0 -0
  1989. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/cutlass_mla.cuh +0 -0
  1990. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/decode.cuh +0 -0
  1991. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/decode_mla_cute_sm80.cuh +0 -0
  1992. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/default_decode_params.cuh +0 -0
  1993. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/default_prefill_params.cuh +0 -0
  1994. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/heap.h +0 -0
  1995. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/attention_updater.cuh +0 -0
  1996. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/mainloop.cuh +0 -0
  1997. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/named_barrier.cuh +0 -0
  1998. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/quantization/epilogue.cuh +0 -0
  1999. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/quantization/kernel_traits.cuh +0 -0
  2000. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/quantization/mainloop_load.cuh +0 -0
  2001. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/quantization/mainloop_mma.cuh +0 -0
  2002. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/tile_scheduler.cuh +0 -0
  2003. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/utils.cuh +0 -0
  2004. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper/variant_helper.cuh +0 -0
  2005. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/hopper.cuh +0 -0
  2006. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/mask.cuh +0 -0
  2007. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/mla.cuh +0 -0
  2008. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/mla_hopper.cuh +0 -0
  2009. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/mla_params.cuh +0 -0
  2010. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/persistent.cuh +0 -0
  2011. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/persistent_template.cuh +0 -0
  2012. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/pod.cuh +0 -0
  2013. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/prefill.cuh +0 -0
  2014. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/scheduler.cuh +0 -0
  2015. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/state.cuh +0 -0
  2016. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention/variants.cuh +0 -0
  2017. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/attention_impl.cuh +0 -0
  2018. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/comm/trtllm_allreduce.cuh +0 -0
  2019. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/comm/trtllm_allreduce_fusion.cuh +0 -0
  2020. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/comm/trtllm_alltoall.cuh +0 -0
  2021. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/comm/trtllm_alltoall_prepare.cuh +0 -0
  2022. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/comm/trtllm_moe_allreduce_fusion.cuh +0 -0
  2023. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/comm/vllm_custom_all_reduce.cuh +0 -0
  2024. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/cp_async.cuh +0 -0
  2025. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/cubin_loader.h +0 -0
  2026. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/cutlass_utils.cuh +0 -0
  2027. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/exception.h +0 -0
  2028. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/fastdiv.cuh +0 -0
  2029. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/fp16.h +0 -0
  2030. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/fp4_layout.cuh +0 -0
  2031. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/frag_layout_swizzle.cuh +0 -0
  2032. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/bmm_fp8.cuh +0 -0
  2033. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/cutlass_gemm_configs.h +0 -0
  2034. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/dsv3_router_gemm.cuh +0 -0
  2035. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/fp4_gemm_cutlass.h +0 -0
  2036. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/fp4_gemm_cutlass_template.h +0 -0
  2037. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/fp4_gemm_cutlass_template_sm120.h +0 -0
  2038. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/fp4_gemm_template_sm100.h +0 -0
  2039. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/fp4_gemm_template_sm120.h +0 -0
  2040. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/fp8_gemm_cutlass.h +0 -0
  2041. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/fp8_gemm_cutlass_template.h +0 -0
  2042. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/fp8_gemm_template_sm100.h +0 -0
  2043. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/gemm_groupwise_sm100.cuh +0 -0
  2044. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/gemm_groupwise_sm120.cuh +0 -0
  2045. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/group_gemm.cuh +0 -0
  2046. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/group_gemm_fp8_groupwise_sm100.cuh +0 -0
  2047. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/group_gemm_fp8_groupwise_sm120.cuh +0 -0
  2048. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/group_gemm_lora.cuh +0 -0
  2049. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/group_gemm_mxfp4_groupwise_sm100.cuh +0 -0
  2050. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/group_gemm_sm90.cuh +0 -0
  2051. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/group_gemv.cuh +0 -0
  2052. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/tgv_gemm.cuh +0 -0
  2053. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/tgv_gemm_configs.h +0 -0
  2054. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/gemm/tgv_gemm_template.h +0 -0
  2055. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/layout.cuh +0 -0
  2056. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/logging.h +0 -0
  2057. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/math.cuh +0 -0
  2058. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/mma.cuh +0 -0
  2059. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/norm.cuh +0 -0
  2060. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/permuted_smem.cuh +0 -0
  2061. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/profiler.cuh +0 -0
  2062. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/quantization.cuh +0 -0
  2063. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/batched_gemm/KernelRunner.h +0 -0
  2064. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/BatchedGemmEnums.h +0 -0
  2065. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/KernelParamsDecl.h +0 -0
  2066. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CommonUtils.h +0 -0
  2067. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/CudaKernelLauncher.h +0 -0
  2068. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/MmaDecl.h +0 -0
  2069. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/batched_gemm/trtllmGen_bmm_export/trtllm/gen/SfLayoutDecl.h +0 -0
  2070. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/common/cudaBf16Fallbacks.cuh +0 -0
  2071. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/common/cudaBf16Wrapper.h +0 -0
  2072. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/common/cudaFp8Utils.h +0 -0
  2073. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/common/cudaTypeUtils.cuh +0 -0
  2074. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/common/cudaUtils.h +0 -0
  2075. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/common/reduceKernelUtils.cuh +0 -0
  2076. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/common.h +0 -0
  2077. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fmha/decoder_impl_common.h +0 -0
  2078. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fmha/decoder_params.h +0 -0
  2079. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fmha/fmhaReduction.h +0 -0
  2080. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fmha/fmhaRunner.cuh +0 -0
  2081. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fmha/kernelUtils.h +0 -0
  2082. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fmha/lse.cuh +0 -0
  2083. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fused_moe/DevKernel.h +0 -0
  2084. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fused_moe/IntFastDiv.h +0 -0
  2085. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fused_moe/RoutingKernel.cuh +0 -0
  2086. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fused_moe/RoutingKernel.h +0 -0
  2087. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fused_moe/RoutingKernelTopK.cuh +0 -0
  2088. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fused_moe/noAuxTcKernels.h +0 -0
  2089. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/fused_moe/runner.h +0 -0
  2090. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/Enums.h +0 -0
  2091. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/GemmInterface.h +0 -0
  2092. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/GemmOptions.h +0 -0
  2093. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelParams.h +0 -0
  2094. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelParamsDecl.h +0 -0
  2095. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/KernelTraits.h +0 -0
  2096. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/TmaDescriptor.h +0 -0
  2097. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/CommonUtils.h +0 -0
  2098. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/CudaKernelLauncher.h +0 -0
  2099. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/DtypeDecl.h +0 -0
  2100. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/MmaDecl.h +0 -0
  2101. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/trtllm/gemm/trtllmGen_gemm_export/trtllm/gen/SfLayoutDecl.h +0 -0
  2102. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/include/flashinfer/vec_dtypes.cuh +0 -0
  2103. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/setup.cfg +0 -0
  2104. {flashinfer_python-0.5.3 → flashinfer_python-0.6.0rc1}/tests/test_artifacts.py +0 -0
@@ -0,0 +1,265 @@
1
+ Metadata-Version: 2.4
2
+ Name: flashinfer-python
3
+ Version: 0.6.0rc1
4
+ Summary: FlashInfer: Kernel Library for LLM Serving
5
+ Author: FlashInfer team
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/flashinfer-ai/flashinfer
8
+ Requires-Python: <4.0,>=3.10
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: apache-tvm-ffi<0.2,>=0.1.6
12
+ Requires-Dist: click
13
+ Requires-Dist: einops
14
+ Requires-Dist: ninja
15
+ Requires-Dist: numpy
16
+ Requires-Dist: nvidia-cudnn-frontend>=1.13.0
17
+ Requires-Dist: nvidia-cutlass-dsl>=4.3.2
18
+ Requires-Dist: nvidia-ml-py
19
+ Requires-Dist: packaging>=24.2
20
+ Requires-Dist: requests
21
+ Requires-Dist: tabulate
22
+ Requires-Dist: torch
23
+ Requires-Dist: tqdm
24
+ Dynamic: license-file
25
+
26
+ <p align="center">
27
+ <picture>
28
+ <source media="(prefers-color-scheme: dark)" srcset="https://github.com/flashinfer-ai/web-data/blob/main/logo/FlashInfer-black-background.png?raw=true">
29
+ <img alt="FlashInfer" src="https://github.com/flashinfer-ai/web-data/blob/main/logo/FlashInfer-white-background.png?raw=true" width=55%>
30
+ </picture>
31
+ </p>
32
+ <h1 align="center">
33
+ Kernel Library for LLM Serving
34
+ </h1>
35
+
36
+ <p align="center">
37
+ | <a href="https://flashinfer.ai"><b>Blog</b></a> | <a href="https://docs.flashinfer.ai"><b>Documentation</b></a> | <a href="https://join.slack.com/t/flashinfer/shared_invite/zt-379wct3hc-D5jR~1ZKQcU00WHsXhgvtA"><b>Slack</b></a> | <a href="https://github.com/orgs/flashinfer-ai/discussions"><b>Discussion Forum</b></a> |
38
+ </p>
39
+
40
+ [![Build Status](https://ci.tlcpack.ai/job/flashinfer-ci/job/main/badge/icon)](https://ci.tlcpack.ai/job/flashinfer-ci/job/main/)
41
+ [![Documentation](https://github.com/flashinfer-ai/flashinfer/actions/workflows/build-doc.yml/badge.svg)](https://github.com/flashinfer-ai/flashinfer/actions/workflows/build-doc.yml)
42
+
43
+ FlashInfer is a library and kernel generator for Large Language Models that provides high-performance implementation of LLM GPU kernels such as FlashAttention, SparseAttention, PageAttention, Sampling, and more. FlashInfer focuses on LLM serving and inference, and delivers state-of-the-art performance across diverse scenarios.
44
+
45
+ Check our [v0.2 release blog](https://flashinfer.ai/2024/12/16/flashinfer-v02-release.html) for new features!
46
+
47
+ The core features of FlashInfer include:
48
+
49
+ 1. **Efficient Sparse/Dense Attention Kernels**: Efficient single/batch attention for sparse(paged)/dense KV-storage on CUDA Cores and Tensor Cores (both FA2 & FA3) templates. The vector-sparse attention can achieve 90% of the bandwidth of dense kernels with same problem size.
50
+ 2. **Load-Balanced Scheduling**: FlashInfer decouples `plan`/`run` stage of attention computation where we schedule the computation of variable-length inputs in `plan` stage to alleviate load-imbalance issue.
51
+ 3. **Memory Efficiency**: FlashInfer offers [Cascade Attention](https://docs.flashinfer.ai/api/cascade.html#flashinfer.cascade.MultiLevelCascadeAttentionWrapper) for hierarchical KV-Cache, and implements Head-Query fusion for accelerating Grouped-Query Attention, and efficient kernels for low-precision attention and fused-RoPE attention for compressed KV-Cache.
52
+ 4. **Customizable Attention**: Bring your own attention variants through JIT-compilation.
53
+ 5. **CUDAGraph and torch.compile Compatibility**: FlashInfer kernels can be captured by CUDAGraphs and torch.compile for low-latency inference.
54
+ 6. **Efficient LLM-specific Operators**: High-Performance [fused kernel for Top-P, Top-K/Min-P sampling](https://docs.flashinfer.ai/api/sampling.html) without the need to sorting.
55
+
56
+ FlashInfer supports PyTorch, TVM and C++ (header-only) APIs, and can be easily integrated into existing projects.
57
+
58
+ ## News
59
+
60
+ - [Mar 10, 2025] [Blog Post](https://flashinfer.ai/2025/03/10/sampling.html) Sorting-Free GPU Kernels for LLM Sampling, which explains the design of sampling kernels in FlashInfer.
61
+ - [Mar 1, 2025] Checkout flashinfer's [intra-kernel profiler](https://github.com/flashinfer-ai/flashinfer/tree/main/profiler) for visualizing the timeline of each threadblock in GPU kernels.
62
+ - [Dec 16, 2024] [Blog Post](https://flashinfer.ai/2024/12/16/flashinfer-v02-release.html) FlashInfer 0.2 - Efficient and Customizable Kernels for LLM Inference Serving
63
+ - [Sept 2024] We've launched a [Slack](https://join.slack.com/t/flashinfer/shared_invite/zt-2r93kj2aq-wZnC2n_Z2~mf73N5qnVGGA) workspace for Flashinfer users and developers. Join us for timely support, discussions, updates and knowledge sharing!
64
+ - [Jan 31, 2024] [Blog Post](https://flashinfer.ai/2024/01/08/cascade-inference.html) Cascade Inference: Memory-Efficient Shared Prefix Batch Decoding
65
+ - [Jan 31, 2024] [Blog Post](https://flashinfer.ai/2024/01/03/introduce-flashinfer.html) Accelerating Self-Attentions for LLM Serving with FlashInfer
66
+
67
+ ## Getting Started
68
+
69
+ Using our PyTorch API is the easiest way to get started:
70
+
71
+ ### Install from PyPI
72
+
73
+ FlashInfer is available as a Python package for Linux. Install the core package with:
74
+
75
+ ```bash
76
+ pip install flashinfer-python
77
+ ```
78
+
79
+ **Package Options:**
80
+
81
+ - **flashinfer-python**: Core package that compiles/downloads kernels on first use
82
+ - **flashinfer-cubin**: Pre-compiled kernel binaries for all supported GPU architectures
83
+ - **flashinfer-jit-cache**: Pre-built kernel cache for specific CUDA versions
84
+
85
+ **For faster initialization and offline usage**, install the optional packages to have most kernels pre-compiled:
86
+
87
+ ```bash
88
+ pip install flashinfer-python flashinfer-cubin
89
+ # JIT cache package (replace cu129 with your CUDA version: cu128, cu129, or cu130)
90
+ pip install flashinfer-jit-cache --index-url https://flashinfer.ai/whl/cu129
91
+ ```
92
+
93
+ This eliminates compilation and downloading overhead at runtime.
94
+
95
+ ### Install from Source
96
+
97
+ Build the core package from source:
98
+
99
+ ```bash
100
+ git clone https://github.com/flashinfer-ai/flashinfer.git --recursive
101
+ cd flashinfer
102
+ python -m pip install -v .
103
+ ```
104
+
105
+ **For development**, install in editable mode:
106
+
107
+ ```bash
108
+ python -m pip install --no-build-isolation -e . -v
109
+ ```
110
+
111
+ **Build optional packages:**
112
+
113
+ `flashinfer-cubin`:
114
+
115
+ ```bash
116
+ cd flashinfer-cubin
117
+ python -m build --no-isolation --wheel
118
+ python -m pip install dist/*.whl
119
+ ```
120
+
121
+ `flashinfer-jit-cache` (customize `FLASHINFER_CUDA_ARCH_LIST` for your target GPUs):
122
+
123
+ ```bash
124
+ export FLASHINFER_CUDA_ARCH_LIST="7.5 8.0 8.9 9.0a 10.0a 10.3a 11.0a 12.0f"
125
+ cd flashinfer-jit-cache
126
+ python -m build --no-isolation --wheel
127
+ python -m pip install dist/*.whl
128
+ ```
129
+
130
+ For more details, see the [Install from Source documentation](https://docs.flashinfer.ai/installation.html#install-from-source).
131
+
132
+ ### Install Nightly Build
133
+
134
+ Nightly builds are available for testing the latest features:
135
+
136
+ ```bash
137
+ # Core and cubin packages
138
+ pip install -U --pre flashinfer-python --index-url https://flashinfer.ai/whl/nightly/ --no-deps # Install the nightly package from custom index, without installing dependencies
139
+ pip install flashinfer-python # Install flashinfer-python's dependencies from PyPI
140
+ pip install -U --pre flashinfer-cubin --index-url https://flashinfer.ai/whl/nightly/
141
+ # JIT cache package (replace cu129 with your CUDA version: cu128, cu129, or cu130)
142
+ pip install -U --pre flashinfer-jit-cache --index-url https://flashinfer.ai/whl/nightly/cu129
143
+ ```
144
+
145
+ ### Verify Installation
146
+
147
+ After installation, verify that FlashInfer is correctly installed and configured:
148
+
149
+ ```bash
150
+ flashinfer show-config
151
+ ```
152
+
153
+ This command displays:
154
+
155
+ - FlashInfer version and installed packages (flashinfer-python, flashinfer-cubin, flashinfer-jit-cache)
156
+ - PyTorch and CUDA version information
157
+ - Environment variables and artifact paths
158
+ - Downloaded cubin status and module compilation status
159
+
160
+ ### Trying it out
161
+
162
+ Below is a minimal example of using FlashInfer's single-request decode/append/prefill attention kernels:
163
+
164
+ ```python
165
+ import torch
166
+ import flashinfer
167
+
168
+ kv_len = 2048
169
+ num_kv_heads = 32
170
+ head_dim = 128
171
+
172
+ k = torch.randn(kv_len, num_kv_heads, head_dim).half().to(0)
173
+ v = torch.randn(kv_len, num_kv_heads, head_dim).half().to(0)
174
+
175
+ # decode attention
176
+
177
+ num_qo_heads = 32
178
+ q = torch.randn(num_qo_heads, head_dim).half().to(0)
179
+
180
+ o = flashinfer.single_decode_with_kv_cache(q, k, v) # decode attention without RoPE on-the-fly
181
+ o_rope_on_the_fly = flashinfer.single_decode_with_kv_cache(q, k, v, pos_encoding_mode="ROPE_LLAMA") # decode with LLaMA style RoPE on-the-fly
182
+
183
+ # append attention
184
+ append_qo_len = 128
185
+ q = torch.randn(append_qo_len, num_qo_heads, head_dim).half().to(0) # append attention, the last 128 tokens in the KV-Cache are the new tokens
186
+ o = flashinfer.single_prefill_with_kv_cache(q, k, v, causal=True) # append attention without RoPE on-the-fly, apply causal mask
187
+ o_rope_on_the_fly = flashinfer.single_prefill_with_kv_cache(q, k, v, causal=True, pos_encoding_mode="ROPE_LLAMA") # append attention with LLaMA style RoPE on-the-fly, apply causal mask
188
+
189
+ # prefill attention
190
+ qo_len = 2048
191
+ q = torch.randn(qo_len, num_qo_heads, head_dim).half().to(0) # prefill attention
192
+ o = flashinfer.single_prefill_with_kv_cache(q, k, v, causal=False) # prefill attention without RoPE on-the-fly, do not apply causal mask
193
+ ```
194
+
195
+ Check out [documentation](https://docs.flashinfer.ai/) for usage of batch decode/append/prefill kernels and shared-prefix cascading kernels.
196
+
197
+ ## API Logging
198
+
199
+ FlashInfer provides comprehensive API logging for debugging. Enable it using environment variables:
200
+
201
+ ```bash
202
+ # Enable logging (levels: 0=off (default), 1=basic, 3=detailed, 5=statistics)
203
+ export FLASHINFER_LOGLEVEL=3
204
+
205
+ # Set log destination (stdout (default), stderr, or file path)
206
+ export FLASHINFER_LOGDEST=stdout
207
+ ```
208
+
209
+ For detailed information about logging levels, configuration, and advanced features, see [Logging](https://docs.flashinfer.ai/logging.html) in our documentation.
210
+
211
+ ## Custom Attention Variants
212
+
213
+ Starting from FlashInfer v0.2, users can customize their own attention variants with additional parameters. For more details, refer to our [JIT examples](https://github.com/flashinfer-ai/flashinfer/blob/main/tests/utils/test_jit_example.py).
214
+
215
+ ## GPU and CUDA Support
216
+
217
+ FlashInfer currently provides support for NVIDIA SM architectures 75 and higher and beta support for 103, 110, 120, and 121.
218
+
219
+ **Supported CUDA Versions:** 12.6, 12.8, 13.0, 13.1
220
+
221
+ > **Note:** FlashInfer strives to follow PyTorch's supported CUDA versions plus the latest CUDA release.
222
+
223
+ ## Adoption
224
+
225
+ We are thrilled to share that FlashInfer is being adopted by many cutting-edge projects, including but not limited to:
226
+
227
+ - [MLC-LLM](https://github.com/mlc-ai/mlc-llm)
228
+ - [Punica](https://github.com/punica-ai/punica)
229
+ - [SGLang](https://github.com/sgl-project/sglang)
230
+ - [ScaleLLM](https://github.com/vectorch-ai/ScaleLLM)
231
+ - [vLLM](https://github.com/vllm-project/vllm)
232
+ - [TGI](https://github.com/huggingface/text-generation-inference)
233
+ - [lorax](https://github.com/predibase/lorax)
234
+ - [TensorRT-LLM](https://github.com/NVIDIA/TensorRT-LLM)
235
+ - [LightLLM](https://github.com/ModelTC/lightllm)
236
+
237
+ ## Acknowledgement
238
+
239
+ FlashInfer is inspired by [FlashAttention 1&2](https://github.com/dao-AILab/flash-attention/), [vLLM](https://github.com/vllm-project/vllm), [stream-K](https://arxiv.org/abs/2301.03598), [cutlass](https://github.com/nvidia/cutlass) and [AITemplate](https://github.com/facebookincubator/AITemplate) projects.
240
+
241
+ ## Citation
242
+
243
+ If you find FlashInfer helpful in your project or research, please consider citing our [paper](https://arxiv.org/abs/2501.01005):
244
+
245
+ ```bibtex
246
+ @article{ye2025flashinfer,
247
+ title = {FlashInfer: Efficient and Customizable Attention Engine for LLM Inference Serving},
248
+ author = {
249
+ Ye, Zihao and
250
+ Chen, Lequn and
251
+ Lai, Ruihang and
252
+ Lin, Wuwei and
253
+ Zhang, Yineng and
254
+ Wang, Stephanie and
255
+ Chen, Tianqi and
256
+ Kasikci, Baris and
257
+ Grover, Vinod and
258
+ Krishnamurthy, Arvind and
259
+ Ceze, Luis
260
+ },
261
+ journal = {arXiv preprint arXiv:2501.01005},
262
+ year = {2025},
263
+ url = {https://arxiv.org/abs/2501.01005}
264
+ }
265
+ ```
@@ -0,0 +1,240 @@
1
+ <p align="center">
2
+ <picture>
3
+ <source media="(prefers-color-scheme: dark)" srcset="https://github.com/flashinfer-ai/web-data/blob/main/logo/FlashInfer-black-background.png?raw=true">
4
+ <img alt="FlashInfer" src="https://github.com/flashinfer-ai/web-data/blob/main/logo/FlashInfer-white-background.png?raw=true" width=55%>
5
+ </picture>
6
+ </p>
7
+ <h1 align="center">
8
+ Kernel Library for LLM Serving
9
+ </h1>
10
+
11
+ <p align="center">
12
+ | <a href="https://flashinfer.ai"><b>Blog</b></a> | <a href="https://docs.flashinfer.ai"><b>Documentation</b></a> | <a href="https://join.slack.com/t/flashinfer/shared_invite/zt-379wct3hc-D5jR~1ZKQcU00WHsXhgvtA"><b>Slack</b></a> | <a href="https://github.com/orgs/flashinfer-ai/discussions"><b>Discussion Forum</b></a> |
13
+ </p>
14
+
15
+ [![Build Status](https://ci.tlcpack.ai/job/flashinfer-ci/job/main/badge/icon)](https://ci.tlcpack.ai/job/flashinfer-ci/job/main/)
16
+ [![Documentation](https://github.com/flashinfer-ai/flashinfer/actions/workflows/build-doc.yml/badge.svg)](https://github.com/flashinfer-ai/flashinfer/actions/workflows/build-doc.yml)
17
+
18
+ FlashInfer is a library and kernel generator for Large Language Models that provides high-performance implementation of LLM GPU kernels such as FlashAttention, SparseAttention, PageAttention, Sampling, and more. FlashInfer focuses on LLM serving and inference, and delivers state-of-the-art performance across diverse scenarios.
19
+
20
+ Check our [v0.2 release blog](https://flashinfer.ai/2024/12/16/flashinfer-v02-release.html) for new features!
21
+
22
+ The core features of FlashInfer include:
23
+
24
+ 1. **Efficient Sparse/Dense Attention Kernels**: Efficient single/batch attention for sparse(paged)/dense KV-storage on CUDA Cores and Tensor Cores (both FA2 & FA3) templates. The vector-sparse attention can achieve 90% of the bandwidth of dense kernels with same problem size.
25
+ 2. **Load-Balanced Scheduling**: FlashInfer decouples `plan`/`run` stage of attention computation where we schedule the computation of variable-length inputs in `plan` stage to alleviate load-imbalance issue.
26
+ 3. **Memory Efficiency**: FlashInfer offers [Cascade Attention](https://docs.flashinfer.ai/api/cascade.html#flashinfer.cascade.MultiLevelCascadeAttentionWrapper) for hierarchical KV-Cache, and implements Head-Query fusion for accelerating Grouped-Query Attention, and efficient kernels for low-precision attention and fused-RoPE attention for compressed KV-Cache.
27
+ 4. **Customizable Attention**: Bring your own attention variants through JIT-compilation.
28
+ 5. **CUDAGraph and torch.compile Compatibility**: FlashInfer kernels can be captured by CUDAGraphs and torch.compile for low-latency inference.
29
+ 6. **Efficient LLM-specific Operators**: High-Performance [fused kernel for Top-P, Top-K/Min-P sampling](https://docs.flashinfer.ai/api/sampling.html) without the need to sorting.
30
+
31
+ FlashInfer supports PyTorch, TVM and C++ (header-only) APIs, and can be easily integrated into existing projects.
32
+
33
+ ## News
34
+
35
+ - [Mar 10, 2025] [Blog Post](https://flashinfer.ai/2025/03/10/sampling.html) Sorting-Free GPU Kernels for LLM Sampling, which explains the design of sampling kernels in FlashInfer.
36
+ - [Mar 1, 2025] Checkout flashinfer's [intra-kernel profiler](https://github.com/flashinfer-ai/flashinfer/tree/main/profiler) for visualizing the timeline of each threadblock in GPU kernels.
37
+ - [Dec 16, 2024] [Blog Post](https://flashinfer.ai/2024/12/16/flashinfer-v02-release.html) FlashInfer 0.2 - Efficient and Customizable Kernels for LLM Inference Serving
38
+ - [Sept 2024] We've launched a [Slack](https://join.slack.com/t/flashinfer/shared_invite/zt-2r93kj2aq-wZnC2n_Z2~mf73N5qnVGGA) workspace for Flashinfer users and developers. Join us for timely support, discussions, updates and knowledge sharing!
39
+ - [Jan 31, 2024] [Blog Post](https://flashinfer.ai/2024/01/08/cascade-inference.html) Cascade Inference: Memory-Efficient Shared Prefix Batch Decoding
40
+ - [Jan 31, 2024] [Blog Post](https://flashinfer.ai/2024/01/03/introduce-flashinfer.html) Accelerating Self-Attentions for LLM Serving with FlashInfer
41
+
42
+ ## Getting Started
43
+
44
+ Using our PyTorch API is the easiest way to get started:
45
+
46
+ ### Install from PyPI
47
+
48
+ FlashInfer is available as a Python package for Linux. Install the core package with:
49
+
50
+ ```bash
51
+ pip install flashinfer-python
52
+ ```
53
+
54
+ **Package Options:**
55
+
56
+ - **flashinfer-python**: Core package that compiles/downloads kernels on first use
57
+ - **flashinfer-cubin**: Pre-compiled kernel binaries for all supported GPU architectures
58
+ - **flashinfer-jit-cache**: Pre-built kernel cache for specific CUDA versions
59
+
60
+ **For faster initialization and offline usage**, install the optional packages to have most kernels pre-compiled:
61
+
62
+ ```bash
63
+ pip install flashinfer-python flashinfer-cubin
64
+ # JIT cache package (replace cu129 with your CUDA version: cu128, cu129, or cu130)
65
+ pip install flashinfer-jit-cache --index-url https://flashinfer.ai/whl/cu129
66
+ ```
67
+
68
+ This eliminates compilation and downloading overhead at runtime.
69
+
70
+ ### Install from Source
71
+
72
+ Build the core package from source:
73
+
74
+ ```bash
75
+ git clone https://github.com/flashinfer-ai/flashinfer.git --recursive
76
+ cd flashinfer
77
+ python -m pip install -v .
78
+ ```
79
+
80
+ **For development**, install in editable mode:
81
+
82
+ ```bash
83
+ python -m pip install --no-build-isolation -e . -v
84
+ ```
85
+
86
+ **Build optional packages:**
87
+
88
+ `flashinfer-cubin`:
89
+
90
+ ```bash
91
+ cd flashinfer-cubin
92
+ python -m build --no-isolation --wheel
93
+ python -m pip install dist/*.whl
94
+ ```
95
+
96
+ `flashinfer-jit-cache` (customize `FLASHINFER_CUDA_ARCH_LIST` for your target GPUs):
97
+
98
+ ```bash
99
+ export FLASHINFER_CUDA_ARCH_LIST="7.5 8.0 8.9 9.0a 10.0a 10.3a 11.0a 12.0f"
100
+ cd flashinfer-jit-cache
101
+ python -m build --no-isolation --wheel
102
+ python -m pip install dist/*.whl
103
+ ```
104
+
105
+ For more details, see the [Install from Source documentation](https://docs.flashinfer.ai/installation.html#install-from-source).
106
+
107
+ ### Install Nightly Build
108
+
109
+ Nightly builds are available for testing the latest features:
110
+
111
+ ```bash
112
+ # Core and cubin packages
113
+ pip install -U --pre flashinfer-python --index-url https://flashinfer.ai/whl/nightly/ --no-deps # Install the nightly package from custom index, without installing dependencies
114
+ pip install flashinfer-python # Install flashinfer-python's dependencies from PyPI
115
+ pip install -U --pre flashinfer-cubin --index-url https://flashinfer.ai/whl/nightly/
116
+ # JIT cache package (replace cu129 with your CUDA version: cu128, cu129, or cu130)
117
+ pip install -U --pre flashinfer-jit-cache --index-url https://flashinfer.ai/whl/nightly/cu129
118
+ ```
119
+
120
+ ### Verify Installation
121
+
122
+ After installation, verify that FlashInfer is correctly installed and configured:
123
+
124
+ ```bash
125
+ flashinfer show-config
126
+ ```
127
+
128
+ This command displays:
129
+
130
+ - FlashInfer version and installed packages (flashinfer-python, flashinfer-cubin, flashinfer-jit-cache)
131
+ - PyTorch and CUDA version information
132
+ - Environment variables and artifact paths
133
+ - Downloaded cubin status and module compilation status
134
+
135
+ ### Trying it out
136
+
137
+ Below is a minimal example of using FlashInfer's single-request decode/append/prefill attention kernels:
138
+
139
+ ```python
140
+ import torch
141
+ import flashinfer
142
+
143
+ kv_len = 2048
144
+ num_kv_heads = 32
145
+ head_dim = 128
146
+
147
+ k = torch.randn(kv_len, num_kv_heads, head_dim).half().to(0)
148
+ v = torch.randn(kv_len, num_kv_heads, head_dim).half().to(0)
149
+
150
+ # decode attention
151
+
152
+ num_qo_heads = 32
153
+ q = torch.randn(num_qo_heads, head_dim).half().to(0)
154
+
155
+ o = flashinfer.single_decode_with_kv_cache(q, k, v) # decode attention without RoPE on-the-fly
156
+ o_rope_on_the_fly = flashinfer.single_decode_with_kv_cache(q, k, v, pos_encoding_mode="ROPE_LLAMA") # decode with LLaMA style RoPE on-the-fly
157
+
158
+ # append attention
159
+ append_qo_len = 128
160
+ q = torch.randn(append_qo_len, num_qo_heads, head_dim).half().to(0) # append attention, the last 128 tokens in the KV-Cache are the new tokens
161
+ o = flashinfer.single_prefill_with_kv_cache(q, k, v, causal=True) # append attention without RoPE on-the-fly, apply causal mask
162
+ o_rope_on_the_fly = flashinfer.single_prefill_with_kv_cache(q, k, v, causal=True, pos_encoding_mode="ROPE_LLAMA") # append attention with LLaMA style RoPE on-the-fly, apply causal mask
163
+
164
+ # prefill attention
165
+ qo_len = 2048
166
+ q = torch.randn(qo_len, num_qo_heads, head_dim).half().to(0) # prefill attention
167
+ o = flashinfer.single_prefill_with_kv_cache(q, k, v, causal=False) # prefill attention without RoPE on-the-fly, do not apply causal mask
168
+ ```
169
+
170
+ Check out [documentation](https://docs.flashinfer.ai/) for usage of batch decode/append/prefill kernels and shared-prefix cascading kernels.
171
+
172
+ ## API Logging
173
+
174
+ FlashInfer provides comprehensive API logging for debugging. Enable it using environment variables:
175
+
176
+ ```bash
177
+ # Enable logging (levels: 0=off (default), 1=basic, 3=detailed, 5=statistics)
178
+ export FLASHINFER_LOGLEVEL=3
179
+
180
+ # Set log destination (stdout (default), stderr, or file path)
181
+ export FLASHINFER_LOGDEST=stdout
182
+ ```
183
+
184
+ For detailed information about logging levels, configuration, and advanced features, see [Logging](https://docs.flashinfer.ai/logging.html) in our documentation.
185
+
186
+ ## Custom Attention Variants
187
+
188
+ Starting from FlashInfer v0.2, users can customize their own attention variants with additional parameters. For more details, refer to our [JIT examples](https://github.com/flashinfer-ai/flashinfer/blob/main/tests/utils/test_jit_example.py).
189
+
190
+ ## GPU and CUDA Support
191
+
192
+ FlashInfer currently provides support for NVIDIA SM architectures 75 and higher and beta support for 103, 110, 120, and 121.
193
+
194
+ **Supported CUDA Versions:** 12.6, 12.8, 13.0, 13.1
195
+
196
+ > **Note:** FlashInfer strives to follow PyTorch's supported CUDA versions plus the latest CUDA release.
197
+
198
+ ## Adoption
199
+
200
+ We are thrilled to share that FlashInfer is being adopted by many cutting-edge projects, including but not limited to:
201
+
202
+ - [MLC-LLM](https://github.com/mlc-ai/mlc-llm)
203
+ - [Punica](https://github.com/punica-ai/punica)
204
+ - [SGLang](https://github.com/sgl-project/sglang)
205
+ - [ScaleLLM](https://github.com/vectorch-ai/ScaleLLM)
206
+ - [vLLM](https://github.com/vllm-project/vllm)
207
+ - [TGI](https://github.com/huggingface/text-generation-inference)
208
+ - [lorax](https://github.com/predibase/lorax)
209
+ - [TensorRT-LLM](https://github.com/NVIDIA/TensorRT-LLM)
210
+ - [LightLLM](https://github.com/ModelTC/lightllm)
211
+
212
+ ## Acknowledgement
213
+
214
+ FlashInfer is inspired by [FlashAttention 1&2](https://github.com/dao-AILab/flash-attention/), [vLLM](https://github.com/vllm-project/vllm), [stream-K](https://arxiv.org/abs/2301.03598), [cutlass](https://github.com/nvidia/cutlass) and [AITemplate](https://github.com/facebookincubator/AITemplate) projects.
215
+
216
+ ## Citation
217
+
218
+ If you find FlashInfer helpful in your project or research, please consider citing our [paper](https://arxiv.org/abs/2501.01005):
219
+
220
+ ```bibtex
221
+ @article{ye2025flashinfer,
222
+ title = {FlashInfer: Efficient and Customizable Attention Engine for LLM Inference Serving},
223
+ author = {
224
+ Ye, Zihao and
225
+ Chen, Lequn and
226
+ Lai, Ruihang and
227
+ Lin, Wuwei and
228
+ Zhang, Yineng and
229
+ Wang, Stephanie and
230
+ Chen, Tianqi and
231
+ Kasikci, Baris and
232
+ Grover, Vinod and
233
+ Krishnamurthy, Arvind and
234
+ Ceze, Luis
235
+ },
236
+ journal = {arXiv preprint arXiv:2501.01005},
237
+ year = {2025},
238
+ url = {https://arxiv.org/abs/2501.01005}
239
+ }
240
+ ```