flashinfer-python 0.2.0.post1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/axpby.hpp +95 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/clear.hpp +64 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/cooperative_copy.hpp +333 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/cooperative_gemm.hpp +512 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/copy.hpp +382 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/fill.hpp +87 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/functional.hpp +290 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/gemm.hpp +500 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/prefer.hpp +46 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/prefetch.hpp +145 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/tensor_algorithms.hpp +166 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/algorithm/tuple_algorithms.hpp +1073 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/cluster_sm90.hpp +245 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/config.hpp +50 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/copy.hpp +107 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/copy_sm50.hpp +98 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/copy_sm75.hpp +236 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/copy_sm80.hpp +198 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/copy_sm90.hpp +219 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/copy_sm90_desc.hpp +422 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/copy_sm90_tma.hpp +1395 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/mma.hpp +64 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/mma_sm61.hpp +87 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/mma_sm70.hpp +329 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/mma_sm75.hpp +120 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/mma_sm80.hpp +2144 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/mma_sm90.hpp +5651 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/mma_sm90_desc.hpp +156 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma.hpp +50604 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/mma_sm90_gmma_sparse.hpp +53789 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/arch/util.hpp +320 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/copy_atom.hpp +764 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/copy_traits.hpp +159 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/copy_traits_sm50.hpp +75 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/copy_traits_sm75.hpp +143 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/copy_traits_sm80.hpp +194 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/copy_traits_sm90.hpp +132 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_im2col.hpp +940 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma.hpp +1525 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/copy_traits_sm90_tma_swizzle.hpp +93 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/mma_atom.hpp +1117 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/mma_traits.hpp +189 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/mma_traits_sm61.hpp +73 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/mma_traits_sm70.hpp +198 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/mma_traits_sm75.hpp +81 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/mma_traits_sm80.hpp +442 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/mma_traits_sm90.hpp +144 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma.hpp +20007 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/atom/mma_traits_sm90_gmma_sparse.hpp +16915 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/config.hpp +149 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/container/alignment.hpp +70 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/container/array.hpp +492 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/container/array_aligned.hpp +42 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/container/array_subbyte.hpp +637 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/container/bit_field.hpp +133 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/container/cuda_types.hpp +183 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/container/packed_tuple.hpp +254 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/container/tuple.hpp +744 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/container/type_list.hpp +124 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/int_tuple.hpp +864 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/layout.hpp +2058 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/layout_composed.hpp +652 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/numeric/arithmetic_tuple.hpp +556 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/numeric/complex.hpp +76 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/numeric/int.hpp +106 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/numeric/integer_sequence.hpp +151 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/numeric/integral_constant.hpp +503 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/numeric/integral_ratio.hpp +264 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/numeric/math.hpp +356 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/numeric/numeric_types.hpp +135 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/numeric/real.hpp +74 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/pointer.hpp +322 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/pointer_base.hpp +246 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/pointer_flagged.hpp +199 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/pointer_sparse.hpp +172 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/pointer_swizzle.hpp +168 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/stride.hpp +598 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/swizzle.hpp +498 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/swizzle_layout.hpp +584 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/tensor.hpp +58 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/tensor_impl.hpp +1193 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/tensor_predicate.hpp +78 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/tensor_zip.hpp +243 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/underscore.hpp +194 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/util/debug.hpp +164 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/util/print.hpp +199 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cute/util/type_traits.hpp +292 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/aligned_buffer.h +129 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/arch.h +109 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/barrier.h +630 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/cache_operation.h +66 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/config.h +81 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/grid_dependency_control.h +84 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/memory.h +602 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/memory_sm75.h +269 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/memory_sm80.h +472 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma.h +269 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sm50.h +432 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sm60.h +252 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sm61.h +142 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sm70.h +665 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sm75.h +793 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sm80.h +1505 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sm89.h +367 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sm90.h +245 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm80.h +1238 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/mma_sparse_sm89.h +409 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/reg_reconfig.h +67 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/simd.h +125 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/simd_sm60.h +104 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/simd_sm61.h +147 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/synclog.hpp +1324 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/wmma.h +223 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/wmma_sm70.h +136 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/wmma_sm72.h +210 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/arch/wmma_sm75.h +207 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/array.h +2614 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/array_planar_complex.h +89 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/array_subbyte.h +559 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/barrier.h +377 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/bfloat16.h +679 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/blas3.h +143 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/blas3_types.h +78 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/block_striped.h +267 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/cluster_launch.hpp +275 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/complex.h +823 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/constants.h +1239 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_common.inl +96 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/collective/builders/sm90_gmma_builder.inl +257 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/collective/collective_builder.hpp +93 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/collective/collective_conv.hpp +62 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/collective/detail.hpp +254 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/collective/sm90_implicit_gemm_gmma_ss_warpspecialized.hpp +663 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/conv2d_problem_size.h +654 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/conv3d_problem_size.h +513 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/convnd_problem_shape.hpp +561 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/convolution.h +194 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/detail.hpp +137 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/device/conv_universal_adapter.hpp +421 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/device/direct_convolution.h +270 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution.h +361 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/device/implicit_gemm_convolution_fusion.h +269 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/dispatch_policy.hpp +90 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/conv_universal.hpp +65 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d.h +322 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_dgrad.h +1927 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop.h +2007 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_fusion.h +357 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_absmax.h +127 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_broadcast.h +221 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_fprop_with_reduction.h +130 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_group_fprop.h +622 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad.h +1011 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv2d_wgrad_fusion.h +325 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_dgrad.h +736 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop.h +981 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_fusion.h +360 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_fprop_with_broadcast.h +222 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_conv3d_wgrad.h +936 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d.h +999 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv2d_with_broadcast.h +305 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d.h +541 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_deconv3d_with_broadcast.h +309 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/default_depthwise_fprop.h +588 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/direct_convolution.h +505 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution.h +455 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_fusion.h +461 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_strided_dgrad.h +492 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_absmax.h +494 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/implicit_gemm_convolution_with_fused_epilogue.h +499 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/kernel/sm90_implicit_gemm_tma_warpspecialized.hpp +76 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/thread/depthwise_mma.h +325 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_analytic.h +485 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_filter_tile_access_iterator_optimized.h +619 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_analytic.h +606 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_dgrad_output_gradient_tile_access_iterator_optimized.h +821 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_analytic.h +332 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_few_channels.h +360 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_fixed_channels.h +353 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_activation_tile_access_iterator_optimized.h +422 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_analytic.h +330 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_few_channels.h +289 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_fixed_channels.h +275 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_fprop_filter_tile_access_iterator_optimized.h +322 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_params.h +893 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_tile_iterator.h +337 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_analytic.h +285 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_activation_tile_access_iterator_optimized.h +321 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_analytic.h +260 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv2d_wgrad_output_gradient_tile_access_iterator_optimized.h +310 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_analytic.h +268 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_filter_tile_access_iterator_optimized.h +289 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_analytic.h +343 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_dgrad_output_gradient_tile_access_iterator_optimized.h +489 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_analytic.h +291 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_activation_tile_access_iterator_optimized.h +478 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_analytic.h +259 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_fprop_filter_tile_access_iterator_optimized.h +279 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_params.h +508 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_analytic.h +289 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_activation_tile_access_iterator_optimized.h +319 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_analytic.h +267 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/conv3d_wgrad_output_gradient_tile_access_iterator_optimized.h +310 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_direct_conv_params.h +230 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_fixed_stride_dilation.h +314 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_activation_tile_access_iterator_direct_conv_optimized.h +291 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_direct_conv_multistage.h +551 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_filter_tile_access_iterator_direct_conv_optimized.h +261 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_fprop_pipelined.h +336 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_base.h +229 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/depthwise_mma_core_with_lane_access_size.h +952 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_fprop_fusion_multistage.h +802 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_multistage.h +539 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_pipelined.h +320 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/implicit_gemm_wgrad_fusion_multistage.h +729 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_access_iterator.h +470 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/predicated_scale_bias_vector_iterator.h +371 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/threadblock/threadblock_swizzle.h +193 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt.h +380 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/warp/mma_depthwise_simt_tile_iterator.h +862 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/conv/warp/scale_bias_relu_transform.h +221 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/coord.h +480 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/core_io.h +286 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/cuda_host_adapter.hpp +407 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/cutlass.h +160 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/detail/collective.hpp +63 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/detail/dependent_false.hpp +86 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/detail/helper_macros.hpp +205 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/detail/layout.hpp +392 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/detail/mma.hpp +71 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/device_kernel.h +125 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_builder.inl +812 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/builders/sm90_common.inl +80 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_builder.hpp +120 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/collective_epilogue.hpp +71 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue.hpp +242 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/default_epilogue_array.hpp +273 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/detail.hpp +492 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/epilogue_tensor_broadcast.hpp +271 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized.hpp +549 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/sm70_epilogue_vectorized_array.hpp +412 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_array_tma_warpspecialized.hpp +1198 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized.hpp +894 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/collective/sm90_epilogue_tma_warpspecialized_bias_elementwise.hpp +164 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/dispatch_policy.hpp +195 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/fusion/callbacks.hpp +89 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/fusion/operations.hpp +351 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_callbacks_tma_warpspecialized.hpp +1787 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_compute_tma_warpspecialized.hpp +839 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_load_tma_warpspecialized.hpp +1415 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_store_tma_warpspecialized.hpp +1729 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_tma_warpspecialized.hpp +1139 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/fusion/sm90_visitor_topk_softmax.hpp +759 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/activation.h +758 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/conversion_op.h +132 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/detail.hpp +52 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination.h +523 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_elementwise.h +524 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_bias_relu.h +610 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_clamp.h +685 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_dgelu.h +250 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_drelu.h +452 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_gelu.h +70 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic.h +265 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_generic_with_scaling.h +325 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_hardswish.h +69 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_leaky_relu.h +231 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_params.h +75 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_planar_complex.h +236 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu.h +572 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_relu0.h +543 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_residual_block.h +301 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_sigmoid.h +70 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_silu.h +69 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_tensor_broadcast.hpp +253 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/linear_combination_with_elementwise.h +234 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/reduction_op.h +97 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/thread/scale_type.h +66 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op.h +255 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_complex_tensor_op_blas3.h +264 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_direct_store.h +74 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_planar_complex.h +241 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_simt.h +443 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op.h +904 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_tensor_op_blas3.h +175 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_volta_tensor_op.h +337 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_absmax.h +126 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_broadcast.h +376 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_with_reduction.h +177 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_epilogue_wmma_tensor_op.h +165 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_simt.h +127 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_tensor_op.h +208 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_volta_tensor_op.h +228 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/default_thread_map_wmma_tensor_op.h +113 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/direct_store_epilogue_iterator.h +142 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue.h +543 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base.h +240 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_base_streamk.h +197 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_depthwise.h +335 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_direct_store.h +347 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_gemm_k_reduction.h +212 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_planar_complex.h +401 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_smem_accumulator.h +230 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_streamk_with_broadcast.h +443 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_visitor_with_softmax.h +513 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_absmax.h +923 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_broadcast.h +1718 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_reduction.h +823 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor.h +409 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_with_visitor_callbacks.h +504 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/epilogue_workspace.h +197 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_2x.hpp +433 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_compute.hpp +109 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_load.hpp +583 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitor_store.hpp +805 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/fusion/visitors.hpp +38 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/interleaved_epilogue.h +407 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_iterator_parameter.h +223 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/output_tile_thread_map.h +628 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator.h +1387 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine.h +615 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_affine_layout_params.h +156 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_blas3.h +633 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_conv.h +562 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_direct_conv.h +445 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_params.h +483 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_predicates.h +309 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/predicated_tile_iterator_strided_dgrad.h +479 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator.h +223 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_mixed.h +594 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/threadblock/shared_load_iterator_pitch_linear.h +194 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_complex_tensor_op.h +187 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_gaussian_complex_tensor_op.h +194 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_simt.h +164 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_tensor_op.h +378 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_volta_tensor_op.h +269 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/fragment_iterator_wmma_tensor_op.h +164 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/simt_policy.h +107 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/tensor_op_policy.h +189 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_simt.h +785 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op.h +671 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_tensor_op_mixed.h +1081 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_volta_tensor_op.h +440 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/tile_iterator_wmma_tensor_op.h +227 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/volta_tensor_op_policy.h +195 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/epilogue/warp/wmma_tensor_op_policy.h +101 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/fast_math.h +1067 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/float8.h +1284 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/floating_point_nvrtc.h +98 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/functional.h +930 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_common.inl +419 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_gmma_builder.inl +1038 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_config.inl +268 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/builders/sm90_sparse_gmma_builder.inl +388 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder.hpp +42 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/collective_builder_decl.hpp +88 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma.hpp +49 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/collective_mma_decl.hpp +64 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/fp8_accumulation.hpp +121 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm70_mma_twostage.hpp +597 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm80_mma_multistage.hpp +707 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_array_tma_gmma_ss_warpspecialized.hpp +761 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_rs_warpspecialized.hpp +677 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_multistage_gmma_ss_warpspecialized.hpp +509 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized.hpp +752 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_rs_warpspecialized_mixed_input.hpp +1529 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss.hpp +539 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized.hpp +582 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_mma_tma_gmma_ss_warpspecialized_fp8.hpp +584 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/collective/sm90_sparse_mma_tma_gmma_ss_warpspecialized.hpp +724 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/base_grouped.h +478 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/default_gemm_configuration.h +955 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/ell_gemm.h +849 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm.h +772 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_array.h +738 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_batched.h +704 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_complex.h +718 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_grouped.h +61 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_layernorm_mainloop_fusion.h +385 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse.h +515 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal.h +211 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_universal_with_absmax.h +202 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_absmax.h +360 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_sparse_with_visitor.h +342 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_splitk_parallel.h +636 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal.h +442 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_adapter.h +693 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_base.h +522 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_streamk_with_broadcast.h +386 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_absmax.h +404 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_universal_with_broadcast.h +386 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemm_with_k_reduction.h +415 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/gemv.h +182 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k.h +548 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/rank_2k_grouped.h +63 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/rank_k.h +510 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/symm.h +603 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/device/trmm.h +759 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/dispatch_policy.hpp +324 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/gemm.h +133 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/gemm_enumerated_types.h +80 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/group_array_problem_shape.hpp +123 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_ell_gemm.h +837 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm.h +1189 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_complex.h +404 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped.h +384 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_grouped_softmax_mainloop_fusion.h +164 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_layernorm_mainloop_fusion.h +137 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_planar_complex_universal.h +352 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse.h +252 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal.h +141 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_universal_with_absmax.h +144 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_absmax.h +157 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_sparse_with_visitor.h +197 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_splitk_parallel.h +136 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_streamk_with_broadcast.h +146 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal.h +396 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_universal_with_visitor.h +157 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_absmax.h +143 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_broadcast.h +243 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_k_reduction.h +150 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemm_with_reduction.h +246 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_gemv.h +132 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k.h +285 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_complex.h +498 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_grouped.h +355 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_2k_universal.h +346 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k.h +247 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_complex.h +429 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_rank_k_universal.h +305 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm.h +321 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_complex.h +508 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_symm_universal.h +342 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm.h +269 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_complex.h +265 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/default_trmm_universal.h +359 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/ell_gemm.h +824 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm.h +380 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_array.h +264 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_batched.h +273 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped.h +457 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_problem_visitor.h +121 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_grouped_softmax_mainloop_fusion.h +481 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_layernorm_mainloop_fusion.h +782 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_params.h +189 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_pipelined.h +158 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex.h +715 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_planar_complex_array.h +609 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal.h +804 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_sparse_universal_with_absmax.h +609 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_splitk_parallel.h +253 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_streamk_with_fused_epilogue.h +2396 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_transpose_operands.h +124 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.h +702 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal.hpp +66 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_decl.h +61 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_streamk.h +1168 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor.h +321 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_universal_with_visitor_streamk.h +895 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_absmax.h +759 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_fused_epilogue.h +1512 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemm_with_k_reduction.h +704 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv.h +638 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/gemv_batched_strided.h +244 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/grouped_problem_visitor.h +463 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/params_sparse_base.h +115 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/params_universal_base.h +264 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped.h +688 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_grouped_problem_visitor.h +376 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_transpose_operands.h +129 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_2k_universal.h +769 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/rank_k_universal.h +556 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm70_gemm.hpp +270 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_cooperative.hpp +883 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_array_tma_warpspecialized_pingpong.hpp +948 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma.hpp +306 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized.hpp +522 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_cooperative.hpp +671 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_tma_warpspecialized_pingpong.hpp +664 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized.hpp +417 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_cooperative.hpp +504 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_gemm_warpspecialized_pingpong.hpp +516 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler.hpp +139 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_group.hpp +510 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sm90_tile_scheduler_stream_k.hpp +945 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm.h +394 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_absmax.h +509 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/sparse_gemm_with_visitor.h +238 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/static_tile_scheduler.hpp +492 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/symm_universal.h +675 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler.hpp +149 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/tile_scheduler_params.h +1535 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/kernel/trmm_universal.h +580 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/thread/mma.h +90 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm50.h +538 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm60.h +1161 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/thread/mma_sm61.h +284 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_ell_mma.h +734 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_gemv_core.h +151 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma.h +823 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core.h +116 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_simt.h +1723 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm70.h +682 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm75.h +1315 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sm80.h +2951 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_sparse_sm80.h +876 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_access_size.h +328 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_with_reduction.h +167 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_core_wmma.h +712 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_layernorm_mainloop_fusion.h +178 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_multistage.h +136 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_planar_complex_pipelined.h +130 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_softmax_mainloop_fusion.h +160 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_mma_with_reduction.h +141 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex.h +159 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core.h +119 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_mma_complex_core_sm80.h +1808 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_multistage_trmm_complex.h +556 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_sparse_mma.h +196 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/default_trmm.h +445 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_multistage.h +648 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/ell_mma_pipelined.h +376 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/gemv.h +147 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/index_remat.h +107 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_base.h +236 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_blas3_multistage.h +707 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_layernorm_mainloop_fusion_multistage.h +863 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_multistage.h +741 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_pipelined.h +439 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_base.h +208 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_multistage.h +646 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_planar_complex_pipelined.h +424 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_singlestage.h +265 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_softmax_mainloop_fusion_multistage.h +756 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_base.h +273 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_sparse_multistage.h +668 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/mma_with_reduction_multistage.h +545 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle.h +459 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/threadblock/threadblock_swizzle_streamk.h +801 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_complex_tensor_op.h +612 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_sparse_tensor_op.h +165 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op.h +123 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_tensor_op_sm80.h +375 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_with_reduction_tensor_op.h +92 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/default_mma_wmma_tensor_op.h +130 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/layernorm_scale_bias_transform.h +139 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma.h +60 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op.h +1168 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_fast_f32.h +663 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_complex_tensor_op_tile_iterator_sm80.h +2485 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op.h +642 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_gaussian_complex_tensor_op_tile_iterator_sm80.h +390 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_mixed_input_tensor_op.h +566 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_planar_complex.h +182 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt.h +263 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_policy.h +69 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_simt_tile_iterator.h +1890 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_sparse_tensor_op.h +382 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op.h +415 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fast_f32.h +471 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_fragment_iterator.h +559 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_policy.h +65 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_sm70.h +280 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_access_iterator.h +362 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator.h +4793 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm70.h +3098 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sm80.h +2441 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_sparse.h +380 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_tile_iterator_wmma.h +805 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_tensor_op_wmma.h +223 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/mma_with_reduction_tensor_op.h +449 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/scale_bias_tile_iterator.h +572 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/softmax_scale_bias_transform.h +117 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm/warp/tile_iterator_planar_complex.h +250 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm_coord.h +394 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/gemm_coord.hpp +66 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/half.h +930 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/integer_subbyte.h +280 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/kernel_hardware_info.h +76 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/kernel_hardware_info.hpp +35 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/kernel_launch.h +141 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/layout/layout.h +64 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/layout/matrix.h +1349 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/layout/permute.h +828 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/layout/pitch_linear.h +149 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/layout/tensor.h +648 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm70.h +1044 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm75.h +1169 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/layout/tensor_op_multiplicand_sm80.h +1139 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/layout/vector.h +105 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/matrix.h +14129 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/matrix_coord.h +164 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/matrix_shape.h +65 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/numeric_conversion.h +4547 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/numeric_size.h +83 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/numeric_types.h +88 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/pipeline/pipeline.hpp +36 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/pipeline/sm90_pipeline.hpp +1173 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/pitch_linear_coord.h +181 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/platform/platform.h +913 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/predicate_vector.h +547 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/quaternion.h +752 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/real.h +61 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/device/reduce_split_k.h +232 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce.h +264 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_contiguous.h +374 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/device/tensor_reduce_affine_strided.h +362 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_softmax_final.h +267 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/kernel/reduce_split_k.h +248 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_contiguous.h +606 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/kernel/tensor_reduce_affine_strided.h +641 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/thread/reduce.h +234 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/thread/reduction_operators.h +235 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/reduction/threadblock_swizzle.h +67 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/relatively_equal.h +275 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/semaphore.h +118 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/subbyte_reference.h +1388 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/tensor_coord.h +326 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/tensor_ref.h +419 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/tensor_ref_planar_complex.h +374 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/tensor_view.h +297 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/tensor_view_planar_complex.h +301 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/tfloat32.h +478 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/thread/matrix.h +198 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/trace.h +59 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/collective/sm90_wgmma_transpose.hpp +754 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/device/transform_universal_adapter.hpp +303 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/kernel/filter_format_transformer.hpp +223 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/kernel/sm90_sparse_gemm_compressor.hpp +578 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/kernel/sparse_gemm_compressor.hpp +284 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/pitch_linear_thread_map.h +926 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/thread/transpose.h +107 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/thread/unary_op.h +105 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_iterator.h +199 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_access_iterator.h +1350 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/ell_predicated_tile_iterator.h +1315 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_access_iterator.h +375 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_scale_bias_vector_iterator.h +328 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator.h +2118 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_2dthreadtile.h +834 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_params.h +290 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_access_iterator_triangular_matrix.h +892 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator.h +1887 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_2dthreadtile.h +787 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_tile_iterator_triangular_matrix.h +818 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/predicated_vector_access_iterator.h +417 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_scale_bias_vector_access_iterator.h +253 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator.h +58 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear.h +408 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_pitch_linear_direct_conv.h +587 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op.h +821 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_access_iterator_tensor_op_sm80.h +1532 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator.h +62 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear.h +552 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_pitch_linear_2dthreadtile.h +509 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op.h +1107 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/regular_tile_iterator_tensor_op_sm70.h +1460 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/threadblock/vector_iterator.h +149 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/transform/warp/vector_fragment_iterator.h +283 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/uint128.h +270 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/version.h +80 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/wmma_array.h +133 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/include/cutlass/workspace.h +150 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/GPU_Clock.hpp +67 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/command_line.h +313 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/cublas_wrappers.hpp +526 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/debug.h +143 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_dump.h +187 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_groupnorm.h +402 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_layernorm.h +644 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_memory.h +377 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_nchw_to_nhwc.h +141 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_padding.h +276 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_pooling.h +576 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_nhwc_to_nchw.h +144 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_rmsnorm.h +186 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/device_utils.h +127 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/distribution.h +154 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/exceptions.h +69 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/gett_commandline.hpp +369 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/helper_cuda.hpp +116 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/host_reorder.h +111 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor.h +541 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/host_tensor_planar_complex.h +591 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/host_uncompress.h +157 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/index_sequence.h +38 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/packed_stride.hpp +570 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/print_error.hpp +341 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/inner_product.h +135 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/detail/linear_to_coordinate.h +94 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/convolution.h +1549 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm.h +385 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_complex.h +350 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gemm_planar_complex.h +311 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/gett.hpp +146 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/gemm.h +162 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_elementwise.h +168 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/kernel/tensor_foreach.h +159 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/rank_2k_complex.h +355 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_compare.h +246 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_fill.h +2077 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_foreach.h +144 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_reduce.h +510 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/tensor_relu.h +141 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/device/thread/gemm.h +186 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/conv.hpp +698 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/convolution.h +802 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/error_metrics.h +66 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm.h +531 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_complex.h +210 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gemm_planar_complex.h +228 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/gett.hpp +538 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k.h +261 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_2k_complex.h +318 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/rank_k_complex.h +234 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm.h +285 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/symm_complex.h +319 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.h +423 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_compare.hpp +101 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_copy.h +256 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_elementwise.h +341 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.h +1718 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_fill.hpp +432 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_foreach.h +134 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_norm.h +42 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.h +203 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/tensor_reduce.hpp +203 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm.h +215 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/reference/host/trmm_complex.h +262 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/tensor_view_io.h +270 -0
- flashinfer_python-0.2.0.post1/3rdparty/cutlass/tools/util/include/cutlass/util/type_traits.h +238 -0
- flashinfer_python-0.2.0.post1/LICENSE +223 -0
- flashinfer_python-0.2.0.post1/PKG-INFO +182 -0
- flashinfer_python-0.2.0.post1/README.md +169 -0
- flashinfer_python-0.2.0.post1/csrc/activation.cu +81 -0
- flashinfer_python-0.2.0.post1/csrc/aot_extension_utils.h +46 -0
- flashinfer_python-0.2.0.post1/csrc/batch_decode.cu +196 -0
- flashinfer_python-0.2.0.post1/csrc/batch_prefill.cu +321 -0
- flashinfer_python-0.2.0.post1/csrc/batch_prefill_sm90.cu +291 -0
- flashinfer_python-0.2.0.post1/csrc/bmm_fp8.cu +62 -0
- flashinfer_python-0.2.0.post1/csrc/cascade.cu +131 -0
- flashinfer_python-0.2.0.post1/csrc/flashinfer_cascade_ops.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/flashinfer_gemm_ops.cu +29 -0
- flashinfer_python-0.2.0.post1/csrc/flashinfer_norm_ops.cu +36 -0
- flashinfer_python-0.2.0.post1/csrc/flashinfer_ops.cu +275 -0
- flashinfer_python-0.2.0.post1/csrc/flashinfer_ops_sm90.cu +65 -0
- flashinfer_python-0.2.0.post1/csrc/flashinfer_page_ops.cu +35 -0
- flashinfer_python-0.2.0.post1/csrc/flashinfer_quantization_ops.cu +26 -0
- flashinfer_python-0.2.0.post1/csrc/flashinfer_rope_ops.cu +51 -0
- flashinfer_python-0.2.0.post1/csrc/flashinfer_sampling_ops.cu +72 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_128_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_128_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_128_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_128_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_128_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_128_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_128_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_128_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_256_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_256_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_256_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_256_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_256_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_256_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_256_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_256_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_64_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_64_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_64_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_64_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_64_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_64_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_64_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_decode_head_64_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +28 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_paged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +84 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32.cu +46 -0
- flashinfer_python-0.2.0.post1/csrc/generated/batch_ragged_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_idtype_i32_sm90.cu +77 -0
- flashinfer_python-0.2.0.post1/csrc/generated/dispatch.inc +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_128_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_128_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_128_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_128_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_128_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_128_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_128_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_128_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_256_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_256_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_256_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_256_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_256_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_256_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_256_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_256_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_64_posenc_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_64_posenc_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_64_posenc_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_64_posenc_0_dtypeq_e4m3_dtypekv_e4m3_dtypeout_e4m3.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_64_posenc_0_dtypeq_e5m2_dtypekv_e5m2_dtypeout_e5m2.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_64_posenc_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_64_posenc_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_decode_head_64_posenc_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +19 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_128_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_256_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_0_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_1_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_bf16_dtypeout_bf16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e4m3_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_bf16_dtypekv_e5m2_dtypeout_bf16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e4m3_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_e5m2_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16.cu +20 -0
- flashinfer_python-0.2.0.post1/csrc/generated/single_prefill_head_64_posenc_0_fp16qkred_0_mask_2_dtypeq_f16_dtypekv_f16_dtypeout_f16_sm90.cu +32 -0
- flashinfer_python-0.2.0.post1/csrc/group_gemm.cu +40 -0
- flashinfer_python-0.2.0.post1/csrc/group_gemm_sm90.cu +45 -0
- flashinfer_python-0.2.0.post1/csrc/norm.cu +127 -0
- flashinfer_python-0.2.0.post1/csrc/page.cu +139 -0
- flashinfer_python-0.2.0.post1/csrc/pytorch_extension_utils.h +183 -0
- flashinfer_python-0.2.0.post1/csrc/quantization.cu +55 -0
- flashinfer_python-0.2.0.post1/csrc/renorm.cu +79 -0
- flashinfer_python-0.2.0.post1/csrc/rope.cu +245 -0
- flashinfer_python-0.2.0.post1/csrc/runtime_utils.h +18 -0
- flashinfer_python-0.2.0.post1/csrc/sampling.cu +185 -0
- flashinfer_python-0.2.0.post1/csrc/single_decode.cu +100 -0
- flashinfer_python-0.2.0.post1/csrc/single_prefill.cu +113 -0
- flashinfer_python-0.2.0.post1/csrc/single_prefill_sm90.cu +114 -0
- flashinfer_python-0.2.0.post1/custom_backend.py +41 -0
- flashinfer_python-0.2.0.post1/flashinfer/__init__.py +91 -0
- flashinfer_python-0.2.0.post1/flashinfer/_build_meta.py +1 -0
- flashinfer_python-0.2.0.post1/flashinfer/activation.py +192 -0
- flashinfer_python-0.2.0.post1/flashinfer/cascade.py +1083 -0
- flashinfer_python-0.2.0.post1/flashinfer/decode.py +1413 -0
- flashinfer_python-0.2.0.post1/flashinfer/gemm.py +738 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/__init__.py +50 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/activation.py +74 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/aot_config.py +1 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/attention.py +800 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/batch_decode_mla_templ.py +189 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/batch_decode_templ.py +205 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/batch_prefill_sm90_templ.py +968 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/batch_prefill_templ.py +491 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/core.py +125 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/env.py +49 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/single_decode_templ.py +205 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/single_prefill_sm90_templ.py +349 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/single_prefill_templ.py +331 -0
- flashinfer_python-0.2.0.post1/flashinfer/jit/utils.py +101 -0
- flashinfer_python-0.2.0.post1/flashinfer/norm.py +212 -0
- flashinfer_python-0.2.0.post1/flashinfer/page.py +371 -0
- flashinfer_python-0.2.0.post1/flashinfer/prefill.py +2736 -0
- flashinfer_python-0.2.0.post1/flashinfer/py.typed +0 -0
- flashinfer_python-0.2.0.post1/flashinfer/quantization.py +155 -0
- flashinfer_python-0.2.0.post1/flashinfer/rope.py +1101 -0
- flashinfer_python-0.2.0.post1/flashinfer/sampling.py +1225 -0
- flashinfer_python-0.2.0.post1/flashinfer/sparse.py +610 -0
- flashinfer_python-0.2.0.post1/flashinfer/triton/__init__.py +1 -0
- flashinfer_python-0.2.0.post1/flashinfer/triton/activation.py +57 -0
- flashinfer_python-0.2.0.post1/flashinfer/triton/cascade.py +152 -0
- flashinfer_python-0.2.0.post1/flashinfer/triton/kernels/__init__.py +0 -0
- flashinfer_python-0.2.0.post1/flashinfer/triton/kernels/activation.py +64 -0
- flashinfer_python-0.2.0.post1/flashinfer/triton/kernels/cascade.py +159 -0
- flashinfer_python-0.2.0.post1/flashinfer/triton/kernels/quant.py +27 -0
- flashinfer_python-0.2.0.post1/flashinfer/triton/utils.py +28 -0
- flashinfer_python-0.2.0.post1/flashinfer/utils.py +364 -0
- flashinfer_python-0.2.0.post1/flashinfer_python.egg-info/PKG-INFO +182 -0
- flashinfer_python-0.2.0.post1/flashinfer_python.egg-info/SOURCES.txt +1148 -0
- flashinfer_python-0.2.0.post1/flashinfer_python.egg-info/dependency_links.txt +1 -0
- flashinfer_python-0.2.0.post1/flashinfer_python.egg-info/requires.txt +2 -0
- flashinfer_python-0.2.0.post1/flashinfer_python.egg-info/top_level.txt +1 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/activation.cuh +61 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/allocator.h +62 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/cascade.cuh +721 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/decode.cuh +1099 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/decode_params.cuh +234 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/heap.h +64 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/attention_updater.cuh +259 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/block_sparse_gather.cuh +196 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/epilogue.cuh +259 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/kernel_traits.cuh +120 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/mainloop.cuh +266 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/mainloop_mma.cuh +262 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/named_barrier.cuh +112 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/params.cuh +155 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/prefill_sm90.cuh +536 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/sparse_mainloop.cuh +327 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/tile_scheduler.cuh +306 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/utils.cuh +165 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/hopper/variants.cuh +75 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/mask.cuh +29 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/prefill.cuh +2317 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/prefill_params.cuh +287 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/scheduler.cuh +929 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/state.cuh +83 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention/variants.cuh +294 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/attention_impl.cuh +26 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/cp_async.cuh +187 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/cutlass_utils.cuh +80 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/distributed/all_reduce.cuh +247 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/exception.h +48 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/fastdiv.cuh +109 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/frag_layout_swizzle.cuh +41 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/gemm/bmm_fp8.cuh +203 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/gemm/group_gemm.cuh +99 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/gemm/group_gemm_lora.cuh +29 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/gemm/group_gemm_sm90.cuh +160 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/gemm/group_gemv.cuh +29 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/layout.cuh +128 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/math.cuh +156 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/mma.cuh +705 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/norm.cuh +270 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/page.cuh +566 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/permuted_smem.cuh +174 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/pos_enc.cuh +810 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/quantization.cuh +114 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/sampling.cuh +1408 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/utils.cuh +324 -0
- flashinfer_python-0.2.0.post1/include/flashinfer/vec_dtypes.cuh +1393 -0
- flashinfer_python-0.2.0.post1/pyproject.toml +64 -0
- flashinfer_python-0.2.0.post1/setup.cfg +4 -0
- flashinfer_python-0.2.0.post1/setup.py +250 -0
- flashinfer_python-0.2.0.post1/tests/test_activation.py +53 -0
- flashinfer_python-0.2.0.post1/tests/test_alibi.py +106 -0
- flashinfer_python-0.2.0.post1/tests/test_batch_decode_kernels.py +582 -0
- flashinfer_python-0.2.0.post1/tests/test_batch_prefill_kernels.py +732 -0
- flashinfer_python-0.2.0.post1/tests/test_block_sparse.py +129 -0
- flashinfer_python-0.2.0.post1/tests/test_block_sparse_indices_to_vector_sparse_offsets.py +84 -0
- flashinfer_python-0.2.0.post1/tests/test_bmm_fp8.py +42 -0
- flashinfer_python-0.2.0.post1/tests/test_decode_fp8_calibration_scale.py +162 -0
- flashinfer_python-0.2.0.post1/tests/test_decode_prefill_lse.py +77 -0
- flashinfer_python-0.2.0.post1/tests/test_fp8_prefill.py +200 -0
- flashinfer_python-0.2.0.post1/tests/test_group_gemm.py +111 -0
- flashinfer_python-0.2.0.post1/tests/test_hopper.py +219 -0
- flashinfer_python-0.2.0.post1/tests/test_jit_example.py +393 -0
- flashinfer_python-0.2.0.post1/tests/test_jit_warmup.py +113 -0
- flashinfer_python-0.2.0.post1/tests/test_logits_cap.py +110 -0
- flashinfer_python-0.2.0.post1/tests/test_mla_decode_kernel.py +463 -0
- flashinfer_python-0.2.0.post1/tests/test_non_contiguous_decode.py +107 -0
- flashinfer_python-0.2.0.post1/tests/test_non_contiguous_prefill.py +206 -0
- flashinfer_python-0.2.0.post1/tests/test_norm.py +144 -0
- flashinfer_python-0.2.0.post1/tests/test_page.py +57 -0
- flashinfer_python-0.2.0.post1/tests/test_quantization.py +63 -0
- flashinfer_python-0.2.0.post1/tests/test_rope.py +353 -0
- flashinfer_python-0.2.0.post1/tests/test_sampling.py +397 -0
- flashinfer_python-0.2.0.post1/tests/test_shared_prefix_kernels.py +322 -0
- flashinfer_python-0.2.0.post1/tests/test_sliding_window.py +379 -0
- flashinfer_python-0.2.0.post1/tests/test_tensor_cores_decode.py +274 -0
- flashinfer_python-0.2.0.post1/tests/test_triton_cascade.py +81 -0
- flashinfer_python-0.2.0.post1/version.txt +1 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/***************************************************************************************************
|
|
2
|
+
* Copyright (c) 2023 - 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
*
|
|
11
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
* this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
* and/or other materials provided with the distribution.
|
|
14
|
+
*
|
|
15
|
+
* 3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
* contributors may be used to endorse or promote products derived from
|
|
17
|
+
* this software without specific prior written permission.
|
|
18
|
+
*
|
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29
|
+
*
|
|
30
|
+
**************************************************************************************************/
|
|
31
|
+
#pragma once
|
|
32
|
+
|
|
33
|
+
#include <cute/config.hpp>
|
|
34
|
+
|
|
35
|
+
#include <cute/tensor_impl.hpp>
|
|
36
|
+
#include <cute/tensor_predicate.hpp>
|
|
37
|
+
|
|
38
|
+
namespace cute
|
|
39
|
+
{
|
|
40
|
+
|
|
41
|
+
//
|
|
42
|
+
// Accept mutable temporaries
|
|
43
|
+
//
|
|
44
|
+
template <class Alpha,
|
|
45
|
+
class XEngine, class XLayout,
|
|
46
|
+
class Beta,
|
|
47
|
+
class YEngine, class YLayout,
|
|
48
|
+
class PrdTensor = TrivialPredTensor>
|
|
49
|
+
CUTE_HOST_DEVICE
|
|
50
|
+
void
|
|
51
|
+
axpby(Alpha const& alpha,
|
|
52
|
+
Tensor<XEngine, XLayout> const& x,
|
|
53
|
+
Beta const& beta,
|
|
54
|
+
Tensor<YEngine, YLayout> && y,
|
|
55
|
+
PrdTensor const& p = {})
|
|
56
|
+
{
|
|
57
|
+
return axpby(alpha, x, beta, y, p);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
//
|
|
61
|
+
// AXPBY
|
|
62
|
+
//
|
|
63
|
+
template <class Alpha,
|
|
64
|
+
class XEngine, class XLayout,
|
|
65
|
+
class Beta,
|
|
66
|
+
class YEngine, class YLayout,
|
|
67
|
+
class PrdTensor = TrivialPredTensor>
|
|
68
|
+
CUTE_HOST_DEVICE
|
|
69
|
+
void
|
|
70
|
+
axpby(Alpha const& alpha,
|
|
71
|
+
Tensor<XEngine, XLayout> const& x,
|
|
72
|
+
Beta const& beta,
|
|
73
|
+
Tensor<YEngine, YLayout> & y,
|
|
74
|
+
PrdTensor const& p = {})
|
|
75
|
+
{
|
|
76
|
+
auto isBetaZero = [&] () {
|
|
77
|
+
if constexpr (is_complex<Beta>::value) {
|
|
78
|
+
return beta.real() == Int<0>{} && beta.imag() == Int<0>{};
|
|
79
|
+
}
|
|
80
|
+
else {
|
|
81
|
+
return beta == Int<0>{};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
CUTE_GCC_UNREACHABLE;
|
|
85
|
+
} ();
|
|
86
|
+
|
|
87
|
+
CUTE_UNROLL
|
|
88
|
+
for (int i = 0; i < size(x); ++i) {
|
|
89
|
+
if (p(i)) {
|
|
90
|
+
y(i) = (isBetaZero ? alpha * x(i) : alpha * x(i) + beta * y(i));
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
} // end namespace cute
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/***************************************************************************************************
|
|
2
|
+
* Copyright (c) 2023 - 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
*
|
|
11
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
* this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
* and/or other materials provided with the distribution.
|
|
14
|
+
*
|
|
15
|
+
* 3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
* contributors may be used to endorse or promote products derived from
|
|
17
|
+
* this software without specific prior written permission.
|
|
18
|
+
*
|
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29
|
+
*
|
|
30
|
+
**************************************************************************************************/
|
|
31
|
+
#pragma once
|
|
32
|
+
|
|
33
|
+
#include <cute/config.hpp> // CUTE_HOST_DEVICE
|
|
34
|
+
#include <cute/tensor_impl.hpp> // cute::Tensor
|
|
35
|
+
#include <cute/algorithm/fill.hpp> // cute::fill
|
|
36
|
+
|
|
37
|
+
namespace cute
|
|
38
|
+
{
|
|
39
|
+
|
|
40
|
+
//
|
|
41
|
+
// Accept mutable temporaries
|
|
42
|
+
//
|
|
43
|
+
template <class Engine, class Layout>
|
|
44
|
+
CUTE_HOST_DEVICE
|
|
45
|
+
void
|
|
46
|
+
clear(Tensor<Engine, Layout>&& tensor)
|
|
47
|
+
{
|
|
48
|
+
return clear(tensor);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
//
|
|
52
|
+
// Set elements to zero
|
|
53
|
+
//
|
|
54
|
+
template <class Engine, class Layout>
|
|
55
|
+
CUTE_HOST_DEVICE
|
|
56
|
+
void
|
|
57
|
+
clear(Tensor<Engine, Layout>& tensor)
|
|
58
|
+
{
|
|
59
|
+
using T = typename Tensor<Engine,Layout>::value_type;
|
|
60
|
+
|
|
61
|
+
fill(tensor, T{});
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
} // end namespace cute
|
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
/***************************************************************************************************
|
|
2
|
+
* Copyright (c) 2017 - 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
3
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
4
|
+
*
|
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
|
6
|
+
* modification, are permitted provided that the following conditions are met:
|
|
7
|
+
*
|
|
8
|
+
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
* list of conditions and the following disclaimer.
|
|
10
|
+
*
|
|
11
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
* this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
* and/or other materials provided with the distribution.
|
|
14
|
+
*
|
|
15
|
+
* 3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
* contributors may be used to endorse or promote products derived from
|
|
17
|
+
* this software without specific prior written permission.
|
|
18
|
+
*
|
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
29
|
+
*
|
|
30
|
+
**************************************************************************************************/
|
|
31
|
+
#pragma once
|
|
32
|
+
|
|
33
|
+
#include <cute/config.hpp>
|
|
34
|
+
#include <cute/layout.hpp>
|
|
35
|
+
#include <cute/layout_composed.hpp> // cute::logical_divide
|
|
36
|
+
#include <cute/swizzle.hpp> // cute::Swizzle
|
|
37
|
+
#include <cute/swizzle_layout.hpp> // cute::get_nonswizzle_portion
|
|
38
|
+
#include <cute/tensor_impl.hpp> // cute::Tensor
|
|
39
|
+
#include <cute/tensor_predicate.hpp>
|
|
40
|
+
#include <cute/algorithm/copy.hpp>
|
|
41
|
+
#include <cute/atom/copy_atom.hpp>
|
|
42
|
+
|
|
43
|
+
namespace cute
|
|
44
|
+
{
|
|
45
|
+
|
|
46
|
+
template <uint32_t NumThreads,
|
|
47
|
+
class SrcEngine, class SrcLayout,
|
|
48
|
+
class DstEngine, class DstLayout>
|
|
49
|
+
CUTE_HOST_DEVICE void
|
|
50
|
+
naive_cooperative_copy(uint32_t const& tid,
|
|
51
|
+
Tensor<SrcEngine, SrcLayout> const& src,
|
|
52
|
+
Tensor<DstEngine, DstLayout> & dst)
|
|
53
|
+
{
|
|
54
|
+
auto N = size(src);
|
|
55
|
+
if (tid < N) {
|
|
56
|
+
uint32_t upper_bound = (N / NumThreads) * NumThreads;
|
|
57
|
+
CUTE_UNROLL
|
|
58
|
+
for (uint32_t i = 0; i < upper_bound; i += NumThreads) { // All in-bounds
|
|
59
|
+
dst[tid + i] = src[tid + i];
|
|
60
|
+
}
|
|
61
|
+
if (N % NumThreads != 0) { // Likely static condition
|
|
62
|
+
uint32_t final_idx = tid + upper_bound;
|
|
63
|
+
if (final_idx < N) { // Final in-bounds
|
|
64
|
+
dst[final_idx] = src[final_idx];
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// Accept mutable temporaries
|
|
71
|
+
template <uint32_t NumThreads,
|
|
72
|
+
class SrcEngine, class SrcLayout,
|
|
73
|
+
class DstEngine, class DstLayout>
|
|
74
|
+
CUTE_HOST_DEVICE void
|
|
75
|
+
naive_cooperative_copy(uint32_t const& tid,
|
|
76
|
+
Tensor<SrcEngine, SrcLayout> const& src,
|
|
77
|
+
Tensor<DstEngine, DstLayout> && dst)
|
|
78
|
+
{
|
|
79
|
+
return naive_cooperative_copy(tid, src, dst);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// A heuristic to determine a "good" permutation of two tensors for later vectorization and thr-assignment
|
|
83
|
+
template <class AEngine, class ALayout,
|
|
84
|
+
class BEngine, class BLayout>
|
|
85
|
+
CUTE_HOST_DEVICE constexpr
|
|
86
|
+
auto
|
|
87
|
+
heuristic_permutation(Tensor<AEngine, ALayout> const& a,
|
|
88
|
+
Tensor<BEngine, BLayout> const& b)
|
|
89
|
+
{
|
|
90
|
+
constexpr bool swizzleA = get_swizzle_t<AEngine>::num_bits != 0 or
|
|
91
|
+
get_swizzle_t<ALayout>::num_bits != 0;
|
|
92
|
+
constexpr bool swizzleB = get_swizzle_t<BEngine>::num_bits != 0 or
|
|
93
|
+
get_swizzle_t<BLayout>::num_bits != 0;
|
|
94
|
+
auto a_inv = right_inverse(get_nonswizzle_portion(a.layout()));
|
|
95
|
+
auto b_inv = right_inverse(get_nonswizzle_portion(b.layout()));
|
|
96
|
+
|
|
97
|
+
constexpr uint8_t scoreA = (uint8_t(swizzleA) << 2) |
|
|
98
|
+
(uint8_t(is_smem<AEngine>::value) << 1) |
|
|
99
|
+
(uint8_t(size(a_inv) > size(b_inv)) << 0);
|
|
100
|
+
|
|
101
|
+
constexpr uint8_t scoreB = (uint8_t(swizzleB) << 2) |
|
|
102
|
+
(uint8_t(is_smem<BEngine>::value) << 1) |
|
|
103
|
+
(uint8_t(size(b_inv) > size(a_inv)) << 0);
|
|
104
|
+
|
|
105
|
+
if constexpr (scoreA >= scoreB) {
|
|
106
|
+
return a_inv;
|
|
107
|
+
} else {
|
|
108
|
+
return b_inv;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// cooperative_copy<NumThreads, MaxVecBits>(thr_idx, src, dst)
|
|
113
|
+
// Use NumThreads to copy Tensor src to Tensor dst with element-wise vectorization up to MaxVecBits.
|
|
114
|
+
// @pre 0 <= @a tid < NumThreads
|
|
115
|
+
// @pre Tensors @a src and @a dst are aligned up to MaxVecBits.
|
|
116
|
+
// That is, pointers and dynamic strides are assumed to be aligned up to MaxVecBits.
|
|
117
|
+
//
|
|
118
|
+
template <uint32_t NumThreads, uint32_t MaxVecBits,
|
|
119
|
+
class SrcEngine, class SrcLayout,
|
|
120
|
+
class DstEngine, class DstLayout>
|
|
121
|
+
CUTE_HOST_DEVICE
|
|
122
|
+
void
|
|
123
|
+
cooperative_copy(uint32_t const& tid,
|
|
124
|
+
Tensor<SrcEngine, SrcLayout> const& src,
|
|
125
|
+
Tensor<DstEngine, DstLayout> & dst)
|
|
126
|
+
{
|
|
127
|
+
// Assumes the shapes are static, can generalize/fallback
|
|
128
|
+
CUTE_STATIC_ASSERT_V(is_static<decltype(shape(src))>{} && is_static<decltype(shape(dst))>{});
|
|
129
|
+
CUTE_STATIC_ASSERT_V(size(src) == size(dst));
|
|
130
|
+
// Assumes the types are the same, can generalize/fallback
|
|
131
|
+
static_assert(cute::is_same<typename SrcEngine::value_type, typename DstEngine::value_type>::value);
|
|
132
|
+
static_assert(MaxVecBits == sizeof_bits_v<typename SrcEngine::value_type> ||
|
|
133
|
+
MaxVecBits == 8 || MaxVecBits == 16 || MaxVecBits == 32 || MaxVecBits == 64 || MaxVecBits == 128,
|
|
134
|
+
"Expected MaxVecBits to be value size or 8 or 16 or 32 or 64 or 128 for alignment and performance.");
|
|
135
|
+
// Check that the tensors are likely shared across threads: either gmem or smem
|
|
136
|
+
static_assert((is_gmem<SrcEngine>::value || is_smem<SrcEngine>::value),
|
|
137
|
+
"cooperative_copy expects shared gmem or smem source tensor.");
|
|
138
|
+
static_assert((is_gmem<DstEngine>::value || is_smem<DstEngine>::value),
|
|
139
|
+
"cooperative_copy expects shared gmem or smem destination tensor.");
|
|
140
|
+
// Precondition on tid in DEBUG
|
|
141
|
+
assert(tid < NumThreads);
|
|
142
|
+
// Precondition on pointer alignment in DEBUG
|
|
143
|
+
assert(is_byte_aligned<ceil_div(MaxVecBits,8u)>(raw_pointer_cast(src.data())));
|
|
144
|
+
assert(is_byte_aligned<ceil_div(MaxVecBits,8u)>(raw_pointer_cast(dst.data())));
|
|
145
|
+
|
|
146
|
+
#if 0
|
|
147
|
+
if (thread0()) {
|
|
148
|
+
print(" "); print("cooperative_copy\n");
|
|
149
|
+
print(" "); print("NumThreads: "); print(NumThreads); print("\n");
|
|
150
|
+
print(" "); print("MaxVecBits: "); print(MaxVecBits); print("\n");
|
|
151
|
+
print(" "); print("src: "); print(src); print("\n");
|
|
152
|
+
print(" "); print("dst: "); print(dst); print("\n");
|
|
153
|
+
}
|
|
154
|
+
#ifdef __CUDA_ARCH__
|
|
155
|
+
__syncthreads();
|
|
156
|
+
#endif
|
|
157
|
+
#endif
|
|
158
|
+
|
|
159
|
+
// The common layout of the two tensors that can be vectorized over elements and threads
|
|
160
|
+
// vidx -> coord
|
|
161
|
+
auto common_layout = heuristic_permutation(src, dst);
|
|
162
|
+
|
|
163
|
+
// Apply
|
|
164
|
+
// (V, rest)
|
|
165
|
+
Tensor src_a = coalesce(logical_divide(src, common_layout), Shape<_1,_1>{});
|
|
166
|
+
Tensor dst_a = coalesce(logical_divide(dst, common_layout), Shape<_1,_1>{});
|
|
167
|
+
|
|
168
|
+
//
|
|
169
|
+
// Determine vectorization of elems and thrs based on src/dst size and number of threads
|
|
170
|
+
// NOTE: This heuristic promotes parallelization over vectorization
|
|
171
|
+
//
|
|
172
|
+
|
|
173
|
+
// The number of elements and number of bits
|
|
174
|
+
constexpr int elem_bits = sizeof_bits_v<typename SrcEngine::value_type>;
|
|
175
|
+
constexpr int total_elem = size(SrcLayout{});
|
|
176
|
+
|
|
177
|
+
// The number of elements that can be vectorized in values
|
|
178
|
+
constexpr int common_elem = decltype(max_common_vector(src_a, dst_a))::value;
|
|
179
|
+
|
|
180
|
+
#if 0
|
|
181
|
+
if (thread0()) {
|
|
182
|
+
print(" "); print("common_layout: "); print(common_layout); print("\n");
|
|
183
|
+
print(" "); print("src_a: "); print(src_a); print("\n");
|
|
184
|
+
print(" "); print("dst_a: "); print(dst_a); print("\n");
|
|
185
|
+
}
|
|
186
|
+
#ifdef __CUDA_ARCH__
|
|
187
|
+
__syncthreads();
|
|
188
|
+
#endif
|
|
189
|
+
#endif
|
|
190
|
+
|
|
191
|
+
//
|
|
192
|
+
if constexpr (total_elem % NumThreads != 0) {
|
|
193
|
+
// Not attempting to find a partitioning pattern, fallback to dynamically indexed slowpath
|
|
194
|
+
|
|
195
|
+
if constexpr (common_elem > 1 && MaxVecBits > elem_bits) {
|
|
196
|
+
// If the vectorization is non-trivial and divides the maximum vectorizations, then vectorize
|
|
197
|
+
constexpr auto max_align_src = elem_bits * decltype(max_alignment(src_a.layout()))::value;
|
|
198
|
+
constexpr auto max_align_dst = elem_bits * decltype(max_alignment(dst_a.layout()))::value;
|
|
199
|
+
constexpr auto vec_bits = gcd(max_align_src, max_align_dst, MaxVecBits);
|
|
200
|
+
using VecType = uint_bit_t<vec_bits>;
|
|
201
|
+
|
|
202
|
+
static_assert(vec_bits % elem_bits == 0, "Expected divisibility");
|
|
203
|
+
static_assert((vec_bits >= 8), "No support for subbyte copying");
|
|
204
|
+
|
|
205
|
+
Tensor src_v = recast<VecType const>(src_a);
|
|
206
|
+
Tensor dst_v = recast<VecType >(dst_a);
|
|
207
|
+
|
|
208
|
+
#if 0
|
|
209
|
+
if (thread0()) {
|
|
210
|
+
print(" "); print("cooperative_copy -- naive\n");
|
|
211
|
+
print(" "); print("src_v: "); print(src_v); print("\n");
|
|
212
|
+
print(" "); print("dst_v: "); print(dst_v); print("\n");
|
|
213
|
+
}
|
|
214
|
+
#ifdef __CUDA_ARCH__
|
|
215
|
+
__syncthreads();
|
|
216
|
+
#endif
|
|
217
|
+
#endif
|
|
218
|
+
|
|
219
|
+
naive_cooperative_copy<NumThreads>(tid, src_v, dst_v);
|
|
220
|
+
} else {
|
|
221
|
+
naive_cooperative_copy<NumThreads>(tid, src_a, dst_a);
|
|
222
|
+
}
|
|
223
|
+
} else {
|
|
224
|
+
// If the tensors can be equally partitioned by the threads,
|
|
225
|
+
// compute vectorization widths in elements and threads.
|
|
226
|
+
|
|
227
|
+
// If there are too many threads to allow a full vectorized copy, trunc the vectorization
|
|
228
|
+
constexpr int total_bits = total_elem * elem_bits;
|
|
229
|
+
constexpr int max_bits_per_thr = total_bits / NumThreads;
|
|
230
|
+
// At least elem_bits, at most common_bits
|
|
231
|
+
constexpr int common_bits = common_elem * elem_bits;
|
|
232
|
+
constexpr int vec_bits = cute::max(elem_bits, cute::gcd(common_bits, int(MaxVecBits), max_bits_per_thr));
|
|
233
|
+
|
|
234
|
+
// Should account for vec_bits < 8 and/or vec_elem <= 1
|
|
235
|
+
// And also account for subbyte types, which could cause race conditions
|
|
236
|
+
// Want to ENFORCE sufficient vectorization in those cases
|
|
237
|
+
static_assert(vec_bits % elem_bits == 0, "Expected divisibility");
|
|
238
|
+
static_assert(vec_bits >= 8, "No support for subbyte copying");
|
|
239
|
+
|
|
240
|
+
using VecType = uint_bit_t<vec_bits>;
|
|
241
|
+
constexpr int vec_elem = vec_bits / elem_bits;
|
|
242
|
+
|
|
243
|
+
constexpr int vec_thrs = cute::min(int(NumThreads), total_elem / vec_elem);
|
|
244
|
+
|
|
245
|
+
//
|
|
246
|
+
// Determine the partitioning patterns for the vec_elems and vec_thrs
|
|
247
|
+
//
|
|
248
|
+
|
|
249
|
+
// Distribute the rest of the V*T to some consistent portion outside of the common_layout, if needed
|
|
250
|
+
auto common_domain_src = domain_distribute(shape(src_a), Int<vec_elem*vec_thrs>{});
|
|
251
|
+
auto common_domain_dst = domain_distribute(shape(dst_a), Int<vec_elem*vec_thrs>{});
|
|
252
|
+
|
|
253
|
+
// Make sure for now, could fall back here instead
|
|
254
|
+
CUTE_STATIC_ASSERT_V(size(common_domain_src) == Int<vec_elem*vec_thrs>{});
|
|
255
|
+
CUTE_STATIC_ASSERT_V(compatible(common_domain_src, common_domain_dst) ||
|
|
256
|
+
compatible(common_domain_dst, common_domain_src));
|
|
257
|
+
// Use the "more specific" domain for the extra elements of V*T
|
|
258
|
+
auto common_domain = conditional_return(compatible(common_domain_src, common_domain_dst),
|
|
259
|
+
common_domain_dst, common_domain_src);
|
|
260
|
+
|
|
261
|
+
// Construct the tiler
|
|
262
|
+
auto tiler_vt = common_domain.with_shape(Int<vec_elem>{}, Int<vec_thrs>{});
|
|
263
|
+
|
|
264
|
+
// Apply and slice
|
|
265
|
+
Tensor src_v = logical_divide(src_a, tiler_vt)(make_coord(_,tid),_);
|
|
266
|
+
Tensor dst_v = logical_divide(dst_a, tiler_vt)(make_coord(_,tid),_);
|
|
267
|
+
|
|
268
|
+
#if 0
|
|
269
|
+
if (thread0()) {
|
|
270
|
+
print(" "); print("cooperative_copy -- vec\n");
|
|
271
|
+
print(" "); print("Used vector: "); print(vec_elem); print("\n");
|
|
272
|
+
print(" "); print("Used threads: "); print(vec_thrs); print("\n");
|
|
273
|
+
print(" "); print("tiler_vt: "); print(tiler_vt); print("\n");
|
|
274
|
+
print(" "); print("src_v: "); print(src_v); print("\n");
|
|
275
|
+
print(" "); print("dst_v: "); print(dst_v); print("\n");
|
|
276
|
+
print(" "); print("recast<VecType const>(src_v): "); print(recast<VecType const>(src_v)); print("\n");
|
|
277
|
+
print(" "); print("recast<VecType >(dst_v): "); print(recast<VecType >(dst_v)); print("\n");
|
|
278
|
+
}
|
|
279
|
+
#ifdef __CUDA_ARCH__
|
|
280
|
+
__syncthreads();
|
|
281
|
+
#endif
|
|
282
|
+
#endif
|
|
283
|
+
|
|
284
|
+
// If we're using all threads (static) or the tid is in-range (dynamic)
|
|
285
|
+
if (vec_thrs == NumThreads or tid < vec_thrs) {
|
|
286
|
+
return copy_if(TrivialPredTensor{}, recast<VecType const>(src_v), recast<VecType>(dst_v));
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
// Default max-vectorization size to value_type size
|
|
292
|
+
template <uint32_t NumThreads,
|
|
293
|
+
class SrcEngine, class SrcLayout,
|
|
294
|
+
class DstEngine, class DstLayout>
|
|
295
|
+
CUTE_HOST_DEVICE
|
|
296
|
+
void
|
|
297
|
+
cooperative_copy(uint32_t const& tid,
|
|
298
|
+
Tensor<SrcEngine, SrcLayout> const& src,
|
|
299
|
+
Tensor<DstEngine, DstLayout> & dst)
|
|
300
|
+
{
|
|
301
|
+
constexpr uint32_t MaxVecBits = sizeof_bits_v<typename SrcEngine::value_type>;
|
|
302
|
+
return cooperative_copy<NumThreads, MaxVecBits>(tid, src, dst);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
//
|
|
306
|
+
// Accept mutable temporaries
|
|
307
|
+
//
|
|
308
|
+
|
|
309
|
+
template <uint32_t NumThreads,
|
|
310
|
+
class SrcEngine, class SrcLayout,
|
|
311
|
+
class DstEngine, class DstLayout>
|
|
312
|
+
CUTE_HOST_DEVICE
|
|
313
|
+
void
|
|
314
|
+
cooperative_copy(uint32_t const& tid,
|
|
315
|
+
Tensor<SrcEngine, SrcLayout> const& src,
|
|
316
|
+
Tensor<DstEngine, DstLayout> && dst)
|
|
317
|
+
{
|
|
318
|
+
return cooperative_copy<NumThreads>(tid, src, dst);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
template <uint32_t NumThreads, uint32_t MaxVecBits,
|
|
322
|
+
class SrcEngine, class SrcLayout,
|
|
323
|
+
class DstEngine, class DstLayout>
|
|
324
|
+
CUTE_HOST_DEVICE
|
|
325
|
+
void
|
|
326
|
+
cooperative_copy(uint32_t const& tid,
|
|
327
|
+
Tensor<SrcEngine, SrcLayout> const& src,
|
|
328
|
+
Tensor<DstEngine, DstLayout> && dst)
|
|
329
|
+
{
|
|
330
|
+
return cooperative_copy<NumThreads, MaxVecBits>(tid, src, dst);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
} // end namespace cute
|