ejkernel 0.0.72__tar.gz → 0.0.75__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.
- {ejkernel-0.0.72 → ejkernel-0.0.75}/PKG-INFO +1 -1
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/__init__.py +1 -1
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/__init__.py +10 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/deepseek_attn/__init__.py +27 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/deepseek_attn/_interface.py +159 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/deepseek_attn/_pallas_impl_bwd.py +97 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/deepseek_attn/_pallas_impl_fwd.py +259 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/gated_delta_rule/_interface.py +1 -1
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/gated_delta_rule/_pallas_impl_bwd.py +175 -153
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/gated_delta_rule/_pallas_impl_fwd.py +608 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/grouped_matmulv3/__init__.py +19 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/grouped_matmulv3/_interface.py +296 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/grouped_matmulv3/_pallas_impl.py +995 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/multi_latent_ragged_page_attention_v2/__init__.py +19 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/multi_latent_ragged_page_attention_v2/_interface.py +177 -0
- ejkernel-0.0.75/ejkernel/kernels/_pallas/tpu/multi_latent_ragged_page_attention_v2/_pallas_impl_fwd.py +1407 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_page_attention_v3/_pallas_impl_fwd.py +367 -180
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_page_attention_v3/_pallas_impl_fwd_h64.py +68 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/__init__.py +12 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/deepseek_attn/__init__.py +28 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/deepseek_attn/_interface.py +239 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/deepseek_attn/_xla_impl_bwd.py +117 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/deepseek_attn/_xla_impl_fwd.py +186 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/gated_delta_rule/_interface.py +1 -1
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/gated_delta_rule/_xla_impl_fwd.py +1 -1
- ejkernel-0.0.75/ejkernel/kernels/_xla/grouped_matmulv3/__init__.py +19 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/grouped_matmulv3/_interface.py +356 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/multi_latent_ragged_page_attention_v2/__init__.py +19 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/multi_latent_ragged_page_attention_v2/_interface.py +120 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/multi_latent_ragged_page_attention_v2/_xla_impl_fwd.py +117 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/ragged_page_attention_v2_turboquant/__init__.py +27 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/ragged_page_attention_v2_turboquant/_interface.py +124 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/ragged_page_attention_v2_turboquant/_xla_impl_fwd.py +422 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/ragged_page_attention_v3_turboquant/__init__.py +28 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/ragged_page_attention_v3_turboquant/_interface.py +144 -0
- ejkernel-0.0.75/ejkernel/kernels/_xla/ragged_page_attention_v3_turboquant/_xla_impl_fwd.py +580 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/__init__.py +28 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/__init__.py +33 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/configs.py +170 -2
- ejkernel-0.0.75/ejkernel/modules/operations/deepseek_attn.py +294 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/gated_delta_rule.py +2 -2
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/grouped_matmul.py +38 -6
- ejkernel-0.0.75/ejkernel/modules/operations/multi_latent_ragged_page_attention_v2.py +375 -0
- ejkernel-0.0.75/ejkernel/modules/operations/ragged_page_attention_v2_turboquant.py +568 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/ragged_page_attention_v3.py +22 -3
- ejkernel-0.0.75/ejkernel/modules/operations/ragged_page_attention_v3_turboquant.py +615 -0
- ejkernel-0.0.75/ejkernel/quantization/turboquant/__init__.py +60 -0
- ejkernel-0.0.75/ejkernel/quantization/turboquant/codebook.py +190 -0
- ejkernel-0.0.75/ejkernel/quantization/turboquant/matrices.py +81 -0
- ejkernel-0.0.75/ejkernel/quantization/turboquant/ops.py +229 -0
- ejkernel-0.0.75/ejkernel/quantization/turboquant/packing.py +117 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/pyproject.toml +1 -1
- ejkernel-0.0.72/ejkernel/kernels/_pallas/tpu/gated_delta_rule/_pallas_impl_fwd.py +0 -449
- {ejkernel-0.0.72 → ejkernel-0.0.75}/README.md +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/CMakeLists.txt +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_attention.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_attention_ffi.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_attention_kernel.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_attention_launch_template.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim128_vhdim128_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim192_vhdim192_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim256_vhdim256_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim32_vhdim32_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim64_vhdim64_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/blocksparse_fwd_hdim96_vhdim96_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/blocksparse_attention/src/code_gen.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/code_gen.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/CMakeLists.txt +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/block.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/code_gen.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/copy_sm90_bulk_reduce.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/cuda_check.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/epilogue_bwd.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/epilogue_fwd.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_api.cpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_api_stable.cpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_bwd_kernel_sm80.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_bwd_kernel_sm90.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_bwd_launch_template.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_bwd_postprocess_kernel.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_bwd_preprocess_kernel.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_fwd_combine.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_fwd_combine_kernel.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_fwd_combine_launch_template.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_fwd_kernel_sm80.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_fwd_kernel_sm90.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_fwd_launch_template.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/flash_prepare_scheduler.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/heuristics.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_bf16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim128_fp16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_bf16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim192_fp16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_bf16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim256_fp16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_bf16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim64_fp16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_bf16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_bwd_hdim96_fp16_softcapall_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_bf16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_e4m3_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim128_fp16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_e4m3_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_128_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_bf16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_e4m3_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim192_fp16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_bf16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_e4m3_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim256_fp16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_256_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_512_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_bf16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_e4m3_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim64_fp16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_bf16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_e4m3_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_paged_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_packgqa_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_packgqa_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_packgqa_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_packgqa_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdim96_fp16_split_softcapall_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_e4m3_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimall_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_bf16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_e4m3_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_paged_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_paged_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_paged_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_paged_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_softcap_packgqa_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_split_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/instantiations/flash_fwd_hdimdiff_fp16_split_softcap_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/mainloop_bwd_sm80.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/mainloop_bwd_sm90_tma_gmma_ws.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/mainloop_fwd_sm80.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/mainloop_fwd_sm90_tma_gmma_ws.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/mask.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/named_barrier.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/pack_gqa.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/paged_kv.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/rotary.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/seqlen.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/sm90_pipeline_no_cluster.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/softmax.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/static_switch.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/tile_scheduler.hpp +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/tile_size.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/hopper/utils.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/include/c10/cuda/CUDAException.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/include/ejkernel_flash_attention.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/include/ejkernel_flash_attention_cutlass.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/alibi.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/aten_shim.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/block_info.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/code_gen.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/dropout.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_attention_ffi.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim128_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim192_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim256_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim32_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim64_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_hdim96_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_kernel.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_launch_template.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_bwd_preprocess_kernel.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim128_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim192_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim256_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim32_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim64_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_hdim96_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_kernel.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_launch_template.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim128_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim192_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim256_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim32_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim64_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_causal_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_causal_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_causal_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_causal_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_causal_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/flash_fwd_split_hdim96_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/hardware_info.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/kernel_traits.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/mask.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/namespace_config.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/philox.cuh +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/philox_unpack.cuh +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/rotary.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/softmax.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/static_switch.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/flash_attention/src/utils.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/CMakeLists.txt +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/code_gen.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_cuda.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_cuda_impl.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits2_bf16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits2_f16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits2_f32.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits3_bf16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits3_f16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits3_f32.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits4_bf16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits4_f16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits4_f32.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits5_bf16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits5_f16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits5_f32.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits6_bf16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits6_f16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits6_f32.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits7_bf16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits7_f16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits7_f32.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits8_bf16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits8_f16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_affine_bits8_f32.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_dispatch.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_kernels.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_mxfp4.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_mxfp8.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_nf4_bf16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_nf4_f16.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_nf4_f32.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_nvfp4.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/quantized_matmul/src/qmm_dequant_nvfp8.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/CMakeLists.txt +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/code_gen.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_ffi.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp32_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp32_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp32_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp32_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim128_fp32_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp32_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp32_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp32_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp32_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim192_fp32_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp32_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp32_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp32_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp32_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim256_fp32_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp32_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp32_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp32_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp32_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim32_fp32_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp32_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp32_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp32_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp32_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim64_fp32_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp32_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp32_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp32_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp32_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_fwd_hdim96_fp32_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_kernel.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/ragged_page_attention_v3/src/rpa_v3_launch_template.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/CMakeLists.txt +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/code_gen.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_cuda.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim128_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim192_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim256_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim32_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim64_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_bf16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_bf16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_bf16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_bf16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_bf16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_fp16_sm100.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_fp16_sm110.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_fp16_sm120.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_fp16_sm80.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_fwd_hdim96_fp16_sm90.cu +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_kernel.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/csrc/unified_attention/src/ua_launch_template.h +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/benchmarks.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/build_cudalib.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/callib/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/callib/_cute_call.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/callib/_cute_ffi.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/callib/_ejit.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/callib/_pallas_call.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/callib/_triton_call.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/callib/_utils.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/errors.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/blocksparse_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/blocksparse_attention/_build.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/blocksparse_attention/_cuda_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/blocksparse_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/flash_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/flash_attention/_build.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/flash_attention/_cuda_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/flash_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/quantized_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/quantized_matmul/_build.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/quantized_matmul/_cuda_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/quantized_matmul/_cuda_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/quantized_matmul/_cuda_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/quantized_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/ragged_page_attention_v3/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/ragged_page_attention_v3/_build.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/ragged_page_attention_v3/_cuda_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/ragged_page_attention_v3/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/unified_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/unified_attention/_build.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/unified_attention/_cuda_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cuda/unified_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/chunked_prefill_paged_decode/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/chunked_prefill_paged_decode/_cute_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/chunked_prefill_paged_decode/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/flash_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/flash_attention/_cute_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/flash_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/quantized_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/quantized_matmul/_cute_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/quantized_matmul/_cute_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/quantized_matmul/_cute_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/quantized_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/ragged_page_attention_v3/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/ragged_page_attention_v3/_cute_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/ragged_page_attention_v3/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/unified_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/unified_attention/_cute_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_cute/unified_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/gpu/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/gpu/ragged_decode_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/gpu/ragged_decode_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/gpu/ragged_decode_attention/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/gpu/scaled_dot_product_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/gpu/scaled_dot_product_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/gpu/scaled_dot_product_attention/_pallas_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/gpu/scaled_dot_product_attention/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/all_gather_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/all_gather_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/all_gather_matmul/_pallas_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/blocksparse_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/blocksparse_attention/_info.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/blocksparse_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/blocksparse_attention/_kernel.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/blocksparse_attention/_masks.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_attention/_pallas_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_attention/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_attention/_utils.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_mla/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_mla/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_mla/_pallas_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_mla/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/flash_mla/_utils.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/gated_delta_rule/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/grouped_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/grouped_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/grouped_matmul/_pallas_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/grouped_matmul/_utils.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/grouped_matmulv2/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/grouped_matmulv2/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/grouped_matmulv2/_pallas_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/multi_latent_ragged_page_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/multi_latent_ragged_page_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/multi_latent_ragged_page_attention/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/page_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/page_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/page_attention/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/prefill_page_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/prefill_page_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/prefill_page_attention/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/quantized_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/quantized_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/quantized_matmul/_pallas_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/quantized_matmul/_pallas_impl_core.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/quantized_matmul/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_decode_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_decode_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_decode_attention/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_page_attention_v2/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_page_attention_v2/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_page_attention_v2/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_page_attention_v2/_utils.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_page_attention_v3/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_page_attention_v3/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ragged_page_attention_v3/_utils.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/reduce_scatter_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/reduce_scatter_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/reduce_scatter_matmul/_pallas_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ring_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ring_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ring_attention/_pallas_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/ring_attention/_pallas_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_registry.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/blocksparse_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/blocksparse_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/blocksparse_attention/_mask.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/blocksparse_attention/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/blocksparse_attention/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/blocksparse_attention/_utilities.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/chunked_prefill_paged_decode/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/chunked_prefill_paged_decode/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/chunked_prefill_paged_decode/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/decode_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/decode_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/decode_attention/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_attention/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_attention/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_attention/_utilities.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_mla/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_mla/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_mla/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_mla/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/flash_mla/_utilities.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/gla/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/gla/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/gla/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/gla/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/lightning_attn/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/lightning_attn/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/lightning_attn/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/lightning_attn/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/mean_pooling/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/mean_pooling/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/mean_pooling/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/mean_pooling/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/native_sparse_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/native_sparse_attention/_compression.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/native_sparse_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/native_sparse_attention/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/native_sparse_attention/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/native_sparse_attention/_utilities.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/page_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/page_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/page_attention/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/quantized_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/quantized_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/quantized_matmul/_triton_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/quantized_matmul/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/quantized_matmul/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/quantized_matmul/_triton_impl_gemv.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ragged_decode_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ragged_decode_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ragged_decode_attention/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ragged_page_attention_v2/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ragged_page_attention_v2/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ragged_page_attention_v2/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ragged_page_attention_v3/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ragged_page_attention_v3/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ragged_page_attention_v3/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/recurrent/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/recurrent/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/recurrent/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/recurrent/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ring_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ring_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ring_attention/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/ring_attention/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv4/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv4/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv4/_triton_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv4/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv6/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv6/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv6/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv7/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv7/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/rwkv7/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/unified_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/unified_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_triton/unified_attention/_triton_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/all_gather_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/all_gather_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/all_gather_matmul/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/all_gather_matmul/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/attention/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/blocksparse_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/blocksparse_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/blocksparse_attention/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/blocksparse_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/chunked_prefill_paged_decode/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/chunked_prefill_paged_decode/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/chunked_prefill_paged_decode/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/decode_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/decode_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/decode_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/flash_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/flash_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/flash_attention/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/flash_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/flash_mla/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/flash_mla/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/flash_mla/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/flash_mla/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/gated_delta_rule/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/gated_delta_rule/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/gla/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/gla/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/gla/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/gla/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/grouped_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/grouped_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/grouped_matmul/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/grouped_matmul/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/kernel_delta_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/kernel_delta_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/kernel_delta_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/lightning_attn/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/lightning_attn/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/lightning_attn/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/lightning_attn/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/mean_pooling/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/mean_pooling/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/mean_pooling/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/mean_pooling/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/multi_latent_ragged_page_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/multi_latent_ragged_page_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/multi_latent_ragged_page_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/native_sparse_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/native_sparse_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/native_sparse_attention/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/native_sparse_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/page_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/page_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/page_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/prefill_page_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/prefill_page_attention/_impl.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/prefill_page_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/quantized_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/quantized_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/quantized_matmul/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/quantized_matmul/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_decode_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_decode_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_decode_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_page_attention_v2/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_page_attention_v2/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_page_attention_v2/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_page_attention_v3/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_page_attention_v3/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_page_attention_v3/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ragged_page_attention_v3/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/recurrent/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/recurrent/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/recurrent/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/recurrent/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/reduce_scatter_matmul/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/reduce_scatter_matmul/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/reduce_scatter_matmul/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/reduce_scatter_matmul/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ring_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ring_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ring_attention/_utils.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ring_attention/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/ring_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv4/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv4/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv4/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv4/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv6/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv6/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv6/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv6/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv7/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv7/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv7/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/rwkv7/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/scaled_dot_product_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/scaled_dot_product_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/scaled_dot_product_attention/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/scaled_dot_product_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/state_space_v1/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/state_space_v1/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/state_space_v1/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/state_space_v1/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/state_space_v2/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/state_space_v2/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/state_space_v2/_xla_impl_bwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/state_space_v2/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/unified_attention/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/unified_attention/_interface.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_xla/unified_attention/_xla_impl_fwd.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/loggings.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/base.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/all_gather_matmul.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/blocksparse_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/chunked_prefill_paged_decode.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/decode_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/flash_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/gated_linear_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/kernel_delta_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/lightning_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/multi_head_latent_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/multi_latent_ragged_page_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/native_sparse_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/page_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/pooling.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/prefill_page_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/quantized_matmul.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/ragged_decode_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/ragged_page_attention_v2.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/recurrent.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/reduce_scatter_matmul.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/ring_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/rwkv4.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/rwkv6.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/rwkv7.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/scaled_dot_product_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/state_space_v1.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/state_space_v2.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/modules/operations/unified_attention.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/config/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/config/cache.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/config/persistent.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/config/selection.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/core/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/core/kernel.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/core/types.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/execution/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/execution/batch.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/execution/executor.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/execution/offline.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/execution/profiler.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/execution/tuning.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/registry.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/utils/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/utils/datacarrier.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/utils/fingerprint.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/utils/meta.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/ops/utils/serialize.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/_quants/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/_quants/quantizations.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/_utils/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/_utils/bitpack.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/_utils/fp_tables.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/_utils/grouping.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/_utils/qparams.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/quantized_array.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/quantization/runtime.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/types/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/types/mask.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/utils.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/xla_utils/__init__.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/xla_utils/cumsum.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/xla_utils/shardings.py +0 -0
- {ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/xla_utils/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ejkernel
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.75
|
|
4
4
|
Summary: Accelerate, Optimize performance with streamlined training and serving options with JAX.
|
|
5
5
|
Keywords: Deep Learning,Machine Learning,JAX,CUDA,XLA,Triton,Pallas
|
|
6
6
|
Author: Erfan Zare Chavoshi
|
|
@@ -43,7 +43,7 @@ import os as _os
|
|
|
43
43
|
_os.environ.setdefault("TF_GPU_ALLOCATOR", "cuda_malloc_async")
|
|
44
44
|
_os.environ.setdefault("CUTE_DSL_ENABLE_TVM_FFI", "1")
|
|
45
45
|
|
|
46
|
-
__version__ = "0.0.
|
|
46
|
+
__version__ = "0.0.75"
|
|
47
47
|
|
|
48
48
|
from . import errors, kernels, modules, types, utils, xla_utils
|
|
49
49
|
from .errors import EjkernelRuntimeError
|
|
@@ -21,7 +21,11 @@ High Bandwidth Memory (HBM) for efficient execution.
|
|
|
21
21
|
|
|
22
22
|
Available Kernels:
|
|
23
23
|
- flash_attention: Memory-efficient exact attention
|
|
24
|
+
- flash_mla: Multi-head latent attention forward pass
|
|
25
|
+
- deepseek_attn: DeepSeek Sparse Attention (MLA + Lightning Indexer)
|
|
26
|
+
- gated_delta_rule: Gated delta rule linear attention
|
|
24
27
|
- multi_latent_ragged_page_attention: MLA ragged paged attention
|
|
28
|
+
- multi_latent_ragged_page_attention_v2: MLA ragged paged attention v2
|
|
25
29
|
- blocksparse_attention: Block-sparse attention patterns
|
|
26
30
|
- ring_attention: Distributed attention across devices
|
|
27
31
|
- page_attention: Paged KV cache attention
|
|
@@ -33,12 +37,15 @@ Available Kernels:
|
|
|
33
37
|
|
|
34
38
|
from .all_gather_matmul import all_gather_matmul
|
|
35
39
|
from .blocksparse_attention import blocksparse_attention as blocksparse_attention
|
|
40
|
+
from .deepseek_attn import deepseek_attn
|
|
36
41
|
from .flash_attention import flash_attention
|
|
37
42
|
from .flash_mla import flash_mla
|
|
38
43
|
from .gated_delta_rule import gated_delta_rule
|
|
39
44
|
from .grouped_matmul import grouped_matmul
|
|
40
45
|
from .grouped_matmulv2 import grouped_matmulv2
|
|
46
|
+
from .grouped_matmulv3 import grouped_matmulv3
|
|
41
47
|
from .multi_latent_ragged_page_attention import multi_latent_ragged_page_attention
|
|
48
|
+
from .multi_latent_ragged_page_attention_v2 import multi_latent_ragged_page_attention_v2
|
|
42
49
|
from .page_attention import page_attention
|
|
43
50
|
from .prefill_page_attention import prefill_page_attention
|
|
44
51
|
from .quantized_matmul import quantized_matmul
|
|
@@ -51,12 +58,15 @@ from .ring_attention import ring_attention
|
|
|
51
58
|
__all__ = (
|
|
52
59
|
"all_gather_matmul",
|
|
53
60
|
"blocksparse_attention",
|
|
61
|
+
"deepseek_attn",
|
|
54
62
|
"flash_attention",
|
|
55
63
|
"flash_mla",
|
|
56
64
|
"gated_delta_rule",
|
|
57
65
|
"grouped_matmul",
|
|
58
66
|
"grouped_matmulv2",
|
|
67
|
+
"grouped_matmulv3",
|
|
59
68
|
"multi_latent_ragged_page_attention",
|
|
69
|
+
"multi_latent_ragged_page_attention_v2",
|
|
60
70
|
"page_attention",
|
|
61
71
|
"prefill_page_attention",
|
|
62
72
|
"quantized_matmul",
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Copyright 2025 The EasyDeL/ejKernel Author @erfanzar (Erfan Zare Chavoshi).
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
"""Pallas TPU backend for DeepSeek Sparse Attention (DSA).
|
|
17
|
+
|
|
18
|
+
Combines MLA (compressed KV latent + on-the-fly projection) with a
|
|
19
|
+
Lightning Indexer for dynamic top-k token selection on TPU.
|
|
20
|
+
|
|
21
|
+
Reference:
|
|
22
|
+
DeepSeek-V3.2: https://arxiv.org/abs/2512.02556
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
from ._interface import deepseek_attn
|
|
26
|
+
|
|
27
|
+
__all__ = ("deepseek_attn",)
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# Copyright 2025 The EasyDeL/ejKernel Author @erfanzar (Erfan Zare Chavoshi).
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
"""DeepSeek Sparse Attention (DSA) — Pallas TPU interface.
|
|
16
|
+
|
|
17
|
+
Two-phase implementation:
|
|
18
|
+
Phase 1 (XLA): Lightning Indexer selects top-k tokens.
|
|
19
|
+
Phase 2 (Pallas): Tiled MLA attention with sparse mask.
|
|
20
|
+
|
|
21
|
+
Reference:
|
|
22
|
+
DeepSeek-V3.2: https://arxiv.org/abs/2512.02556
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
from __future__ import annotations
|
|
26
|
+
|
|
27
|
+
import math
|
|
28
|
+
|
|
29
|
+
import jax.numpy as jnp
|
|
30
|
+
import jaxtyping
|
|
31
|
+
from beartype import beartype
|
|
32
|
+
from jaxtyping import Array, Float
|
|
33
|
+
|
|
34
|
+
from ...._registry import Backend, Platform, kernel_registry
|
|
35
|
+
from ...._xla.deepseek_attn._xla_impl_fwd import _lightning_indexer
|
|
36
|
+
from ._pallas_impl_fwd import (
|
|
37
|
+
ROPE_DECOUPLED,
|
|
38
|
+
ROPE_FUSED,
|
|
39
|
+
ROPE_NONE,
|
|
40
|
+
_build_sparse_mask,
|
|
41
|
+
deepseek_attn_pallas_impl,
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
@kernel_registry.register("deepseek_attn", Platform.PALLAS, Backend.TPU)
|
|
46
|
+
@jaxtyping.jaxtyped(typechecker=beartype)
|
|
47
|
+
def deepseek_attn(
|
|
48
|
+
query: Float[Array, "batch seq_len q_heads q_head_dim"],
|
|
49
|
+
key_value: Float[Array, "batch seq_len kv_lora_rank"],
|
|
50
|
+
w_kc: Float[Array, "kv_lora_rank kv_heads qk_nope_head_dim"],
|
|
51
|
+
w_vc: Float[Array, "kv_lora_rank kv_heads v_head_dim"],
|
|
52
|
+
query_index: Float[Array, "batch seq_len index_heads index_head_dim"],
|
|
53
|
+
key_index: Float[Array, "batch seq_len index_head_dim"],
|
|
54
|
+
index_weights: Float[Array, "batch seq_len index_heads"],
|
|
55
|
+
index_topk: int = 2048,
|
|
56
|
+
softmax_scale: float | None = None,
|
|
57
|
+
index_softmax_scale: float | None = None,
|
|
58
|
+
b_q: Float[Array, "batch seq_len qk_rope_head_dim"] | None = None,
|
|
59
|
+
b_k: Float[Array, "batch seq_len qk_rope_head_dim"] | None = None,
|
|
60
|
+
causal: bool = True,
|
|
61
|
+
) -> Float[Array, "batch seq_len q_heads v_head_dim"]:
|
|
62
|
+
"""DeepSeek Sparse Attention on TPU using Pallas.
|
|
63
|
+
|
|
64
|
+
Phase 1 runs the Lightning Indexer (XLA) to select top-k tokens.
|
|
65
|
+
Phase 2 runs a tiled Pallas MLA kernel with the sparse mask applied.
|
|
66
|
+
|
|
67
|
+
Args:
|
|
68
|
+
query: Query tensor [batch, seq_len, q_heads, q_head_dim].
|
|
69
|
+
key_value: Compressed KV latent [batch, seq_len, kv_lora_rank].
|
|
70
|
+
w_kc: Key projection [kv_lora_rank, kv_heads, qk_nope_head_dim].
|
|
71
|
+
w_vc: Value projection [kv_lora_rank, kv_heads, v_head_dim].
|
|
72
|
+
query_index: Indexer queries [batch, seq_len, index_heads, index_head_dim].
|
|
73
|
+
key_index: Indexer keys [batch, seq_len, index_head_dim].
|
|
74
|
+
index_weights: Per-head weights [batch, seq_len, index_heads].
|
|
75
|
+
index_topk: Number of tokens to select (default: 2048).
|
|
76
|
+
softmax_scale: Attention scale (default: effective_head_dim^-0.5).
|
|
77
|
+
index_softmax_scale: Indexer scale (default: index_head_dim^-0.5).
|
|
78
|
+
b_q: Optional query RoPE [batch, seq_len, qk_rope_head_dim].
|
|
79
|
+
b_k: Optional key RoPE [batch, seq_len, qk_rope_head_dim].
|
|
80
|
+
causal: Whether to apply causal masking (default: True).
|
|
81
|
+
|
|
82
|
+
Returns:
|
|
83
|
+
Attention output [batch, seq_len, q_heads, v_head_dim].
|
|
84
|
+
"""
|
|
85
|
+
_batch, seq_q, q_heads, q_head_dim = query.shape
|
|
86
|
+
kv_len = key_value.shape[1]
|
|
87
|
+
kv_heads = int(w_kc.shape[1])
|
|
88
|
+
d_nope = int(w_kc.shape[2])
|
|
89
|
+
|
|
90
|
+
if q_heads % kv_heads != 0:
|
|
91
|
+
raise ValueError(f"q_heads ({q_heads}) must be divisible by kv_heads ({kv_heads}).")
|
|
92
|
+
|
|
93
|
+
if b_k is None:
|
|
94
|
+
rope_mode = ROPE_NONE
|
|
95
|
+
if q_head_dim != d_nope:
|
|
96
|
+
raise ValueError(f"No RoPE: query head_dim ({q_head_dim}) must equal d_nope ({d_nope}).")
|
|
97
|
+
effective_dim = d_nope
|
|
98
|
+
elif b_q is None:
|
|
99
|
+
rope_mode = ROPE_FUSED
|
|
100
|
+
rope_dim = int(b_k.shape[2])
|
|
101
|
+
if q_head_dim != d_nope + rope_dim:
|
|
102
|
+
raise ValueError(
|
|
103
|
+
f"Fused RoPE: query head_dim ({q_head_dim}) must equal d_nope+rope_dim ({d_nope + rope_dim})."
|
|
104
|
+
)
|
|
105
|
+
effective_dim = d_nope + rope_dim
|
|
106
|
+
else:
|
|
107
|
+
rope_mode = ROPE_DECOUPLED
|
|
108
|
+
rope_dim = int(b_k.shape[2])
|
|
109
|
+
if b_q.shape[2] != rope_dim:
|
|
110
|
+
raise ValueError(f"b_q/b_k rope_dim mismatch: {b_q.shape[2]} vs {rope_dim}.")
|
|
111
|
+
effective_dim = d_nope + rope_dim
|
|
112
|
+
|
|
113
|
+
if softmax_scale is None:
|
|
114
|
+
softmax_scale = 1.0 / math.sqrt(effective_dim)
|
|
115
|
+
|
|
116
|
+
if index_softmax_scale is None:
|
|
117
|
+
index_softmax_scale = float(query_index.shape[-1] ** -0.5)
|
|
118
|
+
|
|
119
|
+
topk_indices = _lightning_indexer(
|
|
120
|
+
query_index=query_index,
|
|
121
|
+
key_index=key_index,
|
|
122
|
+
index_weights=index_weights,
|
|
123
|
+
index_topk=index_topk,
|
|
124
|
+
softmax_scale=index_softmax_scale,
|
|
125
|
+
causal=causal,
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
sparse_mask = _build_sparse_mask(topk_indices, kv_len)
|
|
129
|
+
|
|
130
|
+
block_q = min(128, seq_q)
|
|
131
|
+
block_k = min(128, kv_len)
|
|
132
|
+
block_b = 1
|
|
133
|
+
|
|
134
|
+
while seq_q % block_q != 0 and block_q > 64:
|
|
135
|
+
block_q //= 2
|
|
136
|
+
while kv_len % block_k != 0 and block_k > 64:
|
|
137
|
+
block_k //= 2
|
|
138
|
+
|
|
139
|
+
q_t = query.transpose(0, 2, 1, 3)
|
|
140
|
+
w_kc_t = jnp.transpose(w_kc, (1, 0, 2))
|
|
141
|
+
w_vc_t = jnp.transpose(w_vc, (1, 0, 2))
|
|
142
|
+
|
|
143
|
+
o = deepseek_attn_pallas_impl(
|
|
144
|
+
q_t,
|
|
145
|
+
key_value,
|
|
146
|
+
w_kc_t,
|
|
147
|
+
w_vc_t,
|
|
148
|
+
b_q,
|
|
149
|
+
b_k,
|
|
150
|
+
sparse_mask,
|
|
151
|
+
rope_mode,
|
|
152
|
+
causal,
|
|
153
|
+
softmax_scale,
|
|
154
|
+
block_b,
|
|
155
|
+
block_q,
|
|
156
|
+
block_k,
|
|
157
|
+
)
|
|
158
|
+
|
|
159
|
+
return o.transpose(0, 2, 1, 3)
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# Copyright 2025 The EasyDeL/ejKernel Author @erfanzar (Erfan Zare Chavoshi).
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
"""Backward utilities for DeepSeek Sparse Attention on TPU Pallas."""
|
|
16
|
+
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
19
|
+
import jax.numpy as jnp
|
|
20
|
+
|
|
21
|
+
from ..flash_mla._pallas_impl_bwd import _flash_mla_bwd_impl
|
|
22
|
+
from ..flash_mla._utils import DEFAULT_MASK_VALUE
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _sparse_mask_to_bias(sparse_mask):
|
|
26
|
+
"""Convert a float keep-mask into an additive bias for Flash MLA backward.
|
|
27
|
+
|
|
28
|
+
Same logic as the forward ``_sparse_mask_to_bias`` — kept as a
|
|
29
|
+
separate copy to avoid a circular import between fwd and bwd modules.
|
|
30
|
+
|
|
31
|
+
Args:
|
|
32
|
+
sparse_mask: Float32 keep-mask [batch, seq_q, kv_len].
|
|
33
|
+
|
|
34
|
+
Returns:
|
|
35
|
+
Additive bias [batch, 1, seq_q, kv_len].
|
|
36
|
+
"""
|
|
37
|
+
mask_value = jnp.asarray(DEFAULT_MASK_VALUE, dtype=jnp.float32)
|
|
38
|
+
return jnp.where(sparse_mask[:, None, :, :] > 0.5, 0.0, mask_value)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def _deepseek_attn_bwd_impl(
|
|
42
|
+
rope_mode,
|
|
43
|
+
causal,
|
|
44
|
+
softmax_scale,
|
|
45
|
+
block_q,
|
|
46
|
+
block_k,
|
|
47
|
+
residuals,
|
|
48
|
+
do,
|
|
49
|
+
):
|
|
50
|
+
"""Compute DeepSeek TPU gradients using the Flash-MLA backward kernels.
|
|
51
|
+
|
|
52
|
+
Converts the keep-mask to an additive bias and delegates to
|
|
53
|
+
``_flash_mla_bwd_impl``. The bias gradient from Flash-MLA is
|
|
54
|
+
discarded and replaced with ``zeros_like(sparse_mask)`` because
|
|
55
|
+
the top-k selection is non-differentiable.
|
|
56
|
+
|
|
57
|
+
Args:
|
|
58
|
+
rope_mode: RoPE mode constant (ROPE_NONE/FUSED/DECOUPLED).
|
|
59
|
+
causal: Whether causal masking was applied.
|
|
60
|
+
softmax_scale: Attention scaling factor.
|
|
61
|
+
block_q: Query block size for the backward kernel.
|
|
62
|
+
block_k: Key block size for the backward kernel.
|
|
63
|
+
residuals: Tuple ``(q, kv_latent, w_kc, w_vc, b_q, b_k,
|
|
64
|
+
sparse_mask, o, l, m)`` saved during forward.
|
|
65
|
+
do: Upstream gradient of the attention output.
|
|
66
|
+
|
|
67
|
+
Returns:
|
|
68
|
+
Seven-element tuple of gradients: ``(dq, dkv_latent, dw_kc, dw_vc,
|
|
69
|
+
db_q, db_k, d_sparse_mask)`` where ``d_sparse_mask`` is always zeros.
|
|
70
|
+
"""
|
|
71
|
+
q, kv_latent, w_kc, w_vc, b_q, b_k, sparse_mask, o, l, m = residuals
|
|
72
|
+
bias = _sparse_mask_to_bias(sparse_mask)
|
|
73
|
+
|
|
74
|
+
dq, dkv_latent, dw_kc, dw_vc, db_q, db_k, _dbias = _flash_mla_bwd_impl(
|
|
75
|
+
rope_mode,
|
|
76
|
+
causal,
|
|
77
|
+
softmax_scale,
|
|
78
|
+
None,
|
|
79
|
+
None,
|
|
80
|
+
block_q,
|
|
81
|
+
block_k,
|
|
82
|
+
(q, kv_latent, w_kc, w_vc, b_q, b_k, bias, o, l, m),
|
|
83
|
+
do,
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
return (
|
|
87
|
+
dq,
|
|
88
|
+
dkv_latent,
|
|
89
|
+
dw_kc,
|
|
90
|
+
dw_vc,
|
|
91
|
+
db_q,
|
|
92
|
+
db_k,
|
|
93
|
+
jnp.zeros_like(sparse_mask),
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
__all__ = ("_deepseek_attn_bwd_impl",)
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
# Copyright 2025 The EasyDeL/ejKernel Author @erfanzar (Erfan Zare Chavoshi).
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
"""DeepSeek Sparse Attention forward pass and custom VJP wiring for TPU Pallas."""
|
|
16
|
+
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
19
|
+
import functools
|
|
20
|
+
|
|
21
|
+
import jax
|
|
22
|
+
import jax.numpy as jnp
|
|
23
|
+
|
|
24
|
+
from ..flash_mla._pallas_impl_fwd import _flash_mla_pallas_call
|
|
25
|
+
from ..flash_mla._utils import DEFAULT_MASK_VALUE
|
|
26
|
+
from ._pallas_impl_bwd import _deepseek_attn_bwd_impl
|
|
27
|
+
|
|
28
|
+
ROPE_NONE = 0
|
|
29
|
+
ROPE_FUSED = 1
|
|
30
|
+
ROPE_DECOUPLED = 2
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def _build_sparse_mask(
|
|
34
|
+
topk_indices: jnp.ndarray,
|
|
35
|
+
seq_len: int,
|
|
36
|
+
) -> jnp.ndarray:
|
|
37
|
+
"""Build a dense float32 keep-mask from top-k indices.
|
|
38
|
+
|
|
39
|
+
Sets 1.0 at each selected position and guarantees the diagonal
|
|
40
|
+
(self-attend) is always 1.0 regardless of the indexer output.
|
|
41
|
+
|
|
42
|
+
Args:
|
|
43
|
+
topk_indices: Token indices selected by the Lightning Indexer
|
|
44
|
+
[batch, seq_q, topk].
|
|
45
|
+
seq_len: Full KV sequence length (width of the output mask).
|
|
46
|
+
|
|
47
|
+
Returns:
|
|
48
|
+
Float32 mask [batch, seq_q, seq_len] with 1.0 at selected positions.
|
|
49
|
+
"""
|
|
50
|
+
batch, seq_q, _topk = topk_indices.shape
|
|
51
|
+
mask = jnp.zeros((batch, seq_q, seq_len), dtype=jnp.float32)
|
|
52
|
+
mask = mask.at[
|
|
53
|
+
jnp.arange(batch)[:, None, None],
|
|
54
|
+
jnp.arange(seq_q)[None, :, None],
|
|
55
|
+
topk_indices,
|
|
56
|
+
].set(1.0)
|
|
57
|
+
self_mask = jnp.eye(seq_len, dtype=jnp.float32)[None, :, :]
|
|
58
|
+
return jnp.maximum(mask, self_mask)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
def _sparse_mask_to_bias(sparse_mask: jnp.ndarray) -> jnp.ndarray:
|
|
62
|
+
"""Convert a float keep-mask into the additive bias Flash MLA expects.
|
|
63
|
+
|
|
64
|
+
Positions with mask > 0.5 get bias 0.0 (attend); positions with
|
|
65
|
+
mask <= 0.5 get ``DEFAULT_MASK_VALUE`` (masked out before softmax).
|
|
66
|
+
|
|
67
|
+
Args:
|
|
68
|
+
sparse_mask: Float32 keep-mask [batch, seq_q, kv_len].
|
|
69
|
+
|
|
70
|
+
Returns:
|
|
71
|
+
Additive bias [batch, 1, seq_q, kv_len] broadcastable over heads.
|
|
72
|
+
"""
|
|
73
|
+
mask_value = jnp.asarray(DEFAULT_MASK_VALUE, dtype=jnp.float32)
|
|
74
|
+
return jnp.where(sparse_mask[:, None, :, :] > 0.5, 0.0, mask_value)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
def _deepseek_attn_pallas_call(
|
|
78
|
+
q,
|
|
79
|
+
kv_latent,
|
|
80
|
+
w_kc,
|
|
81
|
+
w_vc,
|
|
82
|
+
b_q,
|
|
83
|
+
b_k,
|
|
84
|
+
sparse_mask,
|
|
85
|
+
*,
|
|
86
|
+
rope_mode,
|
|
87
|
+
causal,
|
|
88
|
+
softmax_scale,
|
|
89
|
+
block_b,
|
|
90
|
+
block_q,
|
|
91
|
+
block_k,
|
|
92
|
+
save_residuals: bool = False,
|
|
93
|
+
):
|
|
94
|
+
"""Run the DeepSeek TPU forward pass via the raw Flash-MLA Pallas call.
|
|
95
|
+
|
|
96
|
+
Converts the float keep-mask into an additive bias (with
|
|
97
|
+
``stop_gradient``) and delegates to ``_flash_mla_pallas_call``.
|
|
98
|
+
|
|
99
|
+
Args:
|
|
100
|
+
q: Query tensor [batch, q_heads, seq_q, q_head_dim].
|
|
101
|
+
kv_latent: Compressed KV latent [batch, kv_len, kv_lora_rank].
|
|
102
|
+
w_kc: Key projection [kv_heads, kv_lora_rank, d_nope].
|
|
103
|
+
w_vc: Value projection [kv_heads, kv_lora_rank, v_head_dim].
|
|
104
|
+
b_q: Optional query RoPE [batch, seq_q, rope_dim].
|
|
105
|
+
b_k: Optional key RoPE [batch, kv_len, rope_dim].
|
|
106
|
+
sparse_mask: Float32 keep-mask [batch, seq_q, kv_len].
|
|
107
|
+
rope_mode: RoPE mode constant (ROPE_NONE/FUSED/DECOUPLED).
|
|
108
|
+
causal: Whether to apply causal masking.
|
|
109
|
+
softmax_scale: Attention scaling factor.
|
|
110
|
+
block_b: Batch block size for Pallas grid.
|
|
111
|
+
block_q: Query block size for Pallas grid.
|
|
112
|
+
block_k: Key block size for Pallas grid.
|
|
113
|
+
save_residuals: If True, also return (logsumexp, max) for backward.
|
|
114
|
+
|
|
115
|
+
Returns:
|
|
116
|
+
Attention output, or (output, logsumexp, max) when ``save_residuals=True``.
|
|
117
|
+
"""
|
|
118
|
+
bias = _sparse_mask_to_bias(jax.lax.stop_gradient(sparse_mask))
|
|
119
|
+
return _flash_mla_pallas_call(
|
|
120
|
+
q,
|
|
121
|
+
kv_latent,
|
|
122
|
+
w_kc,
|
|
123
|
+
w_vc,
|
|
124
|
+
b_q,
|
|
125
|
+
b_k,
|
|
126
|
+
bias,
|
|
127
|
+
rope_mode=rope_mode,
|
|
128
|
+
causal=causal,
|
|
129
|
+
softmax_scale=softmax_scale,
|
|
130
|
+
sliding_window=None,
|
|
131
|
+
logits_soft_cap=None,
|
|
132
|
+
block_b=block_b,
|
|
133
|
+
block_q=block_q,
|
|
134
|
+
block_k=block_k,
|
|
135
|
+
save_residuals=save_residuals,
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
@functools.partial(jax.custom_vjp, nondiff_argnums=range(7, 13))
|
|
140
|
+
def deepseek_attn_pallas_impl(
|
|
141
|
+
q, # [batch, q_heads, seq_q, q_head_dim]
|
|
142
|
+
kv_latent, # [batch, kv_len, kv_lora_rank]
|
|
143
|
+
w_kc, # [kv_heads, kv_lora_rank, d_nope]
|
|
144
|
+
w_vc, # [kv_heads, kv_lora_rank, v_head_dim]
|
|
145
|
+
b_q, # [batch, seq_q, rope_dim] or None
|
|
146
|
+
b_k, # [batch, kv_len, rope_dim] or None
|
|
147
|
+
sparse_mask, # [batch, seq_q, kv_len] — float32, 1.0=selected
|
|
148
|
+
rope_mode,
|
|
149
|
+
causal,
|
|
150
|
+
softmax_scale,
|
|
151
|
+
block_b,
|
|
152
|
+
block_q,
|
|
153
|
+
block_k,
|
|
154
|
+
):
|
|
155
|
+
"""DeepSeek Sparse Attention forward with explicit TPU ``custom_vjp``.
|
|
156
|
+
|
|
157
|
+
Wraps ``_deepseek_attn_pallas_call`` so that the backward pass uses
|
|
158
|
+
the Flash-MLA Pallas backward kernels with the sparse bias.
|
|
159
|
+
|
|
160
|
+
Non-diff args (indices 7-12): ``rope_mode``, ``causal``,
|
|
161
|
+
``softmax_scale``, ``block_b``, ``block_q``, ``block_k``.
|
|
162
|
+
"""
|
|
163
|
+
return _deepseek_attn_pallas_call(
|
|
164
|
+
q,
|
|
165
|
+
kv_latent,
|
|
166
|
+
w_kc,
|
|
167
|
+
w_vc,
|
|
168
|
+
b_q,
|
|
169
|
+
b_k,
|
|
170
|
+
sparse_mask,
|
|
171
|
+
rope_mode=rope_mode,
|
|
172
|
+
causal=causal,
|
|
173
|
+
softmax_scale=softmax_scale,
|
|
174
|
+
block_b=block_b,
|
|
175
|
+
block_q=block_q,
|
|
176
|
+
block_k=block_k,
|
|
177
|
+
)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
def _deepseek_attn_fwd(
|
|
181
|
+
q,
|
|
182
|
+
kv_latent,
|
|
183
|
+
w_kc,
|
|
184
|
+
w_vc,
|
|
185
|
+
b_q,
|
|
186
|
+
b_k,
|
|
187
|
+
sparse_mask,
|
|
188
|
+
rope_mode,
|
|
189
|
+
causal,
|
|
190
|
+
softmax_scale,
|
|
191
|
+
block_b,
|
|
192
|
+
block_q,
|
|
193
|
+
block_k,
|
|
194
|
+
):
|
|
195
|
+
"""Forward rule for ``custom_vjp``: run raw forward and save residuals.
|
|
196
|
+
|
|
197
|
+
Saves ``(q, kv_latent, w_kc, w_vc, b_q, b_k, sparse_mask, o, l, m)``
|
|
198
|
+
where ``l`` and ``m`` are the per-row logsumexp and max from Flash-MLA.
|
|
199
|
+
"""
|
|
200
|
+
o, l, m = _deepseek_attn_pallas_call(
|
|
201
|
+
q,
|
|
202
|
+
kv_latent,
|
|
203
|
+
w_kc,
|
|
204
|
+
w_vc,
|
|
205
|
+
b_q,
|
|
206
|
+
b_k,
|
|
207
|
+
sparse_mask,
|
|
208
|
+
rope_mode=rope_mode,
|
|
209
|
+
causal=causal,
|
|
210
|
+
softmax_scale=softmax_scale,
|
|
211
|
+
block_b=block_b,
|
|
212
|
+
block_q=block_q,
|
|
213
|
+
block_k=block_k,
|
|
214
|
+
save_residuals=True,
|
|
215
|
+
)
|
|
216
|
+
residuals = (q, kv_latent, w_kc, w_vc, b_q, b_k, sparse_mask, o, l, m)
|
|
217
|
+
return o, residuals
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
def _deepseek_attn_bwd(
|
|
221
|
+
rope_mode,
|
|
222
|
+
causal,
|
|
223
|
+
softmax_scale,
|
|
224
|
+
block_b,
|
|
225
|
+
block_q,
|
|
226
|
+
block_k,
|
|
227
|
+
residuals,
|
|
228
|
+
do,
|
|
229
|
+
):
|
|
230
|
+
"""Backward rule for ``custom_vjp``.
|
|
231
|
+
|
|
232
|
+
Delegates to ``_deepseek_attn_bwd_impl`` which converts the sparse mask
|
|
233
|
+
back to an additive bias and calls the Flash-MLA backward kernels.
|
|
234
|
+
Returns gradients for all seven differentiable inputs; the sparse-mask
|
|
235
|
+
gradient is always zeros.
|
|
236
|
+
"""
|
|
237
|
+
del block_b
|
|
238
|
+
return _deepseek_attn_bwd_impl(
|
|
239
|
+
rope_mode,
|
|
240
|
+
causal,
|
|
241
|
+
softmax_scale,
|
|
242
|
+
block_q,
|
|
243
|
+
block_k,
|
|
244
|
+
residuals,
|
|
245
|
+
do,
|
|
246
|
+
)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
deepseek_attn_pallas_impl.defvjp(_deepseek_attn_fwd, _deepseek_attn_bwd)
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
__all__ = (
|
|
253
|
+
"ROPE_DECOUPLED",
|
|
254
|
+
"ROPE_FUSED",
|
|
255
|
+
"ROPE_NONE",
|
|
256
|
+
"_build_sparse_mask",
|
|
257
|
+
"_sparse_mask_to_bias",
|
|
258
|
+
"deepseek_attn_pallas_impl",
|
|
259
|
+
)
|
{ejkernel-0.0.72 → ejkernel-0.0.75}/ejkernel/kernels/_pallas/tpu/gated_delta_rule/_interface.py
RENAMED
|
@@ -36,7 +36,7 @@ def gated_delta_rule(
|
|
|
36
36
|
beta: Float[Array, "batch seq_len num_heads"],
|
|
37
37
|
decay: Float[Array, "batch seq_len num_heads"] | None = None,
|
|
38
38
|
*,
|
|
39
|
-
chunk_size: int =
|
|
39
|
+
chunk_size: int = 256,
|
|
40
40
|
initial_state: Float[Array, "batch num_heads qk_head_dim v_head_dim"] | None = None,
|
|
41
41
|
use_qk_l2norm: bool = True,
|
|
42
42
|
use_chunked: bool = True,
|