vllm-ascend 0.11.0rc3__tar.gz → 0.13.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1563) hide show
  1. vllm_ascend-0.13.0/.github/Dockerfile.buildwheel +45 -0
  2. vllm_ascend-0.13.0/.github/Dockerfile.nightly.a2 +43 -0
  3. vllm_ascend-0.13.0/.github/Dockerfile.nightly.a3 +43 -0
  4. vllm_ascend-0.13.0/.github/ISSUE_TEMPLATE/900-release-checklist.yml +104 -0
  5. vllm_ascend-0.13.0/.github/actionlint.yaml +27 -0
  6. vllm_ascend-0.13.0/.github/labeler.yml +38 -0
  7. vllm_ascend-0.13.0/.github/workflows/_e2e_nightly_multi_node.yaml +299 -0
  8. vllm_ascend-0.13.0/.github/workflows/_e2e_nightly_single_node.yaml +123 -0
  9. vllm_ascend-0.13.0/.github/workflows/_e2e_nightly_single_node_models.yaml +232 -0
  10. vllm_ascend-0.13.0/.github/workflows/_e2e_test.yaml +317 -0
  11. vllm_ascend-0.13.0/.github/workflows/_pre_commit.yml +57 -0
  12. vllm_ascend-0.13.0/.github/workflows/_schedule_image_build.yaml +184 -0
  13. vllm_ascend-0.13.0/.github/workflows/_unit_test.yaml +93 -0
  14. vllm_ascend-0.13.0/.github/workflows/bot_merge_conflict.yaml +20 -0
  15. vllm_ascend-0.13.0/.github/workflows/bot_pr_create.yaml +113 -0
  16. vllm_ascend-0.13.0/.github/workflows/labled_doctest.yaml +87 -0
  17. vllm_ascend-0.13.0/.github/workflows/labled_download_model.yaml +80 -0
  18. vllm_ascend-0.13.0/.github/workflows/labled_test_310.yaml +110 -0
  19. vllm_ascend-0.13.0/.github/workflows/misc/model_list.json +240 -0
  20. vllm_ascend-0.13.0/.github/workflows/nightly_test_a2.yaml +144 -0
  21. vllm_ascend-0.13.0/.github/workflows/nightly_test_a3.yaml +187 -0
  22. vllm_ascend-0.13.0/.github/workflows/pr_close_cancel_job.yaml +46 -0
  23. vllm_ascend-0.13.0/.github/workflows/pr_test_full.yaml +85 -0
  24. vllm_ascend-0.13.0/.github/workflows/pr_test_light.yaml +104 -0
  25. vllm_ascend-0.13.0/.github/workflows/schedule_codecov_refresh.yaml +42 -0
  26. vllm_ascend-0.13.0/.github/workflows/schedule_image_build_and_push.yaml +87 -0
  27. vllm_ascend-0.13.0/.github/workflows/schedule_nightly_image_build.yaml +60 -0
  28. vllm_ascend-0.13.0/.github/workflows/schedule_release_code_and_wheel.yml +156 -0
  29. vllm_ascend-0.13.0/.github/workflows/schedule_test_benchmarks.yaml +203 -0
  30. vllm_ascend-0.13.0/.github/workflows/schedule_test_vllm_main.yaml +39 -0
  31. vllm_ascend-0.13.0/.gitignore +212 -0
  32. vllm_ascend-0.13.0/.gitmodules +4 -0
  33. vllm_ascend-0.13.0/.pre-commit-config.yaml +137 -0
  34. vllm_ascend-0.13.0/CMakeLists.txt +140 -0
  35. vllm_ascend-0.13.0/CONTRIBUTING.md +3 -0
  36. vllm_ascend-0.13.0/Dockerfile +81 -0
  37. vllm_ascend-0.13.0/Dockerfile.310p +66 -0
  38. vllm_ascend-0.13.0/Dockerfile.310p.openEuler +61 -0
  39. vllm_ascend-0.13.0/Dockerfile.a3 +80 -0
  40. vllm_ascend-0.13.0/Dockerfile.a3.openEuler +79 -0
  41. vllm_ascend-0.13.0/Dockerfile.openEuler +79 -0
  42. vllm_ascend-0.13.0/PKG-INFO +150 -0
  43. vllm_ascend-0.13.0/README.md +93 -0
  44. vllm_ascend-0.13.0/README.zh.md +92 -0
  45. vllm_ascend-0.13.0/benchmarks/tests/serving-tests.json +78 -0
  46. vllm_ascend-0.13.0/csrc/CMakeLists.txt +645 -0
  47. vllm_ascend-0.13.0/csrc/aclnn_torch_adapter/NPUBridge.cpp +30 -0
  48. vllm_ascend-0.13.0/csrc/aclnn_torch_adapter/NPUBridge.h +29 -0
  49. vllm_ascend-0.13.0/csrc/aclnn_torch_adapter/NPUStorageImpl.cpp +52 -0
  50. vllm_ascend-0.13.0/csrc/aclnn_torch_adapter/NPUStorageImpl.h +67 -0
  51. vllm_ascend-0.13.0/csrc/aclnn_torch_adapter/op_api_common.h +591 -0
  52. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_host/CMakeLists.txt +39 -0
  53. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_host/add_rms_norm_bias_def.cpp +71 -0
  54. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_host/add_rms_norm_bias_infershape.cpp +84 -0
  55. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_host/add_rms_norm_bias_tiling.cpp +443 -0
  56. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_host/add_rms_norm_bias_tiling.h +53 -0
  57. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_host/error_log.h +71 -0
  58. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_kernel/add_rms_norm_bias.cpp +72 -0
  59. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_kernel/add_rms_norm_bias.h +368 -0
  60. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_kernel/add_rms_norm_bias_merge_n.h +471 -0
  61. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_kernel/add_rms_norm_bias_multi_n.h +339 -0
  62. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_kernel/add_rms_norm_bias_single_n.h +376 -0
  63. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_kernel/add_rms_norm_bias_split_d.h +395 -0
  64. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_kernel/reduce_common.h +179 -0
  65. vllm_ascend-0.13.0/csrc/add_rms_norm_bias/op_kernel/rms_norm_base.h +316 -0
  66. vllm_ascend-0.13.0/csrc/batch_matmul_transpose/op_host/batch_matmul_transpose.h +123 -0
  67. vllm_ascend-0.13.0/csrc/batch_matmul_transpose/op_host/common.h +57 -0
  68. vllm_ascend-0.13.0/csrc/batch_matmul_transpose/op_host/common_tiling.h +239 -0
  69. vllm_ascend-0.13.0/csrc/batch_matmul_transpose/op_host/tiling/tiling_data.cpp +155 -0
  70. vllm_ascend-0.13.0/csrc/batch_matmul_transpose/op_host/tiling/tiling_data.h +90 -0
  71. vllm_ascend-0.13.0/csrc/batch_matmul_transpose/op_kernel/batch_matmul_transpose_kernel.cpp +825 -0
  72. vllm_ascend-0.13.0/csrc/build.sh +189 -0
  73. vllm_ascend-0.13.0/csrc/build_aclnn.sh +92 -0
  74. vllm_ascend-0.13.0/csrc/cmake/config.cmake +235 -0
  75. vllm_ascend-0.13.0/csrc/cmake/func.cmake +609 -0
  76. vllm_ascend-0.13.0/csrc/cmake/intf.cmake +12 -0
  77. vllm_ascend-0.13.0/csrc/cmake/intf_pub.cmake +75 -0
  78. vllm_ascend-0.13.0/csrc/cmake/modules/Findalog.cmake +113 -0
  79. vllm_ascend-0.13.0/csrc/cmake/scripts/prepare.sh +130 -0
  80. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_host/CMakeLists.txt +66 -0
  81. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_host/aclnn_dispatch_ffn_combine.cpp +84 -0
  82. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_host/aclnn_dispatch_ffn_combine.h +64 -0
  83. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_host/dispatch_ffn_combine_def.cpp +88 -0
  84. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_host/dispatch_ffn_combine_proto.cpp +40 -0
  85. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_host/dispatch_ffn_combine_tiling.cpp +315 -0
  86. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_host/error_log.h +47 -0
  87. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_host/hcom_topo_info.h +72 -0
  88. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_host/tiling_args.h +9 -0
  89. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/dispatch_ffn_combine.cpp +51 -0
  90. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/dispatch_ffn_combine.h +278 -0
  91. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/dispatch_ffn_combine_kernel.hpp +903 -0
  92. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/dispatch_ffn_combine_tiling.h +57 -0
  93. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_init_routing_quant_v2.cpp +133 -0
  94. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_init_routing_quant_v2_tiling.h +429 -0
  95. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_init_routing_v2_tiling.h +410 -0
  96. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_common.h +94 -0
  97. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_expert_token_out.h +310 -0
  98. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_fullload_dynamic_quant.h +468 -0
  99. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_fullload_quant.h +155 -0
  100. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_fullload_quant_base.h +279 -0
  101. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_gather_dynamic_quant.h +568 -0
  102. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_gather_out.h +181 -0
  103. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_gather_quant.h +235 -0
  104. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_init_routing_fullload.h +312 -0
  105. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_mrgsort.h +189 -0
  106. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_mrgsort_out.h +213 -0
  107. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_sort_base.h +70 -0
  108. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_sort_multi_core.h +373 -0
  109. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_sort_one_core.h +162 -0
  110. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_src_to_dst_and_gather.h +560 -0
  111. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_src_to_dst_op.h +164 -0
  112. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_src_to_dst_with_capacity.h +269 -0
  113. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/tiling_base.h +66 -0
  114. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/unpermute/moe_token_unpermute.h +376 -0
  115. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/unpermute/moe_token_unpermute_tiling.h +38 -0
  116. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/block_epilogue_pertoken_row.hpp +208 -0
  117. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/block_epilogue_pertoken_swiglu.hpp +316 -0
  118. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/block_mmad_preload_async_fixpipe_quant.hpp +504 -0
  119. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/const_args.hpp +9 -0
  120. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/copy_gm_to_l1_custom.hpp +40 -0
  121. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/copy_l0c_to_gm_custom.hpp +47 -0
  122. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/dispatch_policy_custom.hpp +47 -0
  123. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/get_tensor_addr.hpp +16 -0
  124. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/hccl_shmem.hpp +176 -0
  125. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/layout3d.hpp +20 -0
  126. vllm_ascend-0.13.0/csrc/dispatch_ffn_combine/op_kernel/utils/select_helper.hpp +25 -0
  127. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_host/CMakeLists.txt +59 -0
  128. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_host/aclnn_dispatch_gmm_combine_decode.cpp +103 -0
  129. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_host/aclnn_dispatch_gmm_combine_decode.h +52 -0
  130. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_host/dispatch_gmm_combine_decode_def.cpp +88 -0
  131. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_host/dispatch_gmm_combine_decode_proto.cpp +95 -0
  132. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_host/dispatch_gmm_combine_decode_tiling.cpp +486 -0
  133. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/block/block_epilogue.h +14 -0
  134. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/block/block_epilogue_per_token_dequant.hpp +760 -0
  135. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/block/block_epilogue_per_token_dequant_swiglu.h +311 -0
  136. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/dispatch_policy.h +29 -0
  137. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/tile/tile_stride_binary.h +107 -0
  138. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/tile/tile_stride_muls.h +59 -0
  139. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/gemm/block/block_mmad.h +13 -0
  140. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/gemm/block/block_mmad_preload_async_with_callback_resident_a.h +420 -0
  141. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/gemm/dispatch_policy.h +28 -0
  142. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/gemm/kernel/grouped_matmul_slice_m_per_token_dequant_multistage_workspace.h +383 -0
  143. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/gemm/kernel/grouped_matmul_slice_m_per_token_dequant_swiglu_quant_multistage_workspace.h +2060 -0
  144. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/raw_distributed/cam_moe_distribute_combine.h +846 -0
  145. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/raw_distributed/cam_moe_distribute_dispatch.h +1124 -0
  146. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode.cpp +35 -0
  147. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode.h +440 -0
  148. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode_base.h +21 -0
  149. vllm_ascend-0.13.0/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode_tiling.h +77 -0
  150. vllm_ascend-0.13.0/csrc/dispatch_layout/op_host/CMakeLists.txt +49 -0
  151. vllm_ascend-0.13.0/csrc/dispatch_layout/op_host/aclnn_dispatch_layout.cpp +64 -0
  152. vllm_ascend-0.13.0/csrc/dispatch_layout/op_host/aclnn_dispatch_layout.h +50 -0
  153. vllm_ascend-0.13.0/csrc/dispatch_layout/op_host/dispatch_layout.cpp +51 -0
  154. vllm_ascend-0.13.0/csrc/dispatch_layout/op_host/dispatch_layout_tiling.cpp +211 -0
  155. vllm_ascend-0.13.0/csrc/dispatch_layout/op_kernel/dispatch_layout.cpp +17 -0
  156. vllm_ascend-0.13.0/csrc/dispatch_layout/op_kernel/dispatch_layout.h +153 -0
  157. vllm_ascend-0.13.0/csrc/dispatch_layout/op_kernel/dispatch_layout_tiling.h +20 -0
  158. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/CMakeLists.txt +54 -0
  159. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/aclnn_grouped_matmul_swiglu_quant_weight_nz_tensor_list.cpp +329 -0
  160. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/aclnn_grouped_matmul_swiglu_quant_weight_nz_tensor_list.h +56 -0
  161. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list.cpp +56 -0
  162. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list.h +24 -0
  163. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list_def.cpp +65 -0
  164. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list_proto.cpp +49 -0
  165. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list_tiling.cpp +188 -0
  166. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list_tiling.h +68 -0
  167. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_kernel/grouped_matmul_swiglu_quant_weight_nz_tensor_list.cpp +80 -0
  168. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_kernel/grouped_matmul_swiglu_quant_weight_nz_tensor_list.h +498 -0
  169. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_kernel/grouped_matmul_swiglu_quant_weight_nz_tensor_list_split_ws.h +588 -0
  170. vllm_ascend-0.13.0/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_kernel/grouped_matmul_swiglu_quant_weight_nz_tensor_list_utils.h +240 -0
  171. vllm_ascend-0.13.0/csrc/kernels/bgmv_expand.cpp +369 -0
  172. vllm_ascend-0.13.0/csrc/kernels/bgmv_shrink.cpp +252 -0
  173. vllm_ascend-0.13.0/csrc/kernels/math_utils.h +15 -0
  174. vllm_ascend-0.13.0/csrc/kernels/sgmv_expand.cpp +389 -0
  175. vllm_ascend-0.13.0/csrc/kernels/sgmv_shrink.cpp +275 -0
  176. vllm_ascend-0.13.0/csrc/lightning_indexer/op_host/CMakeLists.txt +42 -0
  177. vllm_ascend-0.13.0/csrc/lightning_indexer/op_host/lightning_indexer_def.cpp +72 -0
  178. vllm_ascend-0.13.0/csrc/lightning_indexer/op_host/lightning_indexer_proto.cpp +96 -0
  179. vllm_ascend-0.13.0/csrc/lightning_indexer/op_host/lightning_indexer_tiling.cpp +694 -0
  180. vllm_ascend-0.13.0/csrc/lightning_indexer/op_host/lightning_indexer_tiling.h +215 -0
  181. vllm_ascend-0.13.0/csrc/lightning_indexer/op_kernel/lightning_indexer.cpp +58 -0
  182. vllm_ascend-0.13.0/csrc/lightning_indexer/op_kernel/lightning_indexer_common.h +135 -0
  183. vllm_ascend-0.13.0/csrc/lightning_indexer/op_kernel/lightning_indexer_kernel.h +623 -0
  184. vllm_ascend-0.13.0/csrc/lightning_indexer/op_kernel/lightning_indexer_service_cube.h +415 -0
  185. vllm_ascend-0.13.0/csrc/lightning_indexer/op_kernel/lightning_indexer_service_vector.h +559 -0
  186. vllm_ascend-0.13.0/csrc/lightning_indexer/op_kernel/lightning_indexer_template_tiling_key.h +66 -0
  187. vllm_ascend-0.13.0/csrc/lightning_indexer/op_kernel/lightning_indexer_vector.h +335 -0
  188. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_host/CMakeLists.txt +51 -0
  189. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_host/aclnn_matmul_allreduce_add_rmsnorm.cpp +89 -0
  190. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_host/aclnn_matmul_allreduce_add_rmsnorm.h +52 -0
  191. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_host/matmul_allreduce_add_rmsnorm_def.cpp +68 -0
  192. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_host/matmul_allreduce_add_rmsnorm_proto.cpp +68 -0
  193. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_host/matmul_allreduce_add_rmsnorm_tiling.cpp +619 -0
  194. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_host/matmul_allreduce_add_rmsnorm_workspace.h +79 -0
  195. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm.cpp +53 -0
  196. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm_aic_kernel.h +359 -0
  197. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm_aiv_kernel.h +702 -0
  198. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm_tiling.h +101 -0
  199. vllm_ascend-0.13.0/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm_utils.h +414 -0
  200. vllm_ascend-0.13.0/csrc/mla_preprocess/op_host/mla_preprocess.h +706 -0
  201. vllm_ascend-0.13.0/csrc/mla_preprocess/op_host/tiling/mla_preprocess_tiling.h +100 -0
  202. vllm_ascend-0.13.0/csrc/mla_preprocess/op_kernel/mla_preprocess.h +117 -0
  203. vllm_ascend-0.13.0/csrc/mla_preprocess/op_kernel/mla_preprocess_kernel.cpp +363 -0
  204. vllm_ascend-0.13.0/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_bf16.hpp +2913 -0
  205. vllm_ascend-0.13.0/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_bf16_nq.hpp +1252 -0
  206. vllm_ascend-0.13.0/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_bf16_qdown.hpp +2935 -0
  207. vllm_ascend-0.13.0/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_fp16.hpp +2503 -0
  208. vllm_ascend-0.13.0/csrc/moe_combine_normal/op_host/CMakeLists.txt +49 -0
  209. vllm_ascend-0.13.0/csrc/moe_combine_normal/op_host/aclnn_moe_combine_normal.cpp +77 -0
  210. vllm_ascend-0.13.0/csrc/moe_combine_normal/op_host/aclnn_moe_combine_normal.h +62 -0
  211. vllm_ascend-0.13.0/csrc/moe_combine_normal/op_host/moe_combine_normal.cpp +71 -0
  212. vllm_ascend-0.13.0/csrc/moe_combine_normal/op_host/moe_combine_normal_tiling.cpp +546 -0
  213. vllm_ascend-0.13.0/csrc/moe_combine_normal/op_kernel/moe_combine_normal.cpp +22 -0
  214. vllm_ascend-0.13.0/csrc/moe_combine_normal/op_kernel/moe_combine_normal.h +377 -0
  215. vllm_ascend-0.13.0/csrc/moe_combine_normal/op_kernel/moe_combine_normal_tiling.h +33 -0
  216. vllm_ascend-0.13.0/csrc/moe_dispatch_normal/op_host/CMakeLists.txt +49 -0
  217. vllm_ascend-0.13.0/csrc/moe_dispatch_normal/op_host/aclnn_moe_dispatch_normal.cpp +84 -0
  218. vllm_ascend-0.13.0/csrc/moe_dispatch_normal/op_host/aclnn_moe_dispatch_normal.h +24 -0
  219. vllm_ascend-0.13.0/csrc/moe_dispatch_normal/op_host/moe_dispatch_normal.cpp +92 -0
  220. vllm_ascend-0.13.0/csrc/moe_dispatch_normal/op_host/moe_dispatch_normal_tiling.cpp +635 -0
  221. vllm_ascend-0.13.0/csrc/moe_dispatch_normal/op_kernel/moe_dispatch_normal.cpp +56 -0
  222. vllm_ascend-0.13.0/csrc/moe_dispatch_normal/op_kernel/moe_dispatch_normal.h +540 -0
  223. vllm_ascend-0.13.0/csrc/moe_dispatch_normal/op_kernel/moe_dispatch_normal_tiling.h +30 -0
  224. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/CMakeLists.txt +42 -0
  225. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/error_log.h +56 -0
  226. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/math_util.h +61 -0
  227. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/moe_gating_top_k_def.cpp +71 -0
  228. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/moe_gating_top_k_infershape.cpp +147 -0
  229. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/moe_gating_top_k_proto.cpp +15 -0
  230. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/moe_gating_top_k_proto.h +66 -0
  231. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/moe_gating_top_k_tiling.cpp +573 -0
  232. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/moe_gating_top_k_tiling.h +86 -0
  233. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/moe_gating_top_k_tiling_arch35.cpp +521 -0
  234. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_host/moe_gating_top_k_tiling_base.cpp +38 -0
  235. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_kernel/common.h +89 -0
  236. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_kernel/error_log.h +55 -0
  237. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_kernel/moe_gating_top_k.cpp +63 -0
  238. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_kernel/moe_gating_top_k_apt.cpp +46 -0
  239. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_kernel/moe_gating_top_k_e_k_fullload.h +404 -0
  240. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_kernel/moe_gating_top_k_generalized.h +669 -0
  241. vllm_ascend-0.13.0/csrc/moe_gating_top_k/op_kernel/moe_gating_top_k_without_group.h +338 -0
  242. vllm_ascend-0.13.0/csrc/moe_gating_top_k/tiling_base/data_copy_transpose_tiling.h +51 -0
  243. vllm_ascend-0.13.0/csrc/moe_gating_top_k/tiling_base/data_copy_transpose_tiling_def.h +43 -0
  244. vllm_ascend-0.13.0/csrc/moe_gating_top_k/tiling_base/error_log.h +56 -0
  245. vllm_ascend-0.13.0/csrc/moe_gating_top_k/tiling_base/tiling_base.h +256 -0
  246. vllm_ascend-0.13.0/csrc/moe_gating_top_k/tiling_base/tiling_key.h +63 -0
  247. vllm_ascend-0.13.0/csrc/moe_gating_top_k/tiling_base/tiling_templates_registry.h +351 -0
  248. vllm_ascend-0.13.0/csrc/moe_gating_top_k/tiling_base/tiling_type.h +139 -0
  249. vllm_ascend-0.13.0/csrc/moe_gating_top_k/tiling_base/tiling_util.h +30 -0
  250. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/CMakeLists.txt +55 -0
  251. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/aclnn_moe_init_routing_custom.cpp +143 -0
  252. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/aclnn_moe_init_routing_custom.h +47 -0
  253. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/moe_init_routing_custom.cpp +50 -0
  254. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/moe_init_routing_custom.h +25 -0
  255. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/moe_init_routing_custom_def.cpp +105 -0
  256. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/moe_init_routing_custom_infershape.cpp +797 -0
  257. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/moe_init_routing_custom_tiling.cpp +1267 -0
  258. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/moe_init_routing_custom_tiling.h +143 -0
  259. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_host/moe_init_routing_custom_tiling_base.cpp +68 -0
  260. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_common.h +110 -0
  261. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_expert_tokens_count.h +371 -0
  262. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_full_load.h +280 -0
  263. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_full_load_base.h +512 -0
  264. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_full_load_dynamic_quant.h +300 -0
  265. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_full_load_static_quant.h +229 -0
  266. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_full_load_unquantized.h +224 -0
  267. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_gather_droppad_static_quant.h +238 -0
  268. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_gather_dynamic_quant.h +602 -0
  269. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_gather_out.h +321 -0
  270. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_gather_out_droppad.h +210 -0
  271. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_gather_sort_multi_core.h +242 -0
  272. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_gather_static_quant.h +329 -0
  273. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_mrgsort.h +207 -0
  274. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_mrgsort_out.h +232 -0
  275. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_mrgsort_out_performance.h +239 -0
  276. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_mrgsort_performance.h +206 -0
  277. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_row_idx_gather.h +204 -0
  278. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_row_idx_gather_droppad.h +306 -0
  279. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_row_idx_gather_droppad_dynamic.h +582 -0
  280. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_sort_actual_expert.h +430 -0
  281. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_sort_base.h +71 -0
  282. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_sort_multi_core.h +377 -0
  283. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_sort_multi_core_performance.h +171 -0
  284. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_custom_sort_one_core.h +167 -0
  285. vllm_ascend-0.13.0/csrc/moe_init_routing_custom/op_kernel/moe_init_routing_custom.cpp +412 -0
  286. vllm_ascend-0.13.0/csrc/notify_dispatch/op_host/CMakeLists.txt +49 -0
  287. vllm_ascend-0.13.0/csrc/notify_dispatch/op_host/aclnn_notify_dispatch.cpp +84 -0
  288. vllm_ascend-0.13.0/csrc/notify_dispatch/op_host/aclnn_notify_dispatch.h +61 -0
  289. vllm_ascend-0.13.0/csrc/notify_dispatch/op_host/notify_dispatch.cpp +60 -0
  290. vllm_ascend-0.13.0/csrc/notify_dispatch/op_host/notify_dispatch_tiling.cpp +306 -0
  291. vllm_ascend-0.13.0/csrc/notify_dispatch/op_kernel/notify_dispatch.cpp +57 -0
  292. vllm_ascend-0.13.0/csrc/notify_dispatch/op_kernel/notify_dispatch.h +495 -0
  293. vllm_ascend-0.13.0/csrc/notify_dispatch/op_kernel/notify_dispatch_tiling.h +23 -0
  294. vllm_ascend-0.13.0/csrc/ops.h +171 -0
  295. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_host/CMakeLists.txt +39 -0
  296. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_host/sparse_flash_attention_def.cpp +90 -0
  297. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_host/sparse_flash_attention_proto.cpp +48 -0
  298. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_host/sparse_flash_attention_tiling.cpp +1845 -0
  299. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_host/sparse_flash_attention_tiling.h +583 -0
  300. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention.cpp +53 -0
  301. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_common.h +192 -0
  302. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_kernel_mla.h +969 -0
  303. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_service_cube_mla.h +1079 -0
  304. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_service_vector_mla.h +1329 -0
  305. vllm_ascend-0.13.0/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_template_tiling_key.h +54 -0
  306. vllm_ascend-0.13.0/csrc/torch_binding.cpp +1483 -0
  307. vllm_ascend-0.13.0/csrc/torch_binding_meta.cpp +478 -0
  308. vllm_ascend-0.13.0/csrc/utils/CMakeLists.txt +48 -0
  309. vllm_ascend-0.13.0/csrc/utils/inc/aclnn_util.h +14 -0
  310. vllm_ascend-0.13.0/csrc/utils/inc/error/ops_error.h +25 -0
  311. vllm_ascend-0.13.0/csrc/utils/inc/fallback.h +497 -0
  312. vllm_ascend-0.13.0/csrc/utils/inc/fallback_comm.h +38 -0
  313. vllm_ascend-0.13.0/csrc/utils/inc/kernel/comm_args.h +72 -0
  314. vllm_ascend-0.13.0/csrc/utils/inc/kernel/data_copy.h +68 -0
  315. vllm_ascend-0.13.0/csrc/utils/inc/kernel/dropmask.h +121 -0
  316. vllm_ascend-0.13.0/csrc/utils/inc/kernel/pse.h +483 -0
  317. vllm_ascend-0.13.0/csrc/utils/inc/kernel/sync_collectives.h +426 -0
  318. vllm_ascend-0.13.0/csrc/utils/inc/kernel/util.h +144 -0
  319. vllm_ascend-0.13.0/csrc/utils/inc/log/inner/dfx_base.h +190 -0
  320. vllm_ascend-0.13.0/csrc/utils/inc/log/ops_log.h +59 -0
  321. vllm_ascend-0.13.0/csrc/utils/inc/tiling/data_copy_transpose_tiling.h +47 -0
  322. vllm_ascend-0.13.0/csrc/utils/inc/tiling/data_copy_transpose_tiling_def.h +43 -0
  323. vllm_ascend-0.13.0/csrc/utils/inc/tiling/tiling_base.h +225 -0
  324. vllm_ascend-0.13.0/csrc/utils/inc/tiling/tiling_templates_registry.h +162 -0
  325. vllm_ascend-0.13.0/csrc/utils/inc/tiling/tiling_type.h +136 -0
  326. vllm_ascend-0.13.0/csrc/utils/src/fallback_comm.cpp +53 -0
  327. vllm_ascend-0.13.0/csrc/utils.h +55 -0
  328. vllm_ascend-0.13.0/docs/README.md +24 -0
  329. vllm_ascend-0.13.0/docs/source/_templates/sections/header.html +58 -0
  330. vllm_ascend-0.13.0/docs/source/assets/cp/blocktable.png +0 -0
  331. vllm_ascend-0.13.0/docs/source/assets/cp/chunkedprefill.png +0 -0
  332. vllm_ascend-0.13.0/docs/source/assets/cp/dcp-decode.png +0 -0
  333. vllm_ascend-0.13.0/docs/source/assets/cp/dcp-prefill.png +0 -0
  334. vllm_ascend-0.13.0/docs/source/assets/cp/head-tail-style.png +0 -0
  335. vllm_ascend-0.13.0/docs/source/assets/cp/overview.png +0 -0
  336. vllm_ascend-0.13.0/docs/source/assets/cp/pcp-decode.png +0 -0
  337. vllm_ascend-0.13.0/docs/source/assets/cp/pcp-prefill.png +0 -0
  338. vllm_ascend-0.13.0/docs/source/assets/deployment.png +0 -0
  339. vllm_ascend-0.13.0/docs/source/assets/disaggregated_prefill_pull.png +0 -0
  340. vllm_ascend-0.13.0/docs/source/assets/disaggregated_prefill_push.png +0 -0
  341. vllm_ascend-0.13.0/docs/source/assets/eplb.png +0 -0
  342. vllm_ascend-0.13.0/docs/source/assets/quantization/get_quant_method.png +0 -0
  343. vllm_ascend-0.13.0/docs/source/assets/quantization/quant_algorithm_overview.png +0 -0
  344. vllm_ascend-0.13.0/docs/source/assets/quantization/quant_method_base_class.png +0 -0
  345. vllm_ascend-0.13.0/docs/source/assets/quantization/quant_method_call_flow.png +0 -0
  346. vllm_ascend-0.13.0/docs/source/assets/quantization/quant_methods_overview.png +0 -0
  347. vllm_ascend-0.13.0/docs/source/assets/workflow.png +0 -0
  348. vllm_ascend-0.13.0/docs/source/community/contributors.md +291 -0
  349. vllm_ascend-0.13.0/docs/source/community/user_stories/index.md +19 -0
  350. vllm_ascend-0.13.0/docs/source/community/versioning_policy.md +162 -0
  351. vllm_ascend-0.13.0/docs/source/conf.py +145 -0
  352. vllm_ascend-0.13.0/docs/source/developer_guide/contribution/index.md +112 -0
  353. vllm_ascend-0.13.0/docs/source/developer_guide/contribution/multi_node_test.md +349 -0
  354. vllm_ascend-0.13.0/docs/source/developer_guide/contribution/testing.md +288 -0
  355. vllm_ascend-0.13.0/docs/source/developer_guide/evaluation/index.md +10 -0
  356. vllm_ascend-0.13.0/docs/source/developer_guide/evaluation/using_ais_bench.md +324 -0
  357. vllm_ascend-0.13.0/docs/source/developer_guide/evaluation/using_evalscope.md +176 -0
  358. vllm_ascend-0.13.0/docs/source/developer_guide/evaluation/using_lm_eval.md +302 -0
  359. vllm_ascend-0.13.0/docs/source/developer_guide/evaluation/using_opencompass.md +124 -0
  360. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/ACL_Graph.md +102 -0
  361. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/KV_Cache_Pool_Guide.md +83 -0
  362. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/ModelRunner_prepare_inputs.md +259 -0
  363. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/add_custom_aclnn_op.md +25 -0
  364. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/context_parallel.md +119 -0
  365. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/disaggregated_prefill.md +103 -0
  366. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/eplb_swift_balancer.md +222 -0
  367. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/index.md +17 -0
  368. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/patch.md +75 -0
  369. vllm_ascend-0.13.0/docs/source/developer_guide/feature_guide/quantization.md +111 -0
  370. vllm_ascend-0.13.0/docs/source/developer_guide/performance_and_debug/index.md +11 -0
  371. vllm_ascend-0.13.0/docs/source/developer_guide/performance_and_debug/msprobe_guide.md +516 -0
  372. vllm_ascend-0.13.0/docs/source/developer_guide/performance_and_debug/optimization_and_tuning.md +268 -0
  373. vllm_ascend-0.13.0/docs/source/developer_guide/performance_and_debug/performance_benchmark.md +239 -0
  374. vllm_ascend-0.13.0/docs/source/developer_guide/performance_and_debug/service_profiling_guide.md +250 -0
  375. vllm_ascend-0.13.0/docs/source/faqs.md +250 -0
  376. vllm_ascend-0.13.0/docs/source/index.md +71 -0
  377. vllm_ascend-0.13.0/docs/source/installation.md +494 -0
  378. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/community/contributors.po +5508 -0
  379. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/community/governance.po +218 -0
  380. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/community/user_stories/index.po +98 -0
  381. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/community/user_stories/llamafactory.po +97 -0
  382. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/community/versioning_policy.po +926 -0
  383. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/contribution/index.po +182 -0
  384. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/contribution/multi_node_test.po +219 -0
  385. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/contribution/testing.po +225 -0
  386. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_ais_bench.po +239 -0
  387. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_evalscope.po +107 -0
  388. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_lm_eval.po +118 -0
  389. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_opencompass.po +80 -0
  390. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/ACL_Graph.po +266 -0
  391. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/KV_Cache_Pool_Guide.po +300 -0
  392. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/ModelRunner_prepare_inputs.po +625 -0
  393. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/add_custom_aclnn_op.po +85 -0
  394. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/context_parallel.po +369 -0
  395. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/disaggregated_prefill.po +347 -0
  396. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/eplb_swift_balancer.po +457 -0
  397. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/patch.po +224 -0
  398. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/quantization.po +360 -0
  399. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/modeling/adding_a_new_model.po +331 -0
  400. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/index.po +26 -0
  401. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/msprobe_guide.po +588 -0
  402. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/optimization_and_tuning.po +349 -0
  403. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/performance_benchmark.po +312 -0
  404. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/profile_execute_duration.po +78 -0
  405. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/service_profiling_guide.po +612 -0
  406. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/faqs.po +654 -0
  407. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/index.po +75 -0
  408. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/installation.po +453 -0
  409. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/quick_start.po +160 -0
  410. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/310p.po +125 -0
  411. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/DeepSeek-R1.po +370 -0
  412. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/DeepSeek-V3.1.po +612 -0
  413. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/DeepSeek-V3.2.po +395 -0
  414. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/GLM4.x.po +325 -0
  415. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Kimi-K2-Thinking.po +65 -0
  416. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/PaddleOCR-VL.po +218 -0
  417. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen-VL-Dense.po +363 -0
  418. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen2.5-7B.po +279 -0
  419. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen2.5-Omni.po +302 -0
  420. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3-235B-A22B.po +739 -0
  421. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3-30B-A3B.po +67 -0
  422. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3-32B-W4A4.po +91 -0
  423. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3-8B-W4A8.po +73 -0
  424. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3-Coder-30B-A3B.po +216 -0
  425. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3-Dense.po +908 -0
  426. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3-Next.po +305 -0
  427. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3-Omni-30B-A3B-Thinking.po +248 -0
  428. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3-VL-235B-A22B-Instruct.po +475 -0
  429. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3_embedding.po +164 -0
  430. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/Qwen3_reranker.po +171 -0
  431. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/long_sequence_context_parallel_multi_node.po +447 -0
  432. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/long_sequence_context_parallel_single_node.po +387 -0
  433. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/pd_colocated_mooncake_multi_instance.po +518 -0
  434. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/pd_disaggregation_mooncake_multi_node.po +406 -0
  435. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/pd_disaggregation_mooncake_single_node.po +214 -0
  436. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/ray.po +235 -0
  437. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu_multimodal.po +99 -0
  438. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/configuration/additional_config.po +464 -0
  439. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/deployment_guide/index.po +25 -0
  440. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/deployment_guide/using_volcano_kthena.po +290 -0
  441. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/Fine_grained_TP.po +327 -0
  442. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/Multi_Token_Prediction.po +260 -0
  443. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/context_parallel.po +304 -0
  444. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/dynamic_batch.po +101 -0
  445. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/eplb_swift_balancer.po +268 -0
  446. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/external_dp.po +175 -0
  447. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/graph_mode.po +143 -0
  448. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/kv_pool.po +290 -0
  449. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/large_scale_ep.po +496 -0
  450. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/layer_sharding.po +181 -0
  451. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/lora.po +106 -0
  452. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/netloader.po +359 -0
  453. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/quantization.po +193 -0
  454. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/sleep_mode.po +148 -0
  455. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/speculative_decoding.po +176 -0
  456. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/structured_output.po +93 -0
  457. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/ucm_deployment.po +240 -0
  458. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/release_notes.po +5278 -0
  459. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/index.po +31 -0
  460. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/supported_features.po +244 -0
  461. vllm_ascend-0.13.0/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/supported_models.po +537 -0
  462. vllm_ascend-0.13.0/docs/source/quick_start.md +195 -0
  463. vllm_ascend-0.13.0/docs/source/tutorials/310p.md +409 -0
  464. vllm_ascend-0.13.0/docs/source/tutorials/DeepSeek-R1.md +309 -0
  465. vllm_ascend-0.13.0/docs/source/tutorials/DeepSeek-V3.1.md +724 -0
  466. vllm_ascend-0.13.0/docs/source/tutorials/DeepSeek-V3.2.md +656 -0
  467. vllm_ascend-0.13.0/docs/source/tutorials/GLM4.x.md +173 -0
  468. vllm_ascend-0.13.0/docs/source/tutorials/Kimi-K2-Thinking.md +107 -0
  469. vllm_ascend-0.13.0/docs/source/tutorials/PaddleOCR-VL.md +227 -0
  470. vllm_ascend-0.13.0/docs/source/tutorials/Qwen-VL-Dense.md +577 -0
  471. vllm_ascend-0.13.0/docs/source/tutorials/Qwen2.5-7B.md +178 -0
  472. vllm_ascend-0.13.0/docs/source/tutorials/Qwen2.5-Omni.md +209 -0
  473. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3-235B-A22B.md +622 -0
  474. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3-30B-A3B.md +113 -0
  475. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3-32B-W4A4.md +143 -0
  476. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3-8B-W4A8.md +138 -0
  477. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3-Coder-30B-A3B.md +105 -0
  478. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3-Dense.md +378 -0
  479. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3-Next.md +181 -0
  480. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3-Omni-30B-A3B-Thinking.md +311 -0
  481. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3-VL-235B-A22B-Instruct.md +273 -0
  482. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3_embedding.md +117 -0
  483. vllm_ascend-0.13.0/docs/source/tutorials/Qwen3_reranker.md +188 -0
  484. vllm_ascend-0.13.0/docs/source/tutorials/index.md +33 -0
  485. vllm_ascend-0.13.0/docs/source/tutorials/long_sequence_context_parallel_multi_node.md +372 -0
  486. vllm_ascend-0.13.0/docs/source/tutorials/long_sequence_context_parallel_single_node.md +174 -0
  487. vllm_ascend-0.13.0/docs/source/tutorials/pd_colocated_mooncake_multi_instance.md +343 -0
  488. vllm_ascend-0.13.0/docs/source/tutorials/pd_disaggregation_mooncake_multi_node.md +947 -0
  489. vllm_ascend-0.13.0/docs/source/tutorials/pd_disaggregation_mooncake_single_node.md +278 -0
  490. vllm_ascend-0.13.0/docs/source/tutorials/ray.md +187 -0
  491. vllm_ascend-0.13.0/docs/source/user_guide/configuration/additional_config.md +119 -0
  492. vllm_ascend-0.13.0/docs/source/user_guide/deployment_guide/index.md +7 -0
  493. vllm_ascend-0.13.0/docs/source/user_guide/deployment_guide/using_volcano_kthena.md +433 -0
  494. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/Fine_grained_TP.md +103 -0
  495. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/Multi_Token_Prediction.md +109 -0
  496. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/context_parallel.md +88 -0
  497. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/dynamic_batch.md +51 -0
  498. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/eplb_swift_balancer.md +98 -0
  499. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/external_dp.md +86 -0
  500. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/graph_mode.md +82 -0
  501. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/images/layer_sharding.png +0 -0
  502. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/images/netloader_flowchart.png +0 -0
  503. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/images/netloader_timing_diagram.png +0 -0
  504. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/index.md +25 -0
  505. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/kv_pool.md +362 -0
  506. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/large_scale_ep.md +504 -0
  507. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/layer_sharding.md +71 -0
  508. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/lora.md +26 -0
  509. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/netloader.md +97 -0
  510. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/quantization.md +148 -0
  511. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/sleep_mode.md +116 -0
  512. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/speculative_decoding.md +146 -0
  513. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/structured_output.md +17 -0
  514. vllm_ascend-0.13.0/docs/source/user_guide/feature_guide/ucm_deployment.md +141 -0
  515. vllm_ascend-0.13.0/docs/source/user_guide/release_notes.md +1056 -0
  516. vllm_ascend-0.13.0/docs/source/user_guide/support_matrix/supported_features.md +48 -0
  517. vllm_ascend-0.13.0/docs/source/user_guide/support_matrix/supported_models.md +86 -0
  518. vllm_ascend-0.13.0/examples/chat_templates/template_qwen2_audio.jinja +23 -0
  519. vllm_ascend-0.13.0/examples/disaggregated_prefill_v1/load_balance_proxy_layerwise_server_example.py +585 -0
  520. vllm_ascend-0.13.0/examples/disaggregated_prefill_v1/load_balance_proxy_server_example.py +897 -0
  521. vllm_ascend-0.13.0/examples/disaggregated_prefill_v1/mooncake_connector_deployment_guide.md +165 -0
  522. vllm_ascend-0.13.0/examples/eplb/eplb_strategy.py +183 -0
  523. vllm_ascend-0.13.0/examples/external_online_dp/README.md +54 -0
  524. vllm_ascend-0.13.0/examples/external_online_dp/dp_load_balance_proxy_server.py +404 -0
  525. vllm_ascend-0.13.0/examples/external_online_dp/launch_online_dp.py +98 -0
  526. vllm_ascend-0.13.0/examples/external_online_dp/run_dp_template.sh +32 -0
  527. vllm_ascend-0.13.0/examples/offline_data_parallel.py +266 -0
  528. vllm_ascend-0.13.0/examples/offline_disaggregated_prefill_npu.py +168 -0
  529. vllm_ascend-0.13.0/examples/offline_embed.py +58 -0
  530. vllm_ascend-0.13.0/examples/offline_external_launcher.py +331 -0
  531. vllm_ascend-0.13.0/examples/offline_inference_audio_language.py +106 -0
  532. vllm_ascend-0.13.0/examples/offline_inference_npu_long_seq.py +59 -0
  533. vllm_ascend-0.13.0/examples/offline_inference_sleep_mode_npu.py +57 -0
  534. vllm_ascend-0.13.0/examples/offline_weight_load.py +334 -0
  535. vllm_ascend-0.13.0/examples/prompt_embed_inference.py +97 -0
  536. vllm_ascend-0.13.0/examples/quantization/llm-compressor/w8a8_int8.py +162 -0
  537. vllm_ascend-0.13.0/examples/quantization/llm-compressor/w8a8_int8_dynamic.py +82 -0
  538. vllm_ascend-0.13.0/examples/run_dp_server.sh +30 -0
  539. vllm_ascend-0.13.0/format.sh +44 -0
  540. vllm_ascend-0.13.0/mypy.ini +34 -0
  541. vllm_ascend-0.13.0/pyproject.toml +45 -0
  542. vllm_ascend-0.13.0/requirements-dev.txt +25 -0
  543. vllm_ascend-0.13.0/requirements.txt +38 -0
  544. vllm_ascend-0.13.0/setup.py +536 -0
  545. vllm_ascend-0.13.0/tests/e2e/conftest.py +794 -0
  546. vllm_ascend-0.13.0/tests/e2e/doctests/002-pip-binary-installation-test.sh +66 -0
  547. vllm_ascend-0.13.0/tests/e2e/model_utils.py +76 -0
  548. vllm_ascend-0.13.0/tests/e2e/models/configs/ERNIE-4.5-21B-A3B-PT.yaml +9 -0
  549. vllm_ascend-0.13.0/tests/e2e/models/configs/InternVL3_5-8B-hf.yaml +10 -0
  550. vllm_ascend-0.13.0/tests/e2e/models/configs/Llama-3.2-3B-Instruct.yaml +10 -0
  551. vllm_ascend-0.13.0/tests/e2e/models/configs/Molmo-7B-D-0924.yaml +13 -0
  552. vllm_ascend-0.13.0/tests/e2e/models/configs/Qwen2.5-Omni-7B.yaml +10 -0
  553. vllm_ascend-0.13.0/tests/e2e/models/configs/Qwen3-30B-A3B-W8A8.yaml +16 -0
  554. vllm_ascend-0.13.0/tests/e2e/models/configs/Qwen3-30B-A3B.yaml +19 -0
  555. vllm_ascend-0.13.0/tests/e2e/models/configs/Qwen3-8B-W8A8.yaml +12 -0
  556. vllm_ascend-0.13.0/tests/e2e/models/configs/Qwen3-Next-80B-A3B-Instruct.yaml +15 -0
  557. vllm_ascend-0.13.0/tests/e2e/models/configs/Qwen3-Omni-30B-A3B-Instruct.yaml +11 -0
  558. vllm_ascend-0.13.0/tests/e2e/models/configs/Qwen3-VL-8B-Instruct.yaml +11 -0
  559. vllm_ascend-0.13.0/tests/e2e/models/configs/accuracy.txt +15 -0
  560. vllm_ascend-0.13.0/tests/e2e/models/configs/gemma-3-4b-it.yaml +14 -0
  561. vllm_ascend-0.13.0/tests/e2e/models/configs/internlm3-8b-instruct.yaml +13 -0
  562. vllm_ascend-0.13.0/tests/e2e/models/configs/llava-onevision-qwen2-0.5b-ov-hf.yaml +10 -0
  563. vllm_ascend-0.13.0/tests/e2e/models/conftest.py +72 -0
  564. vllm_ascend-0.13.0/tests/e2e/models/test_lm_eval_correctness.py +159 -0
  565. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/spec_decode/test_spec_decode.py +153 -0
  566. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_aclgraph_capture_replay.py +240 -0
  567. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_data_parallel.py +79 -0
  568. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_expert_parallel.py +34 -0
  569. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_external_launcher.py +240 -0
  570. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_full_graph_mode.py +116 -0
  571. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_ilama_lora_tp2.py +26 -0
  572. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_offline_inference_distributed.py +237 -0
  573. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_offline_weight_load.py +75 -0
  574. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_pipeline_parallel.py +48 -0
  575. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_prefix_caching.py +85 -0
  576. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_quantization.py +44 -0
  577. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_qwen3_moe.py +128 -0
  578. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_shared_expert_dp.py +92 -0
  579. vllm_ascend-0.13.0/tests/e2e/multicard/2-cards/test_single_request_aclgraph.py +85 -0
  580. vllm_ascend-0.13.0/tests/e2e/multicard/4-cards/long_sequence/test_accuracy.py +281 -0
  581. vllm_ascend-0.13.0/tests/e2e/multicard/4-cards/long_sequence/test_basic.py +248 -0
  582. vllm_ascend-0.13.0/tests/e2e/multicard/4-cards/long_sequence/test_chunked_prefill.py +122 -0
  583. vllm_ascend-0.13.0/tests/e2e/multicard/4-cards/long_sequence/test_mtp.py +153 -0
  584. vllm_ascend-0.13.0/tests/e2e/multicard/4-cards/spec_decode/test_mtp_qwen3_next.py +155 -0
  585. vllm_ascend-0.13.0/tests/e2e/multicard/4-cards/test_data_parallel_tp2.py +49 -0
  586. vllm_ascend-0.13.0/tests/e2e/multicard/4-cards/test_kimi_k2.py +44 -0
  587. vllm_ascend-0.13.0/tests/e2e/multicard/4-cards/test_qwen3_next.py +77 -0
  588. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/DeepSeek-R1-W8A8-A2.yaml +62 -0
  589. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/DeepSeek-R1-W8A8-EPLB.yaml +195 -0
  590. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/DeepSeek-R1-W8A8-longseq.yaml +111 -0
  591. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/DeepSeek-R1-W8A8.yaml +209 -0
  592. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/DeepSeek-V3.1-BF16.yaml +82 -0
  593. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/DeepSeek-V3.yaml +112 -0
  594. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/DeepSeek-V3_2-W8A8-A3-dual-nodes.yaml +86 -0
  595. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/Kimi-K2-Instruct-W8A8.yaml +79 -0
  596. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/Qwen3-235B-A22B-A2.yaml +72 -0
  597. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/Qwen3-235B-A22B.yaml +73 -0
  598. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/Qwen3-235B-W8A8-EPLB.yaml +93 -0
  599. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/Qwen3-235B-W8A8-longseq.yaml +100 -0
  600. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/Qwen3-235B-W8A8.yaml +89 -0
  601. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/Qwen3-235B-disagg-pd.yaml +121 -0
  602. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/config/Qwen3-VL-235B-disagg-pd.yaml +108 -0
  603. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/scripts/lws.yaml.jinja2 +140 -0
  604. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/scripts/multi_node_config.py +352 -0
  605. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/scripts/run.sh +170 -0
  606. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/scripts/test_multi_node.py +46 -0
  607. vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/scripts/utils.py +149 -0
  608. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_deepseek_r1_0528_w8a8.py +117 -0
  609. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_deepseek_r1_0528_w8a8_eplb.py +115 -0
  610. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_deepseek_r1_w8a8_hbm.py +123 -0
  611. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_deepseek_v3_2_w8a8.py +108 -0
  612. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_glm4_5.py +115 -0
  613. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_kimi_k2_thinking.py +110 -0
  614. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_mtpx_deepseek_r1_0528_w8a8.py +140 -0
  615. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_prefix_cache_deepseek_r1_0528_w8a8.py +107 -0
  616. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_prefix_cache_qwen3_32b_int8.py +99 -0
  617. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen2_5_vl_32b.py +110 -0
  618. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen2_5_vl_7b.py +102 -0
  619. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen3_235b_a22b_w8a8_eplb.py +105 -0
  620. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen3_235b_w8a8.py +101 -0
  621. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen3_30b_w8a8.py +92 -0
  622. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen3_32b.py +99 -0
  623. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen3_32b_int8.py +129 -0
  624. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen3_32b_int8_a3_feature_stack3.py +98 -0
  625. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen3_8b.py +99 -0
  626. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen3_next.py +113 -0
  627. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwen3_next_w8a8.py +104 -0
  628. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models/test_qwq_32b.py +116 -0
  629. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/multicard_ops_a2/test_matmul_allreduce_add_rmsnorm.py +135 -0
  630. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/multicard_ops_a3/test_dispatch_ffn_combine.py +234 -0
  631. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/multicard_ops_a3/test_dispatch_gmm_combine_decode.py +469 -0
  632. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_add_rms_norm_bias.py +148 -0
  633. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_batch_matmul_transpose.py +141 -0
  634. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_fused_moe.py +338 -0
  635. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_gmm_swiglu_quant_weight_nz_tensor_list.py +148 -0
  636. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_grouped_matmul_swiglu_quant.py +175 -0
  637. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_mla_preprocess.py +117 -0
  638. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_mla_preprocess_nq.py +101 -0
  639. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_mla_preprocess_qdown.py +118 -0
  640. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_moe_init_routing_custom.py +349 -0
  641. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/test_npu_moe_gating_top_k.py +210 -0
  642. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton/test_causal_conv1d.py +361 -0
  643. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton/test_chunk_gated_delta_rule.py +33 -0
  644. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton/test_fused_qkvzba_split_reshape_cat.py +100 -0
  645. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton/test_fused_sigmoid_gating_delta_rule.py +65 -0
  646. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton/test_l2norm.py +34 -0
  647. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton/test_prepare_inputs_padded.py +80 -0
  648. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton/test_rejection_sample.py +229 -0
  649. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton/test_rope.py +141 -0
  650. vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton/test_split_qkv_rmsnorm_rope.py +214 -0
  651. vllm_ascend-0.13.0/tests/e2e/singlecard/compile/backend.py +130 -0
  652. vllm_ascend-0.13.0/tests/e2e/singlecard/compile/test_norm_quant_fusion.py +357 -0
  653. vllm_ascend-0.13.0/tests/e2e/singlecard/model_runner_v2/test_basic.py +51 -0
  654. vllm_ascend-0.13.0/tests/e2e/singlecard/pooling/test_classification.py +34 -0
  655. vllm_ascend-0.13.0/tests/e2e/singlecard/pooling/test_embedding.py +99 -0
  656. vllm_ascend-0.13.0/tests/e2e/singlecard/pooling/test_scoring.py +187 -0
  657. vllm_ascend-0.13.0/tests/e2e/singlecard/spec_decode/test_mtp_eagle_correctness.py +209 -0
  658. vllm_ascend-0.13.0/tests/e2e/singlecard/spec_decode/test_v1_spec_decode.py +382 -0
  659. vllm_ascend-0.13.0/tests/e2e/singlecard/test_aclgraph_accuracy.py +115 -0
  660. vllm_ascend-0.13.0/tests/e2e/singlecard/test_aclgraph_mem.py +99 -0
  661. vllm_ascend-0.13.0/tests/e2e/singlecard/test_async_scheduling.py +240 -0
  662. vllm_ascend-0.13.0/tests/e2e/singlecard/test_batch_invariant.py +672 -0
  663. vllm_ascend-0.13.0/tests/e2e/singlecard/test_camem.py +60 -0
  664. vllm_ascend-0.13.0/tests/e2e/singlecard/test_completion_with_prompt_embeds.py +76 -0
  665. vllm_ascend-0.13.0/tests/e2e/singlecard/test_cpu_offloading.py +178 -0
  666. vllm_ascend-0.13.0/tests/e2e/singlecard/test_guided_decoding.py +155 -0
  667. vllm_ascend-0.13.0/tests/e2e/singlecard/test_ilama_lora.py +65 -0
  668. vllm_ascend-0.13.0/tests/e2e/singlecard/test_models.py +75 -0
  669. vllm_ascend-0.13.0/tests/e2e/singlecard/test_multistream_overlap_shared_expert.py +108 -0
  670. vllm_ascend-0.13.0/tests/e2e/singlecard/test_quantization.py +79 -0
  671. vllm_ascend-0.13.0/tests/e2e/singlecard/test_sampler.py +70 -0
  672. vllm_ascend-0.13.0/tests/e2e/singlecard/test_vlm.py +98 -0
  673. vllm_ascend-0.13.0/tests/e2e/singlecard/test_xlite.py +107 -0
  674. vllm_ascend-0.13.0/tests/e2e/singlecard/utils.py +76 -0
  675. vllm_ascend-0.13.0/tests/e2e/vllm_interface/singlecard/test_sampler.py +37 -0
  676. vllm_ascend-0.13.0/tests/ut/attention/test_attention_cp.py +672 -0
  677. vllm_ascend-0.13.0/tests/ut/attention/test_attention_mask.py +53 -0
  678. vllm_ascend-0.13.0/tests/ut/attention/test_attention_v1.py +322 -0
  679. vllm_ascend-0.13.0/tests/ut/attention/test_mla_cp.py +1003 -0
  680. vllm_ascend-0.13.0/tests/ut/attention/test_mla_v1.py +1051 -0
  681. vllm_ascend-0.13.0/tests/ut/attention/test_sfa_v1.py +207 -0
  682. vllm_ascend-0.13.0/tests/ut/attention/utils.py +64 -0
  683. vllm_ascend-0.13.0/tests/ut/compilation/test_acl_graph.py +857 -0
  684. vllm_ascend-0.13.0/tests/ut/compilation/test_add_rms_norm_quant.py +148 -0
  685. vllm_ascend-0.13.0/tests/ut/conftest.py +39 -0
  686. vllm_ascend-0.13.0/tests/ut/core/test_scheduler_dynamic_batch.py +750 -0
  687. vllm_ascend-0.13.0/tests/ut/device_allocator/test_camem.py +195 -0
  688. vllm_ascend-0.13.0/tests/ut/distributed/mooncake/test_config_data.py +78 -0
  689. vllm_ascend-0.13.0/tests/ut/distributed/test_parallel_state.py +77 -0
  690. vllm_ascend-0.13.0/tests/ut/eplb/adaptor/test_abstract_adaptor.py +61 -0
  691. vllm_ascend-0.13.0/tests/ut/eplb/core/test_eplb_device_transfer_loader.py +116 -0
  692. vllm_ascend-0.13.0/tests/ut/eplb/core/test_eplb_utils.py +211 -0
  693. vllm_ascend-0.13.0/tests/ut/kv_connector/test_mooncake_connector.py +1345 -0
  694. vllm_ascend-0.13.0/tests/ut/kv_connector/test_mooncake_layerwise_connector.py +930 -0
  695. vllm_ascend-0.13.0/tests/ut/kv_connector/utils.py +210 -0
  696. vllm_ascend-0.13.0/tests/ut/model_loader/netloader/test_netloader.py +215 -0
  697. vllm_ascend-0.13.0/tests/ut/model_loader/netloader/test_netloader_elastic.py +432 -0
  698. vllm_ascend-0.13.0/tests/ut/model_loader/netloader/test_netloader_load.py +114 -0
  699. vllm_ascend-0.13.0/tests/ut/model_loader/netloader/test_netloader_utils.py +61 -0
  700. vllm_ascend-0.13.0/tests/ut/ops/test_activation.py +76 -0
  701. vllm_ascend-0.13.0/tests/ut/ops/test_comm_utils.py +98 -0
  702. vllm_ascend-0.13.0/tests/ut/ops/test_fused_moe.py +593 -0
  703. vllm_ascend-0.13.0/tests/ut/ops/test_layernorm.py +77 -0
  704. vllm_ascend-0.13.0/tests/ut/ops/test_linear.py +160 -0
  705. vllm_ascend-0.13.0/tests/ut/ops/test_mla.py +155 -0
  706. vllm_ascend-0.13.0/tests/ut/ops/test_moe_comm_method.py +228 -0
  707. vllm_ascend-0.13.0/tests/ut/ops/test_moe_mlp.py +51 -0
  708. vllm_ascend-0.13.0/tests/ut/ops/test_prepare_finalize.py +223 -0
  709. vllm_ascend-0.13.0/tests/ut/ops/test_rotary_embedding.py +453 -0
  710. vllm_ascend-0.13.0/tests/ut/ops/test_token_dispatcher.py +479 -0
  711. vllm_ascend-0.13.0/tests/ut/ops/test_vocab_parallel_embedding.py +260 -0
  712. vllm_ascend-0.13.0/tests/ut/quantization/test_quant_config.py +158 -0
  713. vllm_ascend-0.13.0/tests/ut/quantization/test_utils.py +50 -0
  714. vllm_ascend-0.13.0/tests/ut/quantization/test_w4a16.py +269 -0
  715. vllm_ascend-0.13.0/tests/ut/quantization/test_w4a4_flatquant_dynamic.py +216 -0
  716. vllm_ascend-0.13.0/tests/ut/quantization/test_w4a8_dynamic.py +306 -0
  717. vllm_ascend-0.13.0/tests/ut/quantization/test_w8a16.py +91 -0
  718. vllm_ascend-0.13.0/tests/ut/quantization/test_w8a8.py +218 -0
  719. vllm_ascend-0.13.0/tests/ut/quantization/test_w8a8_dynamic.py +106 -0
  720. vllm_ascend-0.13.0/tests/ut/sample/test_rejection_sampler.py +250 -0
  721. vllm_ascend-0.13.0/tests/ut/sample/test_sampler.py +11 -0
  722. vllm_ascend-0.13.0/tests/ut/spec_decode/test_eagle_proposer.py +440 -0
  723. vllm_ascend-0.13.0/tests/ut/spec_decode/test_mtp_proposer.py +344 -0
  724. vllm_ascend-0.13.0/tests/ut/test_ascend_config.py +109 -0
  725. vllm_ascend-0.13.0/tests/ut/test_platform.py +489 -0
  726. vllm_ascend-0.13.0/tests/ut/test_utils.py +304 -0
  727. vllm_ascend-0.13.0/tests/ut/worker/test_block_table.py +258 -0
  728. vllm_ascend-0.13.0/tests/ut/worker/test_pcp_manager.py +512 -0
  729. vllm_ascend-0.13.0/tests/ut/worker/test_worker_v1.py +1166 -0
  730. vllm_ascend-0.13.0/tools/aisbench.py +335 -0
  731. vllm_ascend-0.13.0/tools/collect_user_first_contribution.sh +83 -0
  732. vllm_ascend-0.13.0/tools/format_contributors.py +98 -0
  733. vllm_ascend-0.13.0/tools/install_flash_infer_attention_score_ops_a2.sh +37 -0
  734. vllm_ascend-0.13.0/tools/install_flash_infer_attention_score_ops_a3.sh +36 -0
  735. vllm_ascend-0.13.0/tools/mypy.sh +40 -0
  736. vllm_ascend-0.13.0/tools/send_request.py +37 -0
  737. vllm_ascend-0.13.0/tools/vllm_bench.py +154 -0
  738. vllm_ascend-0.13.0/typos.toml +177 -0
  739. vllm_ascend-0.13.0/vllm_ascend/__init__.py +37 -0
  740. vllm_ascend-0.13.0/vllm_ascend/_cann_ops_custom/.gitkeep +3 -0
  741. vllm_ascend-0.13.0/vllm_ascend/_version.py +34 -0
  742. vllm_ascend-0.13.0/vllm_ascend/ascend_config.py +321 -0
  743. vllm_ascend-0.13.0/vllm_ascend/ascend_forward_context.py +279 -0
  744. vllm_ascend-0.13.0/vllm_ascend/attention/attention_mask.py +102 -0
  745. vllm_ascend-0.13.0/vllm_ascend/attention/attention_v1.py +776 -0
  746. vllm_ascend-0.13.0/vllm_ascend/attention/context_parallel/attention_cp.py +908 -0
  747. vllm_ascend-0.13.0/vllm_ascend/attention/context_parallel/common_cp.py +132 -0
  748. vllm_ascend-0.13.0/vllm_ascend/attention/context_parallel/mla_cp.py +779 -0
  749. vllm_ascend-0.13.0/vllm_ascend/attention/mla_v1.py +1544 -0
  750. vllm_ascend-0.13.0/vllm_ascend/attention/sfa_v1.py +1110 -0
  751. vllm_ascend-0.13.0/vllm_ascend/attention/utils.py +271 -0
  752. vllm_ascend-0.13.0/vllm_ascend/batch_invariant.py +82 -0
  753. vllm_ascend-0.13.0/vllm_ascend/compilation/acl_graph.py +648 -0
  754. vllm_ascend-0.13.0/vllm_ascend/compilation/compiler_interface.py +139 -0
  755. vllm_ascend-0.13.0/vllm_ascend/compilation/graph_fusion_pass_manager.py +60 -0
  756. vllm_ascend-0.13.0/vllm_ascend/compilation/npugraph_ex_passes/add_rms_norm_quant.py +301 -0
  757. vllm_ascend-0.13.0/vllm_ascend/compilation/passes/norm_quant_fusion_pass.py +317 -0
  758. vllm_ascend-0.13.0/vllm_ascend/compilation/passes/qknorm_rope_fusion_pass.py +291 -0
  759. vllm_ascend-0.13.0/vllm_ascend/core/multi_block_pool.py +184 -0
  760. vllm_ascend-0.13.0/vllm_ascend/core/recompute_scheduler.py +883 -0
  761. vllm_ascend-0.13.0/vllm_ascend/core/scheduler_dynamic_batch.py +597 -0
  762. vllm_ascend-0.13.0/vllm_ascend/device_allocator/camem.py +275 -0
  763. vllm_ascend-0.13.0/vllm_ascend/distributed/__init__.py +44 -0
  764. vllm_ascend-0.13.0/vllm_ascend/distributed/cpu_offload_connector.py +528 -0
  765. vllm_ascend-0.13.0/vllm_ascend/distributed/cpu_offload_manager/cpu_kv_cache_manager.py +203 -0
  766. vllm_ascend-0.13.0/vllm_ascend/distributed/cpu_offload_manager/metadata.py +272 -0
  767. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/__init__.py +1 -0
  768. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/ascend_store_connector.py +183 -0
  769. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/backend/__init__.py +1 -0
  770. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/backend/backend.py +29 -0
  771. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/backend/memcache_backend.py +95 -0
  772. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/backend/mooncake_backend.py +190 -0
  773. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/config_data.py +405 -0
  774. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/kv_transfer.py +366 -0
  775. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/pool_scheduler.py +392 -0
  776. vllm_ascend-0.13.0/vllm_ascend/distributed/kvpool/pool_worker.py +626 -0
  777. vllm_ascend-0.13.0/vllm_ascend/distributed/mooncake_connector.py +1849 -0
  778. vllm_ascend-0.13.0/vllm_ascend/distributed/mooncake_layerwise_connector.py +1370 -0
  779. vllm_ascend-0.13.0/vllm_ascend/distributed/mooncake_transfer_engine.py +53 -0
  780. vllm_ascend-0.13.0/vllm_ascend/distributed/parallel_state.py +368 -0
  781. vllm_ascend-0.13.0/vllm_ascend/distributed/ucm_connector.py +254 -0
  782. vllm_ascend-0.13.0/vllm_ascend/distributed/utils.py +111 -0
  783. vllm_ascend-0.13.0/vllm_ascend/envs.py +155 -0
  784. vllm_ascend-0.13.0/vllm_ascend/eplb/adaptor/abstract_adaptor.py +40 -0
  785. vllm_ascend-0.13.0/vllm_ascend/eplb/adaptor/vllm_adaptor.py +184 -0
  786. vllm_ascend-0.13.0/vllm_ascend/eplb/core/eplb_device_transfer_loader.py +133 -0
  787. vllm_ascend-0.13.0/vllm_ascend/eplb/core/eplb_utils.py +191 -0
  788. vllm_ascend-0.13.0/vllm_ascend/eplb/core/eplb_worker.py +443 -0
  789. vllm_ascend-0.13.0/vllm_ascend/eplb/core/policy/policy_dynamic_ep_v2.py +768 -0
  790. vllm_ascend-0.13.0/vllm_ascend/eplb/core/policy/policy_factory.py +33 -0
  791. vllm_ascend-0.13.0/vllm_ascend/eplb/core/policy/policy_flashlb.py +648 -0
  792. vllm_ascend-0.13.0/vllm_ascend/eplb/eplb_updator.py +233 -0
  793. vllm_ascend-0.13.0/vllm_ascend/eplb/utils.py +77 -0
  794. vllm_ascend-0.13.0/vllm_ascend/flash_common3_context.py +42 -0
  795. vllm_ascend-0.13.0/vllm_ascend/kv_offload/cpu_npu.py +168 -0
  796. vllm_ascend-0.13.0/vllm_ascend/kv_offload/npu.py +64 -0
  797. vllm_ascend-0.13.0/vllm_ascend/lora/punica_npu.py +362 -0
  798. vllm_ascend-0.13.0/vllm_ascend/model_loader/netloader/__init__.py +20 -0
  799. vllm_ascend-0.13.0/vllm_ascend/model_loader/netloader/executor/__init__.py +0 -0
  800. vllm_ascend-0.13.0/vllm_ascend/model_loader/netloader/executor/elastic_load.py +170 -0
  801. vllm_ascend-0.13.0/vllm_ascend/model_loader/netloader/executor/netloader_pg.py +188 -0
  802. vllm_ascend-0.13.0/vllm_ascend/model_loader/netloader/interaction/__init__.py +0 -0
  803. vllm_ascend-0.13.0/vllm_ascend/model_loader/netloader/interaction/elastic.py +408 -0
  804. vllm_ascend-0.13.0/vllm_ascend/model_loader/netloader/load.py +84 -0
  805. vllm_ascend-0.13.0/vllm_ascend/model_loader/netloader/netloader.py +326 -0
  806. vllm_ascend-0.13.0/vllm_ascend/model_loader/netloader/utils.py +66 -0
  807. vllm_ascend-0.13.0/vllm_ascend/ops/__init__.py +62 -0
  808. vllm_ascend-0.13.0/vllm_ascend/ops/activation.py +44 -0
  809. vllm_ascend-0.13.0/vllm_ascend/ops/flashcomm2_oshard_manager.py +100 -0
  810. vllm_ascend-0.13.0/vllm_ascend/ops/fused_moe/__init__.py +0 -0
  811. vllm_ascend-0.13.0/vllm_ascend/ops/fused_moe/experts_selector.py +354 -0
  812. vllm_ascend-0.13.0/vllm_ascend/ops/fused_moe/fused_moe.py +604 -0
  813. vllm_ascend-0.13.0/vllm_ascend/ops/fused_moe/moe_comm_method.py +345 -0
  814. vllm_ascend-0.13.0/vllm_ascend/ops/fused_moe/moe_mlp.py +354 -0
  815. vllm_ascend-0.13.0/vllm_ascend/ops/fused_moe/prepare_finalize.py +489 -0
  816. vllm_ascend-0.13.0/vllm_ascend/ops/fused_moe/token_dispatcher.py +627 -0
  817. vllm_ascend-0.13.0/vllm_ascend/ops/layer_shard_linear.py +280 -0
  818. vllm_ascend-0.13.0/vllm_ascend/ops/layernorm.py +107 -0
  819. vllm_ascend-0.13.0/vllm_ascend/ops/linear.py +470 -0
  820. vllm_ascend-0.13.0/vllm_ascend/ops/linear_op.py +814 -0
  821. vllm_ascend-0.13.0/vllm_ascend/ops/mla.py +185 -0
  822. vllm_ascend-0.13.0/vllm_ascend/ops/mm_encoder_attention.py +146 -0
  823. vllm_ascend-0.13.0/vllm_ascend/ops/register_custom_ops.py +379 -0
  824. vllm_ascend-0.13.0/vllm_ascend/ops/rotary_embedding.py +655 -0
  825. vllm_ascend-0.13.0/vllm_ascend/ops/triton/__init__.py +0 -0
  826. vllm_ascend-0.13.0/vllm_ascend/ops/triton/activation/__init__.py +0 -0
  827. vllm_ascend-0.13.0/vllm_ascend/ops/triton/activation/swiglu_quant.py +117 -0
  828. vllm_ascend-0.13.0/vllm_ascend/ops/triton/batch_invariant/__init__.py +0 -0
  829. vllm_ascend-0.13.0/vllm_ascend/ops/triton/batch_invariant/matmul.py +403 -0
  830. vllm_ascend-0.13.0/vllm_ascend/ops/triton/batch_invariant/mean.py +177 -0
  831. vllm_ascend-0.13.0/vllm_ascend/ops/triton/batch_invariant/rmsnorm.py +153 -0
  832. vllm_ascend-0.13.0/vllm_ascend/ops/triton/batch_invariant/softmax.py +29 -0
  833. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/__init__.py +0 -0
  834. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/chunk.py +226 -0
  835. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/chunk_delta_h.py +259 -0
  836. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/chunk_o.py +168 -0
  837. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/chunk_scaled_dot_kkt.py +147 -0
  838. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/cumsum.py +145 -0
  839. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/fused_qkvzba_split_reshape.py +115 -0
  840. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/l2norm.py +70 -0
  841. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/layernorm_guard.py +201 -0
  842. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/sigmoid_gating.py +395 -0
  843. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/solve_tril.py +419 -0
  844. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/utils.py +79 -0
  845. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fla/wy_fast.py +131 -0
  846. vllm_ascend-0.13.0/vllm_ascend/ops/triton/fused_gdn_gating.py +118 -0
  847. vllm_ascend-0.13.0/vllm_ascend/ops/triton/linearnorm/__init__.py +0 -0
  848. vllm_ascend-0.13.0/vllm_ascend/ops/triton/linearnorm/split_qkv_rmsnorm_rope.py +305 -0
  849. vllm_ascend-0.13.0/vllm_ascend/ops/triton/mamba/__init__.py +0 -0
  850. vllm_ascend-0.13.0/vllm_ascend/ops/triton/mamba/causal_conv1d.py +721 -0
  851. vllm_ascend-0.13.0/vllm_ascend/ops/triton/reject_sample.py +461 -0
  852. vllm_ascend-0.13.0/vllm_ascend/ops/triton/rope.py +207 -0
  853. vllm_ascend-0.13.0/vllm_ascend/ops/triton/spec_decode/__init__.py +0 -0
  854. vllm_ascend-0.13.0/vllm_ascend/ops/triton/spec_decode/utils.py +68 -0
  855. vllm_ascend-0.13.0/vllm_ascend/ops/triton/triton_utils.py +30 -0
  856. vllm_ascend-0.13.0/vllm_ascend/ops/vocab_parallel_embedding.py +281 -0
  857. vllm_ascend-0.13.0/vllm_ascend/patch/__init__.py +333 -0
  858. vllm_ascend-0.13.0/vllm_ascend/patch/platform/__init__.py +48 -0
  859. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_balance_schedule.py +622 -0
  860. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_core.py +78 -0
  861. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_distributed.py +93 -0
  862. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_ec_connector.py +31 -0
  863. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_kv_cache_coordinator.py +142 -0
  864. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_kv_cache_utils.py +192 -0
  865. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_lora_model_manager.py +83 -0
  866. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_mamba_config.py +97 -0
  867. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_message_queue.py +78 -0
  868. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_multiproc_executor.py +182 -0
  869. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_set_cudagraph_sizes.py +146 -0
  870. vllm_ascend-0.13.0/vllm_ascend/patch/platform/patch_vllm_config.py +436 -0
  871. vllm_ascend-0.13.0/vllm_ascend/patch/worker/__init__.py +41 -0
  872. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_bert.py +44 -0
  873. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_deepseek.py +60 -0
  874. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_deepseekv3.py +484 -0
  875. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_model_runner.py +298 -0
  876. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_module.py +36 -0
  877. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_multimodal_merge.py +59 -0
  878. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_qwen3_next.py +343 -0
  879. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_qwen3_next_mtp.py +52 -0
  880. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_qwen3vl.py +41 -0
  881. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_rejection_sampler.py +11 -0
  882. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_rope.py +33 -0
  883. vllm_ascend-0.13.0/vllm_ascend/patch/worker/patch_triton.py +14 -0
  884. vllm_ascend-0.13.0/vllm_ascend/platform.py +581 -0
  885. vllm_ascend-0.13.0/vllm_ascend/profiling_config.py +202 -0
  886. vllm_ascend-0.13.0/vllm_ascend/quantization/__init__.py +0 -0
  887. vllm_ascend-0.13.0/vllm_ascend/quantization/compressed_tensors/__init__.py +0 -0
  888. vllm_ascend-0.13.0/vllm_ascend/quantization/compressed_tensors/compressed_tensors.py +279 -0
  889. vllm_ascend-0.13.0/vllm_ascend/quantization/quant_config.py +600 -0
  890. vllm_ascend-0.13.0/vllm_ascend/quantization/utils.py +125 -0
  891. vllm_ascend-0.13.0/vllm_ascend/quantization/w4a16.py +278 -0
  892. vllm_ascend-0.13.0/vllm_ascend/quantization/w4a4_flatquant_dynamic.py +191 -0
  893. vllm_ascend-0.13.0/vllm_ascend/quantization/w4a8_dynamic.py +482 -0
  894. vllm_ascend-0.13.0/vllm_ascend/quantization/w8a16.py +89 -0
  895. vllm_ascend-0.13.0/vllm_ascend/quantization/w8a8.py +193 -0
  896. vllm_ascend-0.13.0/vllm_ascend/quantization/w8a8_dynamic.py +353 -0
  897. vllm_ascend-0.13.0/vllm_ascend/quantization/w8a8_pdmix.py +70 -0
  898. vllm_ascend-0.13.0/vllm_ascend/quantization/w8a8mxfp8.py +98 -0
  899. vllm_ascend-0.13.0/vllm_ascend/sample/__init__.py +0 -0
  900. vllm_ascend-0.13.0/vllm_ascend/sample/rejection_sampler.py +798 -0
  901. vllm_ascend-0.13.0/vllm_ascend/sample/sampler.py +126 -0
  902. vllm_ascend-0.13.0/vllm_ascend/spec_decode/__init__.py +36 -0
  903. vllm_ascend-0.13.0/vllm_ascend/spec_decode/eagle_proposer.py +1140 -0
  904. vllm_ascend-0.13.0/vllm_ascend/spec_decode/interface.py +53 -0
  905. vllm_ascend-0.13.0/vllm_ascend/spec_decode/mtp_proposer.py +567 -0
  906. vllm_ascend-0.13.0/vllm_ascend/spec_decode/ngram_proposer.py +72 -0
  907. vllm_ascend-0.13.0/vllm_ascend/spec_decode/suffix_proposer.py +45 -0
  908. vllm_ascend-0.13.0/vllm_ascend/utils.py +1184 -0
  909. vllm_ascend-0.13.0/vllm_ascend/worker/__init__.py +0 -0
  910. vllm_ascend-0.13.0/vllm_ascend/worker/block_table.py +351 -0
  911. vllm_ascend-0.13.0/vllm_ascend/worker/model_runner_v1.py +3157 -0
  912. vllm_ascend-0.13.0/vllm_ascend/worker/npu_input_batch.py +252 -0
  913. vllm_ascend-0.13.0/vllm_ascend/worker/pcp_utils.py +840 -0
  914. vllm_ascend-0.13.0/vllm_ascend/worker/v2/README.md +6 -0
  915. vllm_ascend-0.13.0/vllm_ascend/worker/v2/__init__.py +0 -0
  916. vllm_ascend-0.13.0/vllm_ascend/worker/v2/aclgraph_utils.py +87 -0
  917. vllm_ascend-0.13.0/vllm_ascend/worker/v2/attn_utils.py +171 -0
  918. vllm_ascend-0.13.0/vllm_ascend/worker/v2/input_batch.py +56 -0
  919. vllm_ascend-0.13.0/vllm_ascend/worker/v2/model_runner.py +369 -0
  920. vllm_ascend-0.13.0/vllm_ascend/worker/v2/sample/__init__.py +0 -0
  921. vllm_ascend-0.13.0/vllm_ascend/worker/v2/sample/gumbel.py +128 -0
  922. vllm_ascend-0.13.0/vllm_ascend/worker/v2/sample/penalties.py +137 -0
  923. vllm_ascend-0.13.0/vllm_ascend/worker/v2/sample/sampler.py +58 -0
  924. vllm_ascend-0.13.0/vllm_ascend/worker/v2/states.py +105 -0
  925. vllm_ascend-0.13.0/vllm_ascend/worker/v2/utils.py +20 -0
  926. vllm_ascend-0.13.0/vllm_ascend/worker/worker.py +544 -0
  927. vllm_ascend-0.13.0/vllm_ascend/xlite/__init__.py +0 -0
  928. vllm_ascend-0.13.0/vllm_ascend/xlite/xlite.py +298 -0
  929. vllm_ascend-0.13.0/vllm_ascend/xlite/xlite_model_runner.py +36 -0
  930. vllm_ascend-0.13.0/vllm_ascend/xlite/xlite_worker.py +30 -0
  931. vllm_ascend-0.13.0/vllm_ascend.egg-info/PKG-INFO +150 -0
  932. vllm_ascend-0.13.0/vllm_ascend.egg-info/SOURCES.txt +1118 -0
  933. vllm_ascend-0.13.0/vllm_ascend.egg-info/entry_points.txt +7 -0
  934. vllm_ascend-0.13.0/vllm_ascend.egg-info/requires.txt +26 -0
  935. vllm_ascend-0.11.0rc3/.github/Dockerfile.buildwheel +0 -45
  936. vllm_ascend-0.11.0rc3/.github/ISSUE_TEMPLATE/900-release-checklist.yml +0 -104
  937. vllm_ascend-0.11.0rc3/.github/actionlint.yaml +0 -21
  938. vllm_ascend-0.11.0rc3/.github/format_pr_body.sh +0 -59
  939. vllm_ascend-0.11.0rc3/.github/labeler.yml +0 -38
  940. vllm_ascend-0.11.0rc3/.github/workflows/_accuracy_test.yaml +0 -175
  941. vllm_ascend-0.11.0rc3/.github/workflows/_e2e_test.yaml +0 -199
  942. vllm_ascend-0.11.0rc3/.github/workflows/accuracy_test.yaml +0 -72
  943. vllm_ascend-0.11.0rc3/.github/workflows/format_pr_body.yaml +0 -57
  944. vllm_ascend-0.11.0rc3/.github/workflows/image_310p_openeuler.yml +0 -135
  945. vllm_ascend-0.11.0rc3/.github/workflows/image_310p_ubuntu.yml +0 -131
  946. vllm_ascend-0.11.0rc3/.github/workflows/image_a3_openeuler.yml +0 -135
  947. vllm_ascend-0.11.0rc3/.github/workflows/image_a3_ubuntu.yml +0 -131
  948. vllm_ascend-0.11.0rc3/.github/workflows/image_openeuler.yml +0 -134
  949. vllm_ascend-0.11.0rc3/.github/workflows/image_ubuntu.yml +0 -131
  950. vllm_ascend-0.11.0rc3/.github/workflows/label_merge_conflict.yml +0 -20
  951. vllm_ascend-0.11.0rc3/.github/workflows/labeler.yml +0 -18
  952. vllm_ascend-0.11.0rc3/.github/workflows/matchers/ruff.json +0 -17
  953. vllm_ascend-0.11.0rc3/.github/workflows/multi_node_test.yaml +0 -118
  954. vllm_ascend-0.11.0rc3/.github/workflows/nightly_benchmarks.yaml +0 -206
  955. vllm_ascend-0.11.0rc3/.github/workflows/pre-commit.yml +0 -43
  956. vllm_ascend-0.11.0rc3/.github/workflows/release_code.yml +0 -75
  957. vllm_ascend-0.11.0rc3/.github/workflows/release_whl.yml +0 -125
  958. vllm_ascend-0.11.0rc3/.github/workflows/reminder_comment.yml +0 -26
  959. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_dist.yaml +0 -100
  960. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_doctest.yaml +0 -87
  961. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test.yaml +0 -149
  962. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_310p.yaml +0 -117
  963. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_full.yaml +0 -80
  964. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_full_vllm_main.yaml +0 -45
  965. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_models.yaml +0 -177
  966. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_pd.yaml +0 -112
  967. vllm_ascend-0.11.0rc3/.gitignore +0 -204
  968. vllm_ascend-0.11.0rc3/.pre-commit-config.yaml +0 -151
  969. vllm_ascend-0.11.0rc3/CMakeLists.txt +0 -111
  970. vllm_ascend-0.11.0rc3/CONTRIBUTING.md +0 -3
  971. vllm_ascend-0.11.0rc3/Dockerfile +0 -69
  972. vllm_ascend-0.11.0rc3/Dockerfile.310p +0 -61
  973. vllm_ascend-0.11.0rc3/Dockerfile.310p.openEuler +0 -59
  974. vllm_ascend-0.11.0rc3/Dockerfile.a3 +0 -68
  975. vllm_ascend-0.11.0rc3/Dockerfile.a3.openEuler +0 -71
  976. vllm_ascend-0.11.0rc3/Dockerfile.openEuler +0 -72
  977. vllm_ascend-0.11.0rc3/PKG-INFO +0 -143
  978. vllm_ascend-0.11.0rc3/README.md +0 -91
  979. vllm_ascend-0.11.0rc3/README.zh.md +0 -90
  980. vllm_ascend-0.11.0rc3/benchmarks/tests/serving-tests.json +0 -78
  981. vllm_ascend-0.11.0rc3/csrc/kernels/bgmv_expand.cpp +0 -369
  982. vllm_ascend-0.11.0rc3/csrc/kernels/bgmv_shrink.cpp +0 -252
  983. vllm_ascend-0.11.0rc3/csrc/kernels/sgmv_expand.cpp +0 -389
  984. vllm_ascend-0.11.0rc3/csrc/kernels/sgmv_shrink.cpp +0 -275
  985. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_host/mla_preprocess.h +0 -698
  986. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_host/tiling/mla_preprocess_tiling.h +0 -95
  987. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_kernel/mla_preprocess.h +0 -114
  988. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_kernel/mla_preprocess_kernel.cpp +0 -295
  989. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_bf16.hpp +0 -2914
  990. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_fp16.hpp +0 -2503
  991. vllm_ascend-0.11.0rc3/csrc/ops.h +0 -161
  992. vllm_ascend-0.11.0rc3/csrc/torch_binding.cpp +0 -514
  993. vllm_ascend-0.11.0rc3/csrc/torch_binding_meta.cpp +0 -136
  994. vllm_ascend-0.11.0rc3/csrc/utils.h +0 -31
  995. vllm_ascend-0.11.0rc3/docs/README.md +0 -24
  996. vllm_ascend-0.11.0rc3/docs/source/_templates/sections/header.html +0 -58
  997. vllm_ascend-0.11.0rc3/docs/source/community/contributors.md +0 -171
  998. vllm_ascend-0.11.0rc3/docs/source/community/user_stories/index.md +0 -19
  999. vllm_ascend-0.11.0rc3/docs/source/community/versioning_policy.md +0 -135
  1000. vllm_ascend-0.11.0rc3/docs/source/conf.py +0 -142
  1001. vllm_ascend-0.11.0rc3/docs/source/developer_guide/contribution/index.md +0 -111
  1002. vllm_ascend-0.11.0rc3/docs/source/developer_guide/contribution/testing.md +0 -285
  1003. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/accuracy_report/DeepSeek-V2-Lite.md +0 -20
  1004. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/accuracy_report/Qwen2.5-VL-7B-Instruct.md +0 -19
  1005. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/accuracy_report/Qwen3-30B-A3B.md +0 -21
  1006. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/accuracy_report/Qwen3-8B-Base.md +0 -21
  1007. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/accuracy_report/index.md +0 -10
  1008. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/index.md +0 -10
  1009. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/using_evalscope.md +0 -175
  1010. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/using_lm_eval.md +0 -300
  1011. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/using_opencompass.md +0 -123
  1012. vllm_ascend-0.11.0rc3/docs/source/developer_guide/feature_guide/ACL_Graph.md +0 -102
  1013. vllm_ascend-0.11.0rc3/docs/source/developer_guide/feature_guide/ModelRunner_prepare_inputs.md +0 -260
  1014. vllm_ascend-0.11.0rc3/docs/source/developer_guide/feature_guide/index.md +0 -11
  1015. vllm_ascend-0.11.0rc3/docs/source/developer_guide/feature_guide/patch.md +0 -75
  1016. vllm_ascend-0.11.0rc3/docs/source/developer_guide/modeling/adding_a_new_model.md +0 -258
  1017. vllm_ascend-0.11.0rc3/docs/source/developer_guide/modeling/adding_a_new_multimodal_model.md +0 -3
  1018. vllm_ascend-0.11.0rc3/docs/source/developer_guide/modeling/index.md +0 -10
  1019. vllm_ascend-0.11.0rc3/docs/source/developer_guide/performance/index.md +0 -9
  1020. vllm_ascend-0.11.0rc3/docs/source/developer_guide/performance/optimization_and_tuning.md +0 -183
  1021. vllm_ascend-0.11.0rc3/docs/source/developer_guide/performance/performance_benchmark.md +0 -194
  1022. vllm_ascend-0.11.0rc3/docs/source/faqs.md +0 -216
  1023. vllm_ascend-0.11.0rc3/docs/source/index.md +0 -71
  1024. vllm_ascend-0.11.0rc3/docs/source/installation.md +0 -287
  1025. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/community/contributors.po +0 -1647
  1026. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/community/governance.po +0 -204
  1027. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/community/user_stories/index.po +0 -103
  1028. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/community/user_stories/llamafactory.po +0 -87
  1029. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/community/versioning_policy.po +0 -624
  1030. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/contribution/index.po +0 -187
  1031. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/contribution/testing.po +0 -237
  1032. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_evalscope.po +0 -112
  1033. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_lm_eval.po +0 -65
  1034. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_opencompass.po +0 -83
  1035. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/patch.po +0 -248
  1036. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/modeling/adding_a_new_model.po +0 -333
  1037. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance/index.po +0 -26
  1038. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance/performance_benchmark.po +0 -88
  1039. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance/profile_execute_duration.po +0 -81
  1040. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/faqs.po +0 -479
  1041. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/index.po +0 -79
  1042. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/installation.po +0 -293
  1043. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/quick_start.po +0 -149
  1044. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu_multimodal.po +0 -99
  1045. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/configuration/additional_config.po +0 -286
  1046. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/graph_mode.po +0 -121
  1047. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/lora.po +0 -58
  1048. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/quantization.po +0 -183
  1049. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/sleep_mode.po +0 -156
  1050. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/structured_output.po +0 -220
  1051. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/release_notes.po +0 -1660
  1052. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/index.po +0 -30
  1053. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/supported_features.po +0 -264
  1054. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/supported_models.po +0 -214
  1055. vllm_ascend-0.11.0rc3/docs/source/quick_start.md +0 -185
  1056. vllm_ascend-0.11.0rc3/docs/source/tutorials/index.md +0 -25
  1057. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi-node_dsv3.2.md +0 -405
  1058. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node.md +0 -212
  1059. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_kimi.md +0 -158
  1060. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_pd_disaggregation_llmdatadist.md +0 -244
  1061. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_pd_disaggregation_mooncake.md +0 -616
  1062. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_qwen3vl.md +0 -165
  1063. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_ray.md +0 -182
  1064. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu.md +0 -107
  1065. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu_moge.md +0 -242
  1066. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu_quantization.md +0 -137
  1067. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu_qwen3_moe.md +0 -109
  1068. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu_qwen3_next.md +0 -156
  1069. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_node_300i.md +0 -408
  1070. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_node_pd_disaggregation_llmdatadist.md +0 -181
  1071. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu.md +0 -202
  1072. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu_audio.md +0 -122
  1073. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu_multimodal.md +0 -192
  1074. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu_qwen3_embedding.md +0 -99
  1075. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu_qwen3_quantization.md +0 -133
  1076. vllm_ascend-0.11.0rc3/docs/source/user_guide/configuration/additional_config.md +0 -116
  1077. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/eplb_swift_balancer.md +0 -98
  1078. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/graph_mode.md +0 -78
  1079. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/index.md +0 -14
  1080. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/lora.md +0 -23
  1081. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/quantization.md +0 -125
  1082. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/sleep_mode.md +0 -114
  1083. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/structured_output.md +0 -163
  1084. vllm_ascend-0.11.0rc3/docs/source/user_guide/release_notes.md +0 -689
  1085. vllm_ascend-0.11.0rc3/docs/source/user_guide/support_matrix/supported_features.md +0 -45
  1086. vllm_ascend-0.11.0rc3/docs/source/user_guide/support_matrix/supported_models.md +0 -83
  1087. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/README.md +0 -242
  1088. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/gen_ranktable.py +0 -141
  1089. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/gen_ranktable.sh +0 -88
  1090. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/load_balance_proxy_layerwise_server_example.py +0 -586
  1091. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/load_balance_proxy_server_example.py +0 -666
  1092. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/mooncake_connector_deployment_guide.md +0 -165
  1093. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/mooncake_connector_store_deployment_guide.md +0 -278
  1094. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/run_server.sh +0 -32
  1095. vllm_ascend-0.11.0rc3/examples/eplb/eplb_strategy.py +0 -186
  1096. vllm_ascend-0.11.0rc3/examples/external_online_dp/README.md +0 -38
  1097. vllm_ascend-0.11.0rc3/examples/external_online_dp/launch_online_dp.py +0 -97
  1098. vllm_ascend-0.11.0rc3/examples/external_online_dp/run_dp_template.sh +0 -46
  1099. vllm_ascend-0.11.0rc3/examples/offline_data_parallel.py +0 -257
  1100. vllm_ascend-0.11.0rc3/examples/offline_disaggregated_prefill_npu.py +0 -147
  1101. vllm_ascend-0.11.0rc3/examples/offline_dualbatch_overlap_npu.py +0 -52
  1102. vllm_ascend-0.11.0rc3/examples/offline_embed.py +0 -58
  1103. vllm_ascend-0.11.0rc3/examples/offline_external_launcher.py +0 -330
  1104. vllm_ascend-0.11.0rc3/examples/offline_inference_audio_language.py +0 -105
  1105. vllm_ascend-0.11.0rc3/examples/offline_inference_sleep_mode_npu.py +0 -57
  1106. vllm_ascend-0.11.0rc3/examples/offline_weight_load.py +0 -326
  1107. vllm_ascend-0.11.0rc3/examples/run_dp_server.sh +0 -32
  1108. vllm_ascend-0.11.0rc3/format.sh +0 -44
  1109. vllm_ascend-0.11.0rc3/mypy.ini +0 -16
  1110. vllm_ascend-0.11.0rc3/pyproject.toml +0 -36
  1111. vllm_ascend-0.11.0rc3/requirements-dev.txt +0 -20
  1112. vllm_ascend-0.11.0rc3/requirements.txt +0 -30
  1113. vllm_ascend-0.11.0rc3/setup.py +0 -399
  1114. vllm_ascend-0.11.0rc3/tests/e2e/310p/test_offline_inference_parallel_310p.py +0 -62
  1115. vllm_ascend-0.11.0rc3/tests/e2e/conftest.py +0 -589
  1116. vllm_ascend-0.11.0rc3/tests/e2e/doctests/002-pip-binary-installation-test.sh +0 -74
  1117. vllm_ascend-0.11.0rc3/tests/e2e/model_utils.py +0 -74
  1118. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/DeepSeek-V2-Lite.yaml +0 -17
  1119. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/Qwen2-VL-7B-Instruct.yaml +0 -10
  1120. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/Qwen2.5-VL-7B-Instruct.yaml +0 -10
  1121. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/Qwen3-30B-A3B.yaml +0 -20
  1122. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/Qwen3-8B-Base.yaml +0 -15
  1123. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/accuracy.txt +0 -8
  1124. vllm_ascend-0.11.0rc3/tests/e2e/models/conftest.py +0 -72
  1125. vllm_ascend-0.11.0rc3/tests/e2e/models/test_lm_eval_correctness.py +0 -157
  1126. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_data_parallel.py +0 -73
  1127. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_expert_parallel.py +0 -42
  1128. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_external_launcher.py +0 -243
  1129. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_full_graph_mode.py +0 -72
  1130. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_fused_moe_allgather_ep.py +0 -86
  1131. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_ilama_lora_tp2.py +0 -23
  1132. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_offline_inference_distributed.py +0 -228
  1133. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_pipeline_parallel.py +0 -47
  1134. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_prefix_caching.py +0 -148
  1135. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_qwen3_moe.py +0 -103
  1136. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_single_request_aclgraph.py +0 -84
  1137. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_torchair_graph_mode.py +0 -227
  1138. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_weight_loader.py +0 -109
  1139. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_deepseek_r1_w8a8_eplb.py +0 -106
  1140. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_qwen2_5_vl_7b.py +0 -110
  1141. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_qwen3_235b_a22b_w8a8_eplb.py +0 -104
  1142. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_qwen3_32b.py +0 -99
  1143. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_qwen3_32b_int8.py +0 -118
  1144. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/config/models/DeepSeek-V3.yaml +0 -126
  1145. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/config/models/Qwen3-235B-A3B.yaml +0 -76
  1146. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/config/multi_node_config.py +0 -207
  1147. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/config/utils.py +0 -95
  1148. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/scripts/lws.yaml +0 -132
  1149. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/scripts/run.sh +0 -145
  1150. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/test_multi_node.py +0 -30
  1151. vllm_ascend-0.11.0rc3/tests/e2e/pd_disaggreate/run_edge_case_test.sh +0 -139
  1152. vllm_ascend-0.11.0rc3/tests/e2e/pd_disaggreate/setup_pd.sh +0 -134
  1153. vllm_ascend-0.11.0rc3/tests/e2e/pd_disaggreate/test_edge_cases.py +0 -81
  1154. vllm_ascend-0.11.0rc3/tests/e2e/pd_disaggreate/test_pd_e2e.py +0 -109
  1155. vllm_ascend-0.11.0rc3/tests/e2e/run_disagg_pd.sh +0 -58
  1156. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops/test_fused_moe.py +0 -341
  1157. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops/test_mla_preprocess.py +0 -108
  1158. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/spec_decode_v1/test_v1_mtp_correctness.py +0 -110
  1159. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/spec_decode_v1/test_v1_mtp_torchair_correctness.py +0 -106
  1160. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/spec_decode_v1/test_v1_spec_decode.py +0 -147
  1161. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_aclgraph.py +0 -203
  1162. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_aclgraph_mem.py +0 -100
  1163. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_ascend_scheduler.py +0 -113
  1164. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_bge_model.py +0 -49
  1165. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_camem.py +0 -99
  1166. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_chunked.py +0 -82
  1167. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_embedding.py +0 -49
  1168. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_embedding_aclgraph.py +0 -55
  1169. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_guided_decoding.py +0 -153
  1170. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_ilama_lora.py +0 -62
  1171. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_multistream_overlap_shared_expert.py +0 -103
  1172. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_quantization.py +0 -35
  1173. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_sampler.py +0 -49
  1174. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_vlm.py +0 -124
  1175. vllm_ascend-0.11.0rc3/tests/e2e/vllm_interface/singlecard/test_sampler.py +0 -36
  1176. vllm_ascend-0.11.0rc3/tests/ut/attention/test_attention_mask.py +0 -95
  1177. vllm_ascend-0.11.0rc3/tests/ut/attention/test_attention_v1.py +0 -702
  1178. vllm_ascend-0.11.0rc3/tests/ut/attention/test_mla_v1.py +0 -675
  1179. vllm_ascend-0.11.0rc3/tests/ut/compilation/test_acl_graph.py +0 -720
  1180. vllm_ascend-0.11.0rc3/tests/ut/conftest.py +0 -26
  1181. vllm_ascend-0.11.0rc3/tests/ut/core/test_schedule_config.py +0 -148
  1182. vllm_ascend-0.11.0rc3/tests/ut/core/test_scheduler.py +0 -807
  1183. vllm_ascend-0.11.0rc3/tests/ut/device_allocator/test_camem.py +0 -188
  1184. vllm_ascend-0.11.0rc3/tests/ut/distributed/test_parallel_state.py +0 -58
  1185. vllm_ascend-0.11.0rc3/tests/ut/eplb/adaptor/test_abstract_adaptor.py +0 -73
  1186. vllm_ascend-0.11.0rc3/tests/ut/eplb/core/test_eplb_device_transfer_loader.py +0 -116
  1187. vllm_ascend-0.11.0rc3/tests/ut/eplb/core/test_eplb_utils.py +0 -225
  1188. vllm_ascend-0.11.0rc3/tests/ut/kv_connector/test_llmdatadist_connector.py +0 -96
  1189. vllm_ascend-0.11.0rc3/tests/ut/kv_connector/test_mooncake_connector.py +0 -1139
  1190. vllm_ascend-0.11.0rc3/tests/ut/kv_connector/test_mooncake_layerwise_connector.py +0 -924
  1191. vllm_ascend-0.11.0rc3/tests/ut/kv_connector/utils.py +0 -208
  1192. vllm_ascend-0.11.0rc3/tests/ut/models/conftest.py +0 -100
  1193. vllm_ascend-0.11.0rc3/tests/ut/models/test_qwen2_5_vl.py +0 -492
  1194. vllm_ascend-0.11.0rc3/tests/ut/models/test_qwen2_5_vl_without_padding.py +0 -422
  1195. vllm_ascend-0.11.0rc3/tests/ut/models/test_qwen2_vl.py +0 -200
  1196. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_base.py +0 -32
  1197. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_decorator.py +0 -47
  1198. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_layers.py +0 -198
  1199. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_metadata.py +0 -246
  1200. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_ms_split.py +0 -147
  1201. vllm_ascend-0.11.0rc3/tests/ut/ops/test_activation.py +0 -72
  1202. vllm_ascend-0.11.0rc3/tests/ut/ops/test_comm_utils.py +0 -98
  1203. vllm_ascend-0.11.0rc3/tests/ut/ops/test_common_fused_moe.py +0 -56
  1204. vllm_ascend-0.11.0rc3/tests/ut/ops/test_expert_load_balancer.py +0 -141
  1205. vllm_ascend-0.11.0rc3/tests/ut/ops/test_fused_moe_prepare_and_finalize.py +0 -271
  1206. vllm_ascend-0.11.0rc3/tests/ut/ops/test_fused_ops.py +0 -597
  1207. vllm_ascend-0.11.0rc3/tests/ut/ops/test_layernorm.py +0 -156
  1208. vllm_ascend-0.11.0rc3/tests/ut/ops/test_linear.py +0 -147
  1209. vllm_ascend-0.11.0rc3/tests/ut/ops/test_moe_comm_method.py +0 -230
  1210. vllm_ascend-0.11.0rc3/tests/ut/ops/test_rotary_embedding.py +0 -469
  1211. vllm_ascend-0.11.0rc3/tests/ut/ops/test_token_dispatcher.py +0 -515
  1212. vllm_ascend-0.11.0rc3/tests/ut/ops/test_vocab_parallel_embedding.py +0 -240
  1213. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_quant_config.py +0 -233
  1214. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_utils.py +0 -62
  1215. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_w4a4_flatquant_dynamic.py +0 -246
  1216. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_w4a8_dynamic.py +0 -303
  1217. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_w8a8.py +0 -976
  1218. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_w8a8_dynamic.py +0 -69
  1219. vllm_ascend-0.11.0rc3/tests/ut/sample/logits_processor/test_builtin.py +0 -40
  1220. vllm_ascend-0.11.0rc3/tests/ut/sample/test_rejection_sampler.py +0 -203
  1221. vllm_ascend-0.11.0rc3/tests/ut/sample/test_sampler.py +0 -32
  1222. vllm_ascend-0.11.0rc3/tests/ut/test_ascend_config.py +0 -362
  1223. vllm_ascend-0.11.0rc3/tests/ut/test_platform.py +0 -765
  1224. vllm_ascend-0.11.0rc3/tests/ut/test_utils.py +0 -381
  1225. vllm_ascend-0.11.0rc3/tests/ut/torchair/models/test_torchair_deepseek_mtp.py +0 -197
  1226. vllm_ascend-0.11.0rc3/tests/ut/torchair/models/test_torchair_deepseek_v2.py +0 -357
  1227. vllm_ascend-0.11.0rc3/tests/ut/torchair/ops/test_torchair_fused_moe.py +0 -422
  1228. vllm_ascend-0.11.0rc3/tests/ut/torchair/ops/test_torchair_rotary_embedding.py +0 -331
  1229. vllm_ascend-0.11.0rc3/tests/ut/torchair/quantization/test_torchair_w4a8_dynamic.py +0 -296
  1230. vllm_ascend-0.11.0rc3/tests/ut/torchair/quantization/test_torchair_w8a8_dynamic.py +0 -129
  1231. vllm_ascend-0.11.0rc3/tests/ut/torchair/test_torchair_attention.py +0 -95
  1232. vllm_ascend-0.11.0rc3/tests/ut/torchair/test_torchair_mla.py +0 -850
  1233. vllm_ascend-0.11.0rc3/tests/ut/torchair/test_utils.py +0 -164
  1234. vllm_ascend-0.11.0rc3/tests/ut/worker/test_input_batch.py +0 -372
  1235. vllm_ascend-0.11.0rc3/tests/ut/worker/test_model_runner_v1.py +0 -111
  1236. vllm_ascend-0.11.0rc3/tests/ut/worker/test_worker_v1.py +0 -1240
  1237. vllm_ascend-0.11.0rc3/tools/aisbench.py +0 -227
  1238. vllm_ascend-0.11.0rc3/tools/mypy.sh +0 -40
  1239. vllm_ascend-0.11.0rc3/typos.toml +0 -177
  1240. vllm_ascend-0.11.0rc3/vllm_ascend/__init__.py +0 -33
  1241. vllm_ascend-0.11.0rc3/vllm_ascend/_version.py +0 -34
  1242. vllm_ascend-0.11.0rc3/vllm_ascend/ascend_config.py +0 -310
  1243. vllm_ascend-0.11.0rc3/vllm_ascend/ascend_forward_context.py +0 -211
  1244. vllm_ascend-0.11.0rc3/vllm_ascend/attention/attention_mask.py +0 -96
  1245. vllm_ascend-0.11.0rc3/vllm_ascend/attention/attention_v1.py +0 -727
  1246. vllm_ascend-0.11.0rc3/vllm_ascend/attention/mla_v1.py +0 -1325
  1247. vllm_ascend-0.11.0rc3/vllm_ascend/attention/sfa_v1.py +0 -988
  1248. vllm_ascend-0.11.0rc3/vllm_ascend/attention/utils.py +0 -180
  1249. vllm_ascend-0.11.0rc3/vllm_ascend/compilation/acl_graph.py +0 -343
  1250. vllm_ascend-0.11.0rc3/vllm_ascend/core/recompute_schedule_config.py +0 -39
  1251. vllm_ascend-0.11.0rc3/vllm_ascend/core/recompute_scheduler.py +0 -1392
  1252. vllm_ascend-0.11.0rc3/vllm_ascend/core/schedule_config.py +0 -108
  1253. vllm_ascend-0.11.0rc3/vllm_ascend/core/scheduler.py +0 -587
  1254. vllm_ascend-0.11.0rc3/vllm_ascend/device_allocator/camem.py +0 -278
  1255. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/__init__.py +0 -40
  1256. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/cpu_offload_connector.py +0 -471
  1257. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/cpu_offload_manager/cpu_kv_cache_manager.py +0 -202
  1258. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/cpu_offload_manager/metadata.py +0 -269
  1259. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/llmdatadist_c_mgr_connector.py +0 -994
  1260. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/config_data.py +0 -449
  1261. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/kv_transfer.py +0 -282
  1262. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/mooncake_engine.py +0 -621
  1263. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/mooncake_store.py +0 -126
  1264. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/mooncake_store_connector_v1.py +0 -492
  1265. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/transfer_engine.py +0 -38
  1266. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake_connector.py +0 -1263
  1267. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake_layerwise_connector.py +0 -1153
  1268. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/parallel_state.py +0 -196
  1269. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/utils.py +0 -61
  1270. vllm_ascend-0.11.0rc3/vllm_ascend/envs.py +0 -183
  1271. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/adaptor/abstract_adaptor.py +0 -44
  1272. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/adaptor/vllm_adaptor.py +0 -289
  1273. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/eplb_device_transfer_loader.py +0 -138
  1274. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/eplb_utils.py +0 -190
  1275. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/eplb_worker.py +0 -440
  1276. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/policy/policy_dynamic_ep_v2.py +0 -771
  1277. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/policy/policy_factory.py +0 -33
  1278. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/policy/policy_flashlb.py +0 -651
  1279. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/eplb_updator.py +0 -209
  1280. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/utils.py +0 -77
  1281. vllm_ascend-0.11.0rc3/vllm_ascend/lora/punica_npu.py +0 -356
  1282. vllm_ascend-0.11.0rc3/vllm_ascend/models/__init__.py +0 -48
  1283. vllm_ascend-0.11.0rc3/vllm_ascend/models/deepseek_v3_2.py +0 -633
  1284. vllm_ascend-0.11.0rc3/vllm_ascend/models/layers/mla.py +0 -193
  1285. vllm_ascend-0.11.0rc3/vllm_ascend/models/layers/sfa.py +0 -233
  1286. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen2_5_omni_thinker.py +0 -54
  1287. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen2_5_vl.py +0 -628
  1288. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen2_5_vl_without_padding.py +0 -671
  1289. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen2_vl.py +0 -369
  1290. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen3_next.py +0 -676
  1291. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/base.py +0 -29
  1292. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/context.py +0 -67
  1293. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/decorator.py +0 -22
  1294. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/layers.py +0 -61
  1295. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/metadata.py +0 -182
  1296. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/ms_split.py +0 -247
  1297. vllm_ascend-0.11.0rc3/vllm_ascend/ops/__init__.py +0 -57
  1298. vllm_ascend-0.11.0rc3/vllm_ascend/ops/activation.py +0 -44
  1299. vllm_ascend-0.11.0rc3/vllm_ascend/ops/attention.py +0 -309
  1300. vllm_ascend-0.11.0rc3/vllm_ascend/ops/casual_conv1d.py +0 -539
  1301. vllm_ascend-0.11.0rc3/vllm_ascend/ops/common_fused_moe.py +0 -464
  1302. vllm_ascend-0.11.0rc3/vllm_ascend/ops/expert_load_balancer.py +0 -117
  1303. vllm_ascend-0.11.0rc3/vllm_ascend/ops/fla.py +0 -299
  1304. vllm_ascend-0.11.0rc3/vllm_ascend/ops/layernorm.py +0 -213
  1305. vllm_ascend-0.11.0rc3/vllm_ascend/ops/linear.py +0 -466
  1306. vllm_ascend-0.11.0rc3/vllm_ascend/ops/linear_op.py +0 -531
  1307. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/experts_selector.py +0 -277
  1308. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/fused_moe_prepare_and_finalize.py +0 -520
  1309. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/moe_comm_method.py +0 -273
  1310. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/moe_mlp.py +0 -258
  1311. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/token_dispatcher.py +0 -730
  1312. vllm_ascend-0.11.0rc3/vllm_ascend/ops/register_custom_ops.py +0 -315
  1313. vllm_ascend-0.11.0rc3/vllm_ascend/ops/rotary_embedding.py +0 -435
  1314. vllm_ascend-0.11.0rc3/vllm_ascend/ops/sigmoid_gating.py +0 -384
  1315. vllm_ascend-0.11.0rc3/vllm_ascend/ops/vocab_parallel_embedding.py +0 -255
  1316. vllm_ascend-0.11.0rc3/vllm_ascend/patch/__init__.py +0 -174
  1317. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/__init__.py +0 -30
  1318. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_config.py +0 -234
  1319. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_core.py +0 -68
  1320. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_distributed.py +0 -115
  1321. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_mamba_config.py +0 -96
  1322. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_message_queue.py +0 -164
  1323. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_multiproc_executor.py +0 -151
  1324. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/__init__.py +0 -37
  1325. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_attention_layer.py +0 -92
  1326. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_deepseek_mtp.py +0 -94
  1327. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_logits.py +0 -26
  1328. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_multimodal_merge.py +0 -58
  1329. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_roberta.py +0 -88
  1330. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_triton.py +0 -16
  1331. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_weight_loader.py +0 -41
  1332. vllm_ascend-0.11.0rc3/vllm_ascend/platform.py +0 -431
  1333. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/quant_config.py +0 -479
  1334. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/utils.py +0 -87
  1335. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/w4a4_flatquant_dynamic.py +0 -193
  1336. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/w4a8_dynamic.py +0 -490
  1337. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/w8a8.py +0 -674
  1338. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/w8a8_dynamic.py +0 -284
  1339. vllm_ascend-0.11.0rc3/vllm_ascend/sample/logits_processor/__init__.py +0 -50
  1340. vllm_ascend-0.11.0rc3/vllm_ascend/sample/logits_processor/builtin.py +0 -35
  1341. vllm_ascend-0.11.0rc3/vllm_ascend/sample/rejection_sampler.py +0 -504
  1342. vllm_ascend-0.11.0rc3/vllm_ascend/sample/sampler.py +0 -74
  1343. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/__init__.py +0 -33
  1344. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/eagle_proposer.py +0 -663
  1345. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/interface.py +0 -54
  1346. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/mtp_proposer.py +0 -675
  1347. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/ngram_proposer.py +0 -72
  1348. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/qwen2.py +0 -363
  1349. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/qwen3_moe.py +0 -537
  1350. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/torchair_deepseek_mtp.py +0 -218
  1351. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/torchair_deepseek_v2.py +0 -1301
  1352. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/torchair_deepseek_v3.py +0 -28
  1353. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/torchair_pangu_moe.py +0 -1118
  1354. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/sequence_parallel.py +0 -120
  1355. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/shared_weight_layer.py +0 -245
  1356. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_activation.py +0 -37
  1357. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_fused_moe.py +0 -1429
  1358. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_layernorm.py +0 -78
  1359. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_rotary_embedding.py +0 -365
  1360. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_vocab_parallel_embedding.py +0 -38
  1361. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/quantization/torchair_w4a8_dynamic.py +0 -501
  1362. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/quantization/torchair_w8a8_dynamic.py +0 -1080
  1363. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_attention.py +0 -463
  1364. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_mla.py +0 -1310
  1365. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_model_runner.py +0 -557
  1366. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_sfa.py +0 -1333
  1367. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_worker.py +0 -63
  1368. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/utils.py +0 -275
  1369. vllm_ascend-0.11.0rc3/vllm_ascend/utils.py +0 -824
  1370. vllm_ascend-0.11.0rc3/vllm_ascend/worker/block_table.py +0 -312
  1371. vllm_ascend-0.11.0rc3/vllm_ascend/worker/model_runner_v1.py +0 -3711
  1372. vllm_ascend-0.11.0rc3/vllm_ascend/worker/npu_input_batch.py +0 -842
  1373. vllm_ascend-0.11.0rc3/vllm_ascend/worker/worker_v1.py +0 -442
  1374. vllm_ascend-0.11.0rc3/vllm_ascend.egg-info/PKG-INFO +0 -143
  1375. vllm_ascend-0.11.0rc3/vllm_ascend.egg-info/SOURCES.txt +0 -627
  1376. vllm_ascend-0.11.0rc3/vllm_ascend.egg-info/entry_points.txt +0 -6
  1377. vllm_ascend-0.11.0rc3/vllm_ascend.egg-info/requires.txt +0 -20
  1378. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.gemini/config.yaml +0 -0
  1379. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/100-documentation.yml +0 -0
  1380. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/110-user-story.yml +0 -0
  1381. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/200-installation.yml +0 -0
  1382. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/300-usage.yml +0 -0
  1383. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/400-bug-report.yml +0 -0
  1384. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/500-feature-request.yml +0 -0
  1385. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/600-new-model.yml +0 -0
  1386. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/700-performance-discussion.yml +0 -0
  1387. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/750-RFC.yml +0 -0
  1388. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/800-others.yml +0 -0
  1389. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  1390. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  1391. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/dependabot.yml +0 -0
  1392. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/workflows/matchers/actionlint.json +0 -0
  1393. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.github/workflows/matchers/mypy.json +0 -0
  1394. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/.readthedocs.yaml +0 -0
  1395. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/CODE_OF_CONDUCT.md +0 -0
  1396. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/DCO +0 -0
  1397. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/LICENSE +0 -0
  1398. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/benchmarks/README.md +0 -0
  1399. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/benchmarks/ops/ben_vocabparallelembedding.py +0 -0
  1400. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/benchmarks/requirements-bench.txt +0 -0
  1401. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/benchmarks/scripts/convert_json_to_markdown.py +0 -0
  1402. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/benchmarks/scripts/perf_result_template.md +0 -0
  1403. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/benchmarks/scripts/run-performance-benchmarks.sh +0 -0
  1404. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/benchmarks/tests/latency-tests.json +0 -0
  1405. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/benchmarks/tests/throughput-tests.json +0 -0
  1406. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/cmake/utils.cmake +0 -0
  1407. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/codecov.yml +0 -0
  1408. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/collect_env.py +0 -0
  1409. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/camem_allocator.cpp +0 -0
  1410. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/kernels/get_masked_input_and_mask_kernel.cpp +0 -0
  1411. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/kernels/pos_encoding_kernels.cpp +0 -0
  1412. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/kernels/types.h +0 -0
  1413. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/kernels/utils.h +0 -0
  1414. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/common.h +0 -0
  1415. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/common_func.h +0 -0
  1416. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/hardware.h +0 -0
  1417. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterator.h +0 -0
  1418. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterators/gm_to_l1_iterator.inc +0 -0
  1419. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterators/gm_to_ub_iterator.inc +0 -0
  1420. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterators/l0c_to_gm_iterator.inc +0 -0
  1421. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterators/l0c_to_l1_iterator.inc +0 -0
  1422. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterators/l0c_to_ub_iterator.inc +0 -0
  1423. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterators/l1_to_bt_iterator.inc +0 -0
  1424. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterators/l1_to_fb_iterator.inc +0 -0
  1425. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterators/l1_to_l0_iterator.inc +0 -0
  1426. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/iterators/l1_to_ub_iterator.inc +0 -0
  1427. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/kernel_utils.h +0 -0
  1428. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/layout.h +0 -0
  1429. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/mem.h +0 -0
  1430. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/mma.h +0 -0
  1431. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/set_fpc.h +0 -0
  1432. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/simd.h +0 -0
  1433. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/csrc/mla_preprocess/op_kernel/kernel/utils.h +0 -0
  1434. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/Makefile +0 -0
  1435. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/requirements-docs.txt +0 -0
  1436. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/requirements-test.txt +0 -0
  1437. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/assets/multi_node_dp_deepseek.png +0 -0
  1438. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/assets/multi_node_dp_kimi.png +0 -0
  1439. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/community/governance.md +0 -0
  1440. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/community/user_stories/llamafactory.md +0 -0
  1441. {vllm_ascend-0.11.0rc3/docs/source/developer_guide/performance → vllm_ascend-0.13.0/docs/source/developer_guide/performance_and_debug}/profile_execute_duration.md +0 -0
  1442. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/accuracy_report/index.po +0 -0
  1443. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/index.po +0 -0
  1444. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/index.po +0 -0
  1445. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/modeling/adding_a_new_multimodal_model.po +0 -0
  1446. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/modeling/index.po +0 -0
  1447. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/index.po +0 -0
  1448. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_node.po +0 -0
  1449. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_npu.po +0 -0
  1450. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_npu_moge.po +0 -0
  1451. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_npu_quantization.po +0 -0
  1452. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_npu_qwen3_moe.po +0 -0
  1453. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_node_300i.po +0 -0
  1454. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu.po +0 -0
  1455. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu_audio.po +0 -0
  1456. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu_qwen3_embedding.po +0 -0
  1457. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/configuration/env_vars.po +0 -0
  1458. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/configuration/index.po +0 -0
  1459. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/index.po +0 -0
  1460. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/logos/vllm-ascend-logo-text-dark.png +0 -0
  1461. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/logos/vllm-ascend-logo-text-light.png +0 -0
  1462. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/user_guide/configuration/env_vars.md +0 -0
  1463. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/user_guide/configuration/index.md +0 -0
  1464. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/user_guide/feature_guide/images/eplb_img.png +0 -0
  1465. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/user_guide/feature_guide/images/structured_output_1.png +0 -0
  1466. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/docs/source/user_guide/support_matrix/index.md +0 -0
  1467. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/examples/eplb/eplb_deepseek.py +0 -0
  1468. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/examples/offline_inference_npu.py +0 -0
  1469. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/examples/offline_inference_npu_tp2.py +0 -0
  1470. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/examples/prompt_embedding_inference.py +0 -0
  1471. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/packages.txt +0 -0
  1472. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/requirements-lint.txt +0 -0
  1473. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/setup.cfg +0 -0
  1474. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/__init__.py +0 -0
  1475. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/310p/test_offline_inference_310p.py +0 -0
  1476. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/__init__.py +0 -0
  1477. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/common.sh +0 -0
  1478. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/doctests/001-quickstart-test.sh +0 -0
  1479. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/models/configs/Qwen2-Audio-7B-Instruct.yaml +0 -0
  1480. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/models/configs/Qwen3-8B.yaml +0 -0
  1481. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/models/configs/Qwen3-VL-30B-A3B-Instruct.yaml +0 -0
  1482. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/models/report_template.md +0 -0
  1483. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/nightly/multi_node/__init__.py +0 -0
  1484. {vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/config → vllm_ascend-0.13.0/tests/e2e/nightly/multi_node/scripts}/__init__.py +0 -0
  1485. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard → vllm_ascend-0.13.0/tests/e2e/nightly/single_node/models}/__init__.py +0 -0
  1486. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard → vllm_ascend-0.13.0/tests/e2e/nightly/single_node}/ops/__init__.py +0 -0
  1487. {vllm_ascend-0.11.0rc3/tests/ut → vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/multicard_ops_a3}/__init__.py +0 -0
  1488. {vllm_ascend-0.11.0rc3/tests/ut/models → vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops}/__init__.py +0 -0
  1489. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops → vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops}/test_bgmv_expand.py +0 -0
  1490. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops → vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops}/test_bgmv_shrink.py +0 -0
  1491. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops → vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops}/test_gating_top_k_softmax.py +0 -0
  1492. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops → vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops}/test_rotary_embedding.py +0 -0
  1493. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops → vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops}/test_vocabparallelembedding.py +0 -0
  1494. {vllm_ascend-0.11.0rc3/tests/ut/torchair → vllm_ascend-0.13.0/tests/e2e/nightly/single_node/ops/singlecard_ops/triton}/__init__.py +0 -0
  1495. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/prompts/example.txt +0 -0
  1496. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/run_doctests.sh +0 -0
  1497. {vllm_ascend-0.11.0rc3/vllm_ascend/attention → vllm_ascend-0.13.0/tests/e2e/singlecard}/__init__.py +0 -0
  1498. {vllm_ascend-0.11.0rc3/vllm_ascend/compilation → vllm_ascend-0.13.0/tests/e2e/singlecard/compile}/__init__.py +0 -0
  1499. {vllm_ascend-0.11.0rc3/vllm_ascend/core → vllm_ascend-0.13.0/tests/e2e/singlecard/model_runner_v2}/__init__.py +0 -0
  1500. {vllm_ascend-0.11.0rc3/vllm_ascend/device_allocator → vllm_ascend-0.13.0/tests/e2e/singlecard/pooling}/__init__.py +0 -0
  1501. {vllm_ascend-0.11.0rc3/vllm_ascend/distributed/cpu_offload_manager → vllm_ascend-0.13.0/tests/e2e/singlecard/spec_decode}/__init__.py +0 -0
  1502. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/singlecard/test_profile_execute_duration.py +0 -0
  1503. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/utils.py +0 -0
  1504. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/e2e/vllm_interface/vllm_test.cfg +0 -0
  1505. {vllm_ascend-0.11.0rc3/vllm_ascend/distributed/device_communicators → vllm_ascend-0.13.0/tests/ut}/__init__.py +0 -0
  1506. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/base.py +0 -0
  1507. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/distributed/device_communicators/test_pyhccl.py +0 -0
  1508. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/distributed/device_communicators/test_pyhccl_wrapper.py +0 -0
  1509. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/distributed/test_communicator.py +0 -0
  1510. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/distributed/test_determin_expert_map_all.py +0 -0
  1511. {vllm_ascend-0.11.0rc3/tests/ut/ops → vllm_ascend-0.13.0/tests/ut/eplb/core}/expert_map.json +0 -0
  1512. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/eplb/core/policy/test_policy_abstract.py +0 -0
  1513. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/eplb/core/policy/test_policy_dynamic_ep.py +0 -0
  1514. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/eplb/core/policy/test_policy_dynamic_ep_v2.py +0 -0
  1515. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/eplb/core/policy/test_policy_factor.py +0 -0
  1516. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/fake_weight/config.json +0 -0
  1517. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/kv_connector/test_remote_decode_lifecycle.py +0 -0
  1518. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/kv_connector/test_remote_prefill_lifecycle.py +0 -0
  1519. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/patch/worker/patch_common/test_patch_distributed.py +0 -0
  1520. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/patch/worker/patch_common/test_patch_minicpm.py +0 -0
  1521. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tests/ut/test_envs.py +0 -0
  1522. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tools/actionlint.sh +0 -0
  1523. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tools/check_python_src_init.py +0 -0
  1524. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tools/check_repo.sh +0 -0
  1525. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tools/enforce_regex_import.py +0 -0
  1526. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tools/mooncake_installer.sh +0 -0
  1527. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tools/png-lint.sh +0 -0
  1528. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tools/send_mm_request.py +0 -0
  1529. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tools/shellcheck.sh +0 -0
  1530. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/tools/sphinx-lint.sh +0 -0
  1531. {vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake → vllm_ascend-0.13.0/vllm_ascend/attention}/__init__.py +0 -0
  1532. {vllm_ascend-0.11.0rc3/vllm_ascend/eplb → vllm_ascend-0.13.0/vllm_ascend/attention/context_parallel}/__init__.py +0 -0
  1533. {vllm_ascend-0.11.0rc3/vllm_ascend/eplb/adaptor → vllm_ascend-0.13.0/vllm_ascend/compilation}/__init__.py +0 -0
  1534. {vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core → vllm_ascend-0.13.0/vllm_ascend/compilation/npugraph_ex_passes}/__init__.py +0 -0
  1535. {vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/policy → vllm_ascend-0.13.0/vllm_ascend/compilation/passes}/__init__.py +0 -0
  1536. {vllm_ascend-0.11.0rc3/vllm_ascend/lora → vllm_ascend-0.13.0/vllm_ascend/core}/__init__.py +0 -0
  1537. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/cpu_binding.py +0 -0
  1538. {vllm_ascend-0.11.0rc3/vllm_ascend/models/layers → vllm_ascend-0.13.0/vllm_ascend/device_allocator}/__init__.py +0 -0
  1539. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/distributed/communicator.py +0 -0
  1540. {vllm_ascend-0.11.0rc3/vllm_ascend/multistream → vllm_ascend-0.13.0/vllm_ascend/distributed/cpu_offload_manager}/__init__.py +0 -0
  1541. {vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe → vllm_ascend-0.13.0/vllm_ascend/distributed/device_communicators}/__init__.py +0 -0
  1542. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/distributed/device_communicators/pyhccl.py +0 -0
  1543. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/distributed/device_communicators/pyhccl_wrapper.py +0 -0
  1544. {vllm_ascend-0.11.0rc3/vllm_ascend/quantization → vllm_ascend-0.13.0/vllm_ascend/eplb}/__init__.py +0 -0
  1545. {vllm_ascend-0.11.0rc3/vllm_ascend/sample → vllm_ascend-0.13.0/vllm_ascend/eplb/adaptor}/__init__.py +0 -0
  1546. {vllm_ascend-0.11.0rc3/vllm_ascend/torchair → vllm_ascend-0.13.0/vllm_ascend/eplb/core}/__init__.py +0 -0
  1547. {vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models → vllm_ascend-0.13.0/vllm_ascend/eplb/core/policy}/__init__.py +0 -0
  1548. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/eplb/core/policy/policy_abstract.py +0 -0
  1549. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/eplb/core/policy/policy_dynamic_ep.py +0 -0
  1550. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/eplb/core/policy/policy_random.py +0 -0
  1551. {vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops → vllm_ascend-0.13.0/vllm_ascend/kv_offload}/__init__.py +0 -0
  1552. {vllm_ascend-0.11.0rc3/vllm_ascend/torchair/quantization → vllm_ascend-0.13.0/vllm_ascend/lora}/__init__.py +0 -0
  1553. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/lora/lora_ops.py +0 -0
  1554. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/lora/utils.py +0 -0
  1555. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/meta_registration.py +0 -0
  1556. {vllm_ascend-0.11.0rc3/vllm_ascend/worker → vllm_ascend-0.13.0/vllm_ascend/model_loader}/__init__.py +0 -0
  1557. {vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe → vllm_ascend-0.13.0/vllm_ascend/ops/fused_moe}/comm_utils.py +0 -0
  1558. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/ops/weight_prefetch.py +0 -0
  1559. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/patch/platform/patch_sched_yield.py +0 -0
  1560. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/patch/worker/patch_distributed.py +0 -0
  1561. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend/patch/worker/patch_minicpm.py +0 -0
  1562. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend.egg-info/dependency_links.txt +0 -0
  1563. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.13.0}/vllm_ascend.egg-info/top_level.txt +0 -0
@@ -0,0 +1,45 @@
1
+ #
2
+ # Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ # This file is a part of the vllm-ascend project.
16
+ #
17
+ ARG PY_VERSION=3.11
18
+ FROM quay.io/ascend/manylinux:8.5.0-910b-manylinux_2_28-py${PY_VERSION}
19
+
20
+ ARG SOC_VERSION="ascend910b1"
21
+
22
+ # Define environments
23
+ ENV DEBIAN_FRONTEND=noninteractive
24
+ ENV SOC_VERSION=$SOC_VERSION
25
+ RUN yum update -y && \
26
+ yum install -y python3-pip git vim wget net-tools gcc gcc-c++ make cmake numactl-devel && \
27
+ rm -rf /var/cache/yum
28
+
29
+ WORKDIR /workspace
30
+
31
+ COPY . /workspace/vllm-ascend/
32
+
33
+ # Install req
34
+ RUN python3 -m pip install -r vllm-ascend/requirements.txt --extra-index https://download.pytorch.org/whl/cpu/ && \
35
+ python3 -m pip install twine attrs psutil
36
+
37
+ # Install vllm-ascend
38
+ RUN source /usr/local/Ascend/ascend-toolkit/set_env.sh && \
39
+ source /usr/local/Ascend/nnal/atb/set_env.sh && \
40
+ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/Ascend/ascend-toolkit/latest/`uname -i`-linux/devlib && \
41
+ cd vllm-ascend && \
42
+ python3 setup.py bdist_wheel && \
43
+ ls -l dist
44
+
45
+ CMD ["/bin/bash"]
@@ -0,0 +1,43 @@
1
+ #
2
+ # Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ # This file is a part of the vllm-ascend project.
16
+ #
17
+
18
+ FROM quay.io/ascend/vllm-ascend:releases-v0.13.0
19
+
20
+ ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
21
+ ARG AIS_BENCH_TAG="v3.0-20250930-master"
22
+ ARG AIS_BENCH_URL="https://gitee.com/aisbench/benchmark.git"
23
+
24
+ # Define environments
25
+ ENV DEBIAN_FRONTEND=noninteractive
26
+
27
+ WORKDIR /workspace
28
+
29
+ RUN pip config set global.index-url ${PIP_INDEX_URL}
30
+
31
+ # Install requirements-dev.txt for tests
32
+ RUN export PIP_EXTRA_INDEX_URL=https://mirrors.huaweicloud.com/ascend/repos/pypi && \
33
+ cd /vllm-workspace/vllm-ascend && \
34
+ python3 -m pip install -r requirements-dev.txt && \
35
+ python3 -m pip cache purge
36
+
37
+ # Install benchmark tools
38
+ RUN git clone -b ${AIS_BENCH_TAG} --depth 1 ${AIS_BENCH_URL} /vllm-workspace/vllm-ascend/benchmark && \
39
+ cd /vllm-workspace/vllm-ascend/benchmark && \
40
+ pip install -e . -r requirements/api.txt -r requirements/extra.txt && \
41
+ python3 -m pip cache purge
42
+
43
+ CMD ["/bin/bash"]
@@ -0,0 +1,43 @@
1
+ #
2
+ # Copyright (c) 2025 Huawei Technologies Co., Ltd. All Rights Reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ # This file is a part of the vllm-ascend project.
16
+ #
17
+
18
+ FROM quay.io/ascend/vllm-ascend:releases-v0.13.0-a3
19
+
20
+ ARG PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
21
+ ARG AIS_BENCH_TAG="v3.0-20250930-master"
22
+ ARG AIS_BENCH_URL="https://gitee.com/aisbench/benchmark.git"
23
+
24
+ # Define environments
25
+ ENV DEBIAN_FRONTEND=noninteractive
26
+
27
+ WORKDIR /workspace
28
+
29
+ RUN pip config set global.index-url ${PIP_INDEX_URL}
30
+
31
+ # Install requirements-dev.txt for tests
32
+ RUN export PIP_EXTRA_INDEX_URL=https://mirrors.huaweicloud.com/ascend/repos/pypi && \
33
+ cd /vllm-workspace/vllm-ascend && \
34
+ python3 -m pip install -r requirements-dev.txt && \
35
+ python3 -m pip cache purge
36
+
37
+ # Install benchmark tools
38
+ RUN git clone -b ${AIS_BENCH_TAG} --depth 1 ${AIS_BENCH_URL} /vllm-workspace/vllm-ascend/benchmark && \
39
+ cd /vllm-workspace/vllm-ascend/benchmark && \
40
+ pip install -e . -r requirements/api.txt -r requirements/extra.txt && \
41
+ python3 -m pip cache purge
42
+
43
+ CMD ["/bin/bash"]
@@ -0,0 +1,104 @@
1
+ name: Release Checklist
2
+ description: Generate a release checklist issue when prepare a new release.(Used for release team)
3
+ title: "[Release]: Release checklist for v"
4
+
5
+ body:
6
+ - type: textarea
7
+ attributes:
8
+ description: >
9
+ Brief info for the new release.
10
+ label: Release Checklist
11
+ value: >
12
+ **Release Version**:
13
+
14
+ **Release Branch**:
15
+
16
+ **Release Date**:
17
+
18
+ **Release Manager**:
19
+ - type: textarea
20
+ attributes:
21
+ description: >
22
+ Release notes.
23
+ label: Prepare Release Note
24
+ value: >
25
+ - [ ] Create a new issue for release feedback
26
+
27
+ - [ ] Upgrade vllm version to the new version for CI and Dockerfile
28
+
29
+ - [ ] Write the release note PR.
30
+
31
+ - [ ] Update the feedback issue link in docs/source/faqs.md
32
+
33
+ - [ ] Add release note to docs/source/user_guide/release_notes.md
34
+
35
+ - [ ] Update release version in README.md and README.zh.md (Getting Started and Branch section)
36
+
37
+ - [ ] Update version info in docs/source/community/versioning_policy.md(Release compatibility matrix, Release window and Branch states section)
38
+
39
+ - [ ] Update contributor info in docs/source/community/contributors.md
40
+
41
+ - [ ] Update package version in docs/conf.py
42
+ - type: textarea
43
+ attributes:
44
+ description: >
45
+ Make sure the code is merged.
46
+ label: PR need Merge
47
+ value: >
48
+ - [ ] PR link1
49
+
50
+ - [ ] PR link2
51
+
52
+ - [ ] ...
53
+ - type: textarea
54
+ attributes:
55
+ description: >
56
+ Make sure the new Feature/Function is tested
57
+ label: Functional Test
58
+ value: >
59
+ - [ ] Feature1
60
+
61
+ - [ ] Bug1
62
+
63
+ - [ ] ...
64
+ - type: textarea
65
+ attributes:
66
+ description: >
67
+ Make sure the doc is updated.
68
+ label: Doc Test
69
+ value: >
70
+ - [ ] Tutorial is updated.
71
+
72
+ - [ ] User Guide is updated.
73
+
74
+ - [ ] Developer Guide is updated.
75
+ - type: textarea
76
+ attributes:
77
+ description: >
78
+ Make sure the artifacts is ready
79
+ label: Prepare Artifacts
80
+ value: >
81
+ - [ ] Docker image is ready.
82
+
83
+ - [ ] Wheel package is ready.
84
+ - type: textarea
85
+ attributes:
86
+ description: >
87
+ Start to release.
88
+ label: Release Step
89
+ value: >
90
+ - [ ] Release note PR is merged.
91
+
92
+ - [ ] Post the release on GitHub release page.
93
+
94
+ - [ ] Generate official doc page on https://app.readthedocs.org/dashboard/
95
+
96
+ - [ ] Wait for the wheel package to be available on https://pypi.org/project/vllm-ascend
97
+
98
+ - [ ] Wait for the docker image to be available on https://quay.io/ascend/vllm-ascend
99
+
100
+ - [ ] Upload 310p wheel to Github release page
101
+
102
+ - [ ] Broadcast the release news (By message, blog , etc)
103
+
104
+ - [ ] Close this issue
@@ -0,0 +1,27 @@
1
+ self-hosted-runner:
2
+ # Labels of self-hosted runner in array of strings.
3
+ labels:
4
+ - linux-aarch64-a2-0
5
+ - linux-aarch64-a2-1
6
+ - linux-aarch64-a2-2
7
+ - linux-aarch64-a2-4
8
+ - linux-aarch64-a2-8
9
+ - linux-arm64-npu-static-8
10
+ - linux-aarch64-310p-1
11
+ - linux-aarch64-310p-2
12
+ - linux-aarch64-310p-4
13
+ - ubuntu-24.04-arm
14
+ - linux-aarch64-a3-1
15
+ - linux-aarch64-a3-2
16
+ - linux-aarch64-a3-4
17
+ - linux-aarch64-a3-8
18
+ - linux-amd64-cpu-0
19
+ - linux-amd64-cpu-8
20
+ - linux-amd64-cpu-16
21
+ - linux-aarch64-a3-0
22
+ - linux-amd64-cpu-8-hk
23
+ - linux-amd64-cpu-16-hk
24
+ - linux-aarch64-a2b3-0
25
+ - linux-aarch64-a2b3-1
26
+ - linux-aarch64-a2b3-2
27
+ - linux-aarch64-a2b3-4
@@ -0,0 +1,38 @@
1
+ ---
2
+ documentation:
3
+ - changed-files:
4
+ - any-glob-to-any-file:
5
+ - 'docs/**'
6
+ - '**/*.md'
7
+
8
+ ci/build:
9
+ - changed-files:
10
+ - any-glob-to-any-file:
11
+ - '.github/actions/*.yaml'
12
+ - '.github/workflows/*.yaml'
13
+
14
+ 'module:tests':
15
+ - changed-files:
16
+ - any-glob-to-any-file:
17
+ - 'tests/**'
18
+
19
+ 'module:tools':
20
+ - changed-files:
21
+ - any-glob-to-any-file:
22
+ - 'tools/**'
23
+
24
+ 'module:ops':
25
+ - changed-files:
26
+ - any-glob-to-any-file:
27
+ - 'vllm_ascend/ops/**'
28
+
29
+ 'module:quantization':
30
+ - changed-files:
31
+ - any-glob-to-any-file:
32
+ - 'vllm_ascend/quantization/**'
33
+
34
+ 'module:core':
35
+ - changed-files:
36
+ - any-glob-to-any-file:
37
+ - 'vllm_ascend/*.py'
38
+
@@ -0,0 +1,299 @@
1
+ name: 'e2e nightly test multi_node'
2
+
3
+ on:
4
+ workflow_call:
5
+ inputs:
6
+ soc_version:
7
+ required: true
8
+ type: string
9
+ description: use a2 or a3
10
+ runner:
11
+ required: false
12
+ type: string
13
+ default: linux-aarch64-a3-0
14
+ image:
15
+ required: false
16
+ type: string
17
+ description: base image for pods
18
+ default: "swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/cann:8.5.0-910b-ubuntu22.04-py3.11"
19
+ config_file_path:
20
+ required: true
21
+ type: string
22
+ description: the model config for multi_node test
23
+ replicas:
24
+ required: false
25
+ default: "1"
26
+ type: string
27
+ description: replicas of the k8s cluster
28
+ size:
29
+ required: false
30
+ default: "2"
31
+ type: string
32
+ description: how many pods will be pulled up via lws.yaml, indicates number of nodes we need
33
+ vllm_version:
34
+ required: false
35
+ default: "v0.13.0"
36
+ type: string
37
+ description: vllm version to use
38
+ vllm_ascend_remote_url:
39
+ required: false
40
+ default: https://github.com/vllm-project/vllm-ascend.git
41
+ type: string
42
+ description: used for pr level tests
43
+ vllm_ascend_ref:
44
+ required: false
45
+ default: main
46
+ type: string
47
+ description: used for pr level tests
48
+ secrets:
49
+ KUBECONFIG_B64:
50
+ required: true
51
+
52
+
53
+ # Bash shells do not use ~/.profile or ~/.bashrc so these shells need to be explicitly
54
+ # declared as "shell: bash -el {0}" on steps that need to be properly activated.
55
+ # It's used to activate ascend-toolkit environment variables.
56
+ defaults:
57
+ run:
58
+ shell: bash -el {0}
59
+
60
+ # only cancel in-progress runs of the same workflow
61
+ # and ignore the lint / 8 cards test type
62
+ concurrency:
63
+ group: ascend-nightly-${{ github.workflow_ref }}-${{ github.ref }}-${{ inputs.soc_version }}
64
+ cancel-in-progress: true
65
+
66
+ jobs:
67
+ e2e:
68
+ name: ${{ inputs.config_file_path }}
69
+ # This is the runner with no NPU for k8s controller
70
+ runs-on: ${{ inputs.runner }}
71
+ container:
72
+ image: m.daocloud.io/quay.io/ascend/cann:8.5.0-a3-ubuntu22.04-py3.11
73
+ env:
74
+ KUBECONFIG: /tmp/kubeconfig
75
+ KUBECTL: /root/.cache/.kube/kubectl
76
+ NAMESPACE: vllm-project
77
+ LEADER_POD: vllm-0
78
+ RESULT_FILE: /root/.cache/tests/ret_${{ inputs.soc_version }}
79
+ steps:
80
+ - name: Install system denpendencies
81
+ run: |
82
+ # configure apt and pip source
83
+ sed -i 's|ports.ubuntu.com|mirrors.tuna.tsinghua.edu.cn|g' /etc/apt/sources.list
84
+ pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
85
+ pip install jinja2-cli
86
+
87
+ - name: Install kubectl
88
+ run: |
89
+ # Install kubectl
90
+ arch=$(uname -m)
91
+
92
+ if echo "$arch" | grep -qiE "arm|aarch64"; then
93
+ echo "Detected ARM architecture: $arch"
94
+ KUBECTL="$KUBECTL"_arm
95
+ fi
96
+ install -o root -g root -m 0755 $KUBECTL /usr/local/bin/kubectl
97
+
98
+ # Verify kubectl installation
99
+ kubectl version --client=true
100
+
101
+ - name: Decode kubeconfig from secrets
102
+ run: |
103
+ # Decode and save kubeconfig
104
+ echo "${{ secrets.KUBECONFIG_B64 }}" | base64 -d > $KUBECONFIG
105
+
106
+ - name: Checkout code
107
+ uses: actions/checkout@v6
108
+
109
+ - name: Prepare scripts
110
+ run: |
111
+ # prepare for lws entrypoint scripts
112
+ install -D tests/e2e/nightly/multi_node/scripts/run.sh /root/.cache/tests/run.sh
113
+ # clear log directory
114
+ rm -fr $RESULT_FILE
115
+
116
+ - name: Clear resources
117
+ run: |
118
+ set -euo pipefail
119
+
120
+ CRD_NAME="${CRD_NAME:-vllm}"
121
+ TIMEOUT=${TIMEOUT:-120}
122
+ SLEEP_INTERVAL=2
123
+
124
+ echo "Deleting leaderworkerset [$CRD_NAME] in namespace [$NAMESPACE]..."
125
+ kubectl delete leaderworkerset "$CRD_NAME" -n "$NAMESPACE" --ignore-not-found
126
+
127
+ echo "Waiting for all pods starting with 'vllm' to be deleted..."
128
+ START_TIME=$(date +%s)
129
+
130
+ while true; do
131
+ NOW=$(date +%s)
132
+ ELAPSED=$((NOW - START_TIME))
133
+
134
+ if [[ $ELAPSED -ge $TIMEOUT ]]; then
135
+ echo "Timeout reached ($TIMEOUT seconds), some pods still exist:"
136
+ kubectl get pods -n "$NAMESPACE" | grep '^vllm' || true
137
+ exit 1
138
+ fi
139
+
140
+ PODS_EXIST=$(kubectl get pods -n "$NAMESPACE" -o jsonpath='{.items[*].metadata.name}' 2>/dev/null | tr ' ' '\n' | grep '^vllm' || true)
141
+
142
+ if [[ -z "$PODS_EXIST" ]]; then
143
+ echo "All vllm pods deleted."
144
+ break
145
+ else
146
+ echo "Waiting for pods to be deleted: $PODS_EXIST"
147
+ sleep $SLEEP_INTERVAL
148
+ fi
149
+ done
150
+
151
+ - name: Launch cluster
152
+ id: launcher
153
+ run: |
154
+ set -e
155
+
156
+ size="${{ inputs.size }}"
157
+ replicas="${{ inputs.replicas }}"
158
+ image="${{ inputs.image }}"
159
+ config_file_path="${{ inputs.config_file_path }}"
160
+ vllm_version="${{ inputs.vllm_version }}"
161
+ vllm_ascend_ref="${{ inputs.vllm_ascend_ref }}"
162
+ vllm_ascend_remote_url="${{ inputs.vllm_ascend_remote_url }}"
163
+ result_file_path="$RESULT_FILE"
164
+ fail_tag=FAIL_TAG_"${{ inputs.config_file_path }}"
165
+ echo "FAIL_TAG=${fail_tag}" >> $GITHUB_ENV
166
+
167
+ required_params=("size" "replicas" "image" "config_file_path")
168
+ for param in "${required_params[@]}"; do
169
+ if [ -z "${!param}" ]; then
170
+ echo "Error: Parameter '$param' is required but empty"
171
+ exit 1
172
+ fi
173
+ done
174
+
175
+ if [ "${{ inputs.soc_version }}" = "a3" ]; then
176
+ npu_per_node=16
177
+ else
178
+ npu_per_node=8
179
+ fi
180
+
181
+ jinja2 tests/e2e/nightly/multi_node/scripts/lws.yaml.jinja2 \
182
+ -D size="$size" \
183
+ -D replicas="$replicas" \
184
+ -D image="$image" \
185
+ -D config_file_path="$config_file_path" \
186
+ -D vllm_version="$vllm_version" \
187
+ -D vllm_ascend_remote_url="$vllm_ascend_remote_url" \
188
+ -D vllm_ascend_ref="$vllm_ascend_ref" \
189
+ -D result_file_path="$result_file_path" \
190
+ -D npu_per_node="$npu_per_node" \
191
+ -D fail_tag="$fail_tag" \
192
+ --outfile lws.yaml
193
+
194
+ kubectl apply -f ./lws.yaml
195
+
196
+ - name: Waiting for pod ready
197
+ run: |
198
+ POD_PREFIX="${POD_PREFIX:-vllm-0}"
199
+ SIZE="${{ inputs.size }}"
200
+ TIMEOUT=1200 # default timeout 20 minutes
201
+
202
+ echo "Waiting for Pods in namespace [$NAMESPACE] to become Running and Ready (timeout ${TIMEOUT}s)..."
203
+
204
+ START_TIME=$(date +%s)
205
+
206
+ while true; do
207
+ NOW=$(date +%s)
208
+ ELAPSED=$((NOW - START_TIME))
209
+ if [[ $ELAPSED -ge $TIMEOUT ]]; then
210
+ echo "Timeout reached after ${ELAPSED}s"
211
+ echo "Dumping pod status for debugging:"
212
+ kubectl get pods -n "$NAMESPACE"
213
+ kubectl describe pod "$LEADER_POD" -n "$NAMESPACE"
214
+ exit 1
215
+ fi
216
+
217
+ # 1) check follower pods
218
+ ALL_FOLLOWERS_READY=true
219
+ for ((i=1; i<SIZE; i++)); do
220
+ POD="${POD_PREFIX}-${i}"
221
+ PHASE=$(kubectl get pod "$POD" -n "$NAMESPACE" -o jsonpath='{.status.phase}' 2>/dev/null || echo "NotFound")
222
+ READY=$(kubectl get pod "$POD" -n "$NAMESPACE" -o jsonpath='{.status.containerStatuses[*].ready}' 2>/dev/null)
223
+
224
+ echo "Follower [$POD] phase=$PHASE ready=$READY"
225
+
226
+ if [[ "$PHASE" != "Running" || "$READY" != "true" ]]; then
227
+ echo "Follower [$POD] not Ready yet..."
228
+ ALL_FOLLOWERS_READY=false
229
+ break
230
+ fi
231
+ done
232
+
233
+ # 2) check leader pod
234
+ LEADER_PHASE=$(kubectl get pod "$LEADER_POD" -n "$NAMESPACE" -o jsonpath='{.status.phase}' 2>/dev/null || echo "NotFound")
235
+ LEADER_READY=$(kubectl get pod "$LEADER_POD" -n "$NAMESPACE" -o jsonpath='{.status.containerStatuses[*].ready}' 2>/dev/null)
236
+
237
+ echo "Leader [$LEADER_POD] phase=$LEADER_PHASE ready=$LEADER_READY"
238
+
239
+ if [[ "$LEADER_PHASE" != "Running" || "$LEADER_READY" != "true" ]]; then
240
+ echo "Leader not Ready yet..."
241
+ ALL_FOLLOWERS_READY=false
242
+ fi
243
+
244
+ if [[ "$ALL_FOLLOWERS_READY" == "true" ]]; then
245
+ echo "All follower pods and leader pod are Running and Ready — continuing."
246
+ break
247
+ fi
248
+
249
+ sleep 2
250
+ done
251
+
252
+ - name: Stream logs
253
+ run: |
254
+ set -euo pipefail
255
+
256
+ size="${{ inputs.size }}"
257
+ pids=()
258
+
259
+ cleanup() {
260
+ echo "Cleaning up background log streams..."
261
+ for pid in "${pids[@]}"; do
262
+ kill "$pid" 2>/dev/null || true
263
+ done
264
+ }
265
+ trap cleanup EXIT
266
+
267
+ for i in $(seq 1 $((size - 1))); do
268
+ POD="vllm-0-${i}"
269
+
270
+ echo "==== Collecting logs from worker pod: $POD ===="
271
+ kubectl logs -f "$POD" -n "$NAMESPACE" \
272
+ > "/tmp/${POD}_logs.txt" 2>&1 &
273
+
274
+ pids+=($!)
275
+ done
276
+
277
+ echo "==== Streaming logs from leader pod: $LEADER_POD ===="
278
+ echo "Looking for logs containing: $FAIL_TAG"
279
+
280
+ kubectl logs -f "$LEADER_POD" -n "$NAMESPACE" | while IFS= read -r line; do
281
+ echo "$line"
282
+ if echo "$line" | grep -q "$FAIL_TAG"; then
283
+ exit 1
284
+ fi
285
+ done
286
+
287
+ - name: Upload logs
288
+ if: always()
289
+ uses: actions/upload-artifact@v6
290
+ with:
291
+ name: ${{ inputs.config_file_path }}-pod-logs
292
+ path: /tmp/vllm*_logs.txt
293
+ retention-days: 7
294
+
295
+ - name: Post process
296
+ if: always()
297
+ run: |
298
+ kubectl get pods -n $NAMESPACE --ignore-not-found=true
299
+ kubectl delete -f ./lws.yaml --ignore-not-found=true || true