vllm-ascend 0.11.0rc3__tar.gz → 0.12.0rc1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1245) hide show
  1. vllm_ascend-0.12.0rc1/.github/Dockerfile.buildwheel +45 -0
  2. vllm_ascend-0.12.0rc1/.github/Dockerfile.nightly.a2 +43 -0
  3. vllm_ascend-0.12.0rc1/.github/Dockerfile.nightly.a3 +43 -0
  4. vllm_ascend-0.12.0rc1/.github/ISSUE_TEMPLATE/900-release-checklist.yml +104 -0
  5. vllm_ascend-0.12.0rc1/.github/labeler.yml +38 -0
  6. vllm_ascend-0.12.0rc1/.github/workflows/_e2e_nightly_multi_node.yaml +267 -0
  7. vllm_ascend-0.12.0rc1/.github/workflows/_e2e_nightly_single_node.yaml +130 -0
  8. vllm_ascend-0.12.0rc1/.github/workflows/_e2e_nightly_single_node_models.yaml +232 -0
  9. vllm_ascend-0.12.0rc1/.github/workflows/_e2e_test.yaml +286 -0
  10. vllm_ascend-0.12.0rc1/.github/workflows/_nightly_image_build.yaml +59 -0
  11. vllm_ascend-0.12.0rc1/.github/workflows/_pre_commit.yml +42 -0
  12. vllm_ascend-0.12.0rc1/.github/workflows/image_build_and_push.yaml +528 -0
  13. vllm_ascend-0.12.0rc1/.github/workflows/label_merge_conflict.yml +21 -0
  14. vllm_ascend-0.12.0rc1/.github/workflows/nightly_benchmarks.yaml +203 -0
  15. vllm_ascend-0.12.0rc1/.github/workflows/pr_create.yaml +121 -0
  16. vllm_ascend-0.12.0rc1/.github/workflows/release_code_and_wheel.yml +167 -0
  17. vllm_ascend-0.12.0rc1/.github/workflows/vllm_ascend_doctest.yaml +87 -0
  18. vllm_ascend-0.12.0rc1/.github/workflows/vllm_ascend_test_310p.yaml +116 -0
  19. vllm_ascend-0.12.0rc1/.github/workflows/vllm_ascend_test_full_vllm_main.yaml +39 -0
  20. vllm_ascend-0.12.0rc1/.github/workflows/vllm_ascend_test_nightly_a2.yaml +136 -0
  21. vllm_ascend-0.12.0rc1/.github/workflows/vllm_ascend_test_nightly_a3.yaml +158 -0
  22. vllm_ascend-0.12.0rc1/.github/workflows/vllm_ascend_test_pr_full.yaml +85 -0
  23. vllm_ascend-0.12.0rc1/.github/workflows/vllm_ascend_test_pr_light.yaml +167 -0
  24. vllm_ascend-0.12.0rc1/.github/workflows/vllm_ascend_test_report.yaml +172 -0
  25. vllm_ascend-0.12.0rc1/.gitignore +212 -0
  26. vllm_ascend-0.12.0rc1/.gitmodules +4 -0
  27. vllm_ascend-0.12.0rc1/.pre-commit-config.yaml +137 -0
  28. vllm_ascend-0.12.0rc1/CMakeLists.txt +136 -0
  29. vllm_ascend-0.12.0rc1/Dockerfile +69 -0
  30. vllm_ascend-0.12.0rc1/Dockerfile.310p +61 -0
  31. vllm_ascend-0.12.0rc1/Dockerfile.310p.openEuler +58 -0
  32. vllm_ascend-0.12.0rc1/Dockerfile.a3 +68 -0
  33. vllm_ascend-0.12.0rc1/Dockerfile.a3.openEuler +71 -0
  34. vllm_ascend-0.12.0rc1/Dockerfile.openEuler +71 -0
  35. vllm_ascend-0.12.0rc1/PKG-INFO +146 -0
  36. vllm_ascend-0.12.0rc1/README.md +92 -0
  37. vllm_ascend-0.12.0rc1/README.zh.md +91 -0
  38. vllm_ascend-0.12.0rc1/benchmarks/tests/serving-tests.json +78 -0
  39. vllm_ascend-0.12.0rc1/csrc/CMakeLists.txt +642 -0
  40. vllm_ascend-0.12.0rc1/csrc/aclnn_torch_adapter/NPUBridge.cpp +30 -0
  41. vllm_ascend-0.12.0rc1/csrc/aclnn_torch_adapter/NPUBridge.h +29 -0
  42. vllm_ascend-0.12.0rc1/csrc/aclnn_torch_adapter/NPUStorageImpl.cpp +52 -0
  43. vllm_ascend-0.12.0rc1/csrc/aclnn_torch_adapter/NPUStorageImpl.h +67 -0
  44. vllm_ascend-0.12.0rc1/csrc/aclnn_torch_adapter/op_api_common.h +591 -0
  45. vllm_ascend-0.12.0rc1/csrc/batch_matmul_transpose/op_host/batch_matmul_transpose.h +123 -0
  46. vllm_ascend-0.12.0rc1/csrc/batch_matmul_transpose/op_host/common.h +57 -0
  47. vllm_ascend-0.12.0rc1/csrc/batch_matmul_transpose/op_host/common_tiling.h +239 -0
  48. vllm_ascend-0.12.0rc1/csrc/batch_matmul_transpose/op_host/tiling/tiling_data.cpp +155 -0
  49. vllm_ascend-0.12.0rc1/csrc/batch_matmul_transpose/op_host/tiling/tiling_data.h +90 -0
  50. vllm_ascend-0.12.0rc1/csrc/batch_matmul_transpose/op_kernel/batch_matmul_transpose_kernel.cpp +825 -0
  51. vllm_ascend-0.12.0rc1/csrc/build.sh +189 -0
  52. vllm_ascend-0.12.0rc1/csrc/build_aclnn.sh +89 -0
  53. vllm_ascend-0.12.0rc1/csrc/cmake/config.cmake +235 -0
  54. vllm_ascend-0.12.0rc1/csrc/cmake/func.cmake +609 -0
  55. vllm_ascend-0.12.0rc1/csrc/cmake/intf.cmake +12 -0
  56. vllm_ascend-0.12.0rc1/csrc/cmake/intf_pub.cmake +75 -0
  57. vllm_ascend-0.12.0rc1/csrc/cmake/modules/Findalog.cmake +113 -0
  58. vllm_ascend-0.12.0rc1/csrc/cmake/scripts/prepare.sh +130 -0
  59. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_host/CMakeLists.txt +66 -0
  60. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_host/aclnn_dispatch_ffn_combine.cpp +84 -0
  61. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_host/aclnn_dispatch_ffn_combine.h +64 -0
  62. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_host/dispatch_ffn_combine_def.cpp +88 -0
  63. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_host/dispatch_ffn_combine_proto.cpp +40 -0
  64. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_host/dispatch_ffn_combine_tiling.cpp +265 -0
  65. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_host/error_log.h +47 -0
  66. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_host/hcom_topo_info.h +72 -0
  67. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_host/tiling_args.h +9 -0
  68. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/dispatch_ffn_combine.cpp +51 -0
  69. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/dispatch_ffn_combine.h +276 -0
  70. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/dispatch_ffn_combine_kernel.hpp +814 -0
  71. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/dispatch_ffn_combine_tiling.h +56 -0
  72. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_init_routing_quant_v2.cpp +134 -0
  73. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_init_routing_quant_v2_tiling.h +429 -0
  74. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_init_routing_v2_tiling.h +410 -0
  75. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_common.h +94 -0
  76. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_expert_token_out.h +310 -0
  77. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_fullload_dynamic_quant.h +468 -0
  78. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_fullload_quant.h +155 -0
  79. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_fullload_quant_base.h +279 -0
  80. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_gather_dynamic_quant.h +568 -0
  81. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_gather_out.h +181 -0
  82. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_gather_quant.h +235 -0
  83. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_init_routing_fullload.h +312 -0
  84. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_mrgsort.h +189 -0
  85. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_mrgsort_out.h +213 -0
  86. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_sort_base.h +70 -0
  87. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_sort_multi_core.h +373 -0
  88. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_sort_one_core.h +162 -0
  89. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_src_to_dst_and_gather.h +560 -0
  90. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_src_to_dst_op.h +164 -0
  91. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/moe_v2_src_to_dst_with_capacity.h +269 -0
  92. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/moe_init_routing_quant_v2/tiling_base.h +66 -0
  93. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/unpermute/moe_token_unpermute.h +376 -0
  94. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/unpermute/moe_token_unpermute_tiling.h +38 -0
  95. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/block_epilogue_pertoken_row.hpp +207 -0
  96. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/block_epilogue_pertoken_swiglu.hpp +316 -0
  97. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/block_mmad_preload_async_fixpipe_quant.hpp +502 -0
  98. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/const_args.hpp +6 -0
  99. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/copy_gm_to_l1_custom.hpp +40 -0
  100. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/copy_l0c_to_gm_custom.hpp +47 -0
  101. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/dispatch_policy_custom.hpp +47 -0
  102. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/hccl_shmem.hpp +162 -0
  103. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/layout3d.hpp +20 -0
  104. vllm_ascend-0.12.0rc1/csrc/dispatch_ffn_combine/op_kernel/utils/select_helper.hpp +25 -0
  105. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_host/CMakeLists.txt +59 -0
  106. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_host/aclnn_dispatch_gmm_combine_decode.cpp +101 -0
  107. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_host/aclnn_dispatch_gmm_combine_decode.h +51 -0
  108. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_host/dispatch_gmm_combine_decode_def.cpp +83 -0
  109. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_host/dispatch_gmm_combine_decode_proto.cpp +95 -0
  110. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_host/dispatch_gmm_combine_decode_tiling.cpp +339 -0
  111. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/block/block_epilogue.h +14 -0
  112. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/block/block_epilogue_per_token_dequant.hpp +760 -0
  113. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/block/block_epilogue_per_token_dequant_swiglu.h +311 -0
  114. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/dispatch_policy.h +29 -0
  115. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/tile/tile_stride_binary.h +107 -0
  116. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/epilogue/tile/tile_stride_muls.h +59 -0
  117. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/gemm/block/block_mmad.h +13 -0
  118. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/gemm/block/block_mmad_preload_async_with_callback_resident_a.h +420 -0
  119. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/gemm/dispatch_policy.h +28 -0
  120. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/gemm/kernel/grouped_matmul_slice_m_per_token_dequant_multistage_workspace.h +355 -0
  121. vllm_ascend-0.12.0rc1/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 +1990 -0
  122. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/raw_distributed/cam_moe_distribute_combine.h +814 -0
  123. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode/raw_distributed/cam_moe_distribute_dispatch.h +1072 -0
  124. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode.cpp +33 -0
  125. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode.h +436 -0
  126. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode_base.h +18 -0
  127. vllm_ascend-0.12.0rc1/csrc/dispatch_gmm_combine_decode/op_kernel/dispatch_gmm_combine_decode_tiling.h +74 -0
  128. vllm_ascend-0.12.0rc1/csrc/dispatch_layout/op_host/CMakeLists.txt +49 -0
  129. vllm_ascend-0.12.0rc1/csrc/dispatch_layout/op_host/aclnn_dispatch_layout.cpp +64 -0
  130. vllm_ascend-0.12.0rc1/csrc/dispatch_layout/op_host/aclnn_dispatch_layout.h +50 -0
  131. vllm_ascend-0.12.0rc1/csrc/dispatch_layout/op_host/dispatch_layout.cpp +51 -0
  132. vllm_ascend-0.12.0rc1/csrc/dispatch_layout/op_host/dispatch_layout_tiling.cpp +211 -0
  133. vllm_ascend-0.12.0rc1/csrc/dispatch_layout/op_kernel/dispatch_layout.cpp +17 -0
  134. vllm_ascend-0.12.0rc1/csrc/dispatch_layout/op_kernel/dispatch_layout.h +153 -0
  135. vllm_ascend-0.12.0rc1/csrc/dispatch_layout/op_kernel/dispatch_layout_tiling.h +20 -0
  136. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/CMakeLists.txt +54 -0
  137. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/aclnn_grouped_matmul_swiglu_quant_weight_nz_tensor_list.cpp +329 -0
  138. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/aclnn_grouped_matmul_swiglu_quant_weight_nz_tensor_list.h +56 -0
  139. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list.cpp +56 -0
  140. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list.h +24 -0
  141. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list_def.cpp +65 -0
  142. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list_proto.cpp +49 -0
  143. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list_tiling.cpp +188 -0
  144. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_host/grouped_matmul_swiglu_quant_weight_nz_tensor_list_tiling.h +68 -0
  145. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_kernel/grouped_matmul_swiglu_quant_weight_nz_tensor_list.cpp +80 -0
  146. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_kernel/grouped_matmul_swiglu_quant_weight_nz_tensor_list.h +498 -0
  147. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_kernel/grouped_matmul_swiglu_quant_weight_nz_tensor_list_split_ws.h +588 -0
  148. vllm_ascend-0.12.0rc1/csrc/grouped_matmul_swiglu_quant_weight_nz_tensor_list/op_kernel/grouped_matmul_swiglu_quant_weight_nz_tensor_list_utils.h +240 -0
  149. vllm_ascend-0.12.0rc1/csrc/kernels/math_utils.h +15 -0
  150. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_host/CMakeLists.txt +42 -0
  151. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_host/lightning_indexer_def.cpp +72 -0
  152. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_host/lightning_indexer_proto.cpp +96 -0
  153. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_host/lightning_indexer_tiling.cpp +694 -0
  154. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_host/lightning_indexer_tiling.h +215 -0
  155. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_kernel/lightning_indexer.cpp +58 -0
  156. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_kernel/lightning_indexer_common.h +135 -0
  157. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_kernel/lightning_indexer_kernel.h +623 -0
  158. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_kernel/lightning_indexer_service_cube.h +415 -0
  159. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_kernel/lightning_indexer_service_vector.h +559 -0
  160. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_kernel/lightning_indexer_template_tiling_key.h +66 -0
  161. vllm_ascend-0.12.0rc1/csrc/lightning_indexer/op_kernel/lightning_indexer_vector.h +335 -0
  162. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_host/CMakeLists.txt +51 -0
  163. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_host/aclnn_matmul_allreduce_add_rmsnorm.cpp +89 -0
  164. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_host/aclnn_matmul_allreduce_add_rmsnorm.h +52 -0
  165. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_host/matmul_allreduce_add_rmsnorm_def.cpp +68 -0
  166. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_host/matmul_allreduce_add_rmsnorm_proto.cpp +68 -0
  167. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_host/matmul_allreduce_add_rmsnorm_tiling.cpp +619 -0
  168. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_host/matmul_allreduce_add_rmsnorm_workspace.h +79 -0
  169. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm.cpp +50 -0
  170. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm_aic_kernel.h +359 -0
  171. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm_aiv_kernel.h +702 -0
  172. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm_tiling.h +101 -0
  173. vllm_ascend-0.12.0rc1/csrc/matmul_allreduce_add_rmsnorm/op_kernel/matmul_allreduce_add_rmsnorm_utils.h +414 -0
  174. vllm_ascend-0.12.0rc1/csrc/mla_preprocess/op_host/mla_preprocess.h +706 -0
  175. vllm_ascend-0.12.0rc1/csrc/mla_preprocess/op_host/tiling/mla_preprocess_tiling.h +100 -0
  176. vllm_ascend-0.12.0rc1/csrc/mla_preprocess/op_kernel/mla_preprocess.h +117 -0
  177. vllm_ascend-0.12.0rc1/csrc/mla_preprocess/op_kernel/mla_preprocess_kernel.cpp +363 -0
  178. vllm_ascend-0.12.0rc1/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_bf16.hpp +2913 -0
  179. vllm_ascend-0.12.0rc1/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_bf16_nq.hpp +1252 -0
  180. vllm_ascend-0.12.0rc1/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_bf16_qdown.hpp +2935 -0
  181. vllm_ascend-0.12.0rc1/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_fp16.hpp +2503 -0
  182. vllm_ascend-0.12.0rc1/csrc/moe_combine_normal/op_host/CMakeLists.txt +49 -0
  183. vllm_ascend-0.12.0rc1/csrc/moe_combine_normal/op_host/aclnn_moe_combine_normal.cpp +77 -0
  184. vllm_ascend-0.12.0rc1/csrc/moe_combine_normal/op_host/aclnn_moe_combine_normal.h +62 -0
  185. vllm_ascend-0.12.0rc1/csrc/moe_combine_normal/op_host/moe_combine_normal.cpp +71 -0
  186. vllm_ascend-0.12.0rc1/csrc/moe_combine_normal/op_host/moe_combine_normal_tiling.cpp +546 -0
  187. vllm_ascend-0.12.0rc1/csrc/moe_combine_normal/op_kernel/moe_combine_normal.cpp +22 -0
  188. vllm_ascend-0.12.0rc1/csrc/moe_combine_normal/op_kernel/moe_combine_normal.h +377 -0
  189. vllm_ascend-0.12.0rc1/csrc/moe_combine_normal/op_kernel/moe_combine_normal_tiling.h +33 -0
  190. vllm_ascend-0.12.0rc1/csrc/moe_dispatch_normal/op_host/CMakeLists.txt +49 -0
  191. vllm_ascend-0.12.0rc1/csrc/moe_dispatch_normal/op_host/aclnn_moe_dispatch_normal.cpp +84 -0
  192. vllm_ascend-0.12.0rc1/csrc/moe_dispatch_normal/op_host/aclnn_moe_dispatch_normal.h +24 -0
  193. vllm_ascend-0.12.0rc1/csrc/moe_dispatch_normal/op_host/moe_dispatch_normal.cpp +92 -0
  194. vllm_ascend-0.12.0rc1/csrc/moe_dispatch_normal/op_host/moe_dispatch_normal_tiling.cpp +635 -0
  195. vllm_ascend-0.12.0rc1/csrc/moe_dispatch_normal/op_kernel/moe_dispatch_normal.cpp +56 -0
  196. vllm_ascend-0.12.0rc1/csrc/moe_dispatch_normal/op_kernel/moe_dispatch_normal.h +540 -0
  197. vllm_ascend-0.12.0rc1/csrc/moe_dispatch_normal/op_kernel/moe_dispatch_normal_tiling.h +30 -0
  198. vllm_ascend-0.12.0rc1/csrc/notify_dispatch/op_host/CMakeLists.txt +49 -0
  199. vllm_ascend-0.12.0rc1/csrc/notify_dispatch/op_host/aclnn_notify_dispatch.cpp +84 -0
  200. vllm_ascend-0.12.0rc1/csrc/notify_dispatch/op_host/aclnn_notify_dispatch.h +61 -0
  201. vllm_ascend-0.12.0rc1/csrc/notify_dispatch/op_host/notify_dispatch.cpp +60 -0
  202. vllm_ascend-0.12.0rc1/csrc/notify_dispatch/op_host/notify_dispatch_tiling.cpp +306 -0
  203. vllm_ascend-0.12.0rc1/csrc/notify_dispatch/op_kernel/notify_dispatch.cpp +57 -0
  204. vllm_ascend-0.12.0rc1/csrc/notify_dispatch/op_kernel/notify_dispatch.h +495 -0
  205. vllm_ascend-0.12.0rc1/csrc/notify_dispatch/op_kernel/notify_dispatch_tiling.h +23 -0
  206. vllm_ascend-0.12.0rc1/csrc/ops.h +171 -0
  207. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_host/CMakeLists.txt +39 -0
  208. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_host/sparse_flash_attention_def.cpp +90 -0
  209. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_host/sparse_flash_attention_proto.cpp +48 -0
  210. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_host/sparse_flash_attention_tiling.cpp +1845 -0
  211. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_host/sparse_flash_attention_tiling.h +583 -0
  212. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention.cpp +53 -0
  213. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_common.h +192 -0
  214. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_kernel_mla.h +969 -0
  215. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_service_cube_mla.h +1079 -0
  216. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_service_vector_mla.h +1329 -0
  217. vllm_ascend-0.12.0rc1/csrc/sparse_flash_attention/op_kernel/sparse_flash_attention_template_tiling_key.h +54 -0
  218. vllm_ascend-0.12.0rc1/csrc/torch_binding.cpp +1257 -0
  219. vllm_ascend-0.12.0rc1/csrc/torch_binding_meta.cpp +319 -0
  220. vllm_ascend-0.12.0rc1/csrc/utils/CMakeLists.txt +48 -0
  221. vllm_ascend-0.12.0rc1/csrc/utils/inc/aclnn_util.h +14 -0
  222. vllm_ascend-0.12.0rc1/csrc/utils/inc/error/ops_error.h +25 -0
  223. vllm_ascend-0.12.0rc1/csrc/utils/inc/fallback.h +497 -0
  224. vllm_ascend-0.12.0rc1/csrc/utils/inc/fallback_comm.h +38 -0
  225. vllm_ascend-0.12.0rc1/csrc/utils/inc/kernel/comm_args.h +72 -0
  226. vllm_ascend-0.12.0rc1/csrc/utils/inc/kernel/data_copy.h +68 -0
  227. vllm_ascend-0.12.0rc1/csrc/utils/inc/kernel/dropmask.h +121 -0
  228. vllm_ascend-0.12.0rc1/csrc/utils/inc/kernel/pse.h +483 -0
  229. vllm_ascend-0.12.0rc1/csrc/utils/inc/kernel/sync_collectives.h +426 -0
  230. vllm_ascend-0.12.0rc1/csrc/utils/inc/kernel/util.h +144 -0
  231. vllm_ascend-0.12.0rc1/csrc/utils/inc/log/inner/dfx_base.h +190 -0
  232. vllm_ascend-0.12.0rc1/csrc/utils/inc/log/ops_log.h +59 -0
  233. vllm_ascend-0.12.0rc1/csrc/utils/inc/tiling/data_copy_transpose_tiling.h +47 -0
  234. vllm_ascend-0.12.0rc1/csrc/utils/inc/tiling/data_copy_transpose_tiling_def.h +43 -0
  235. vllm_ascend-0.12.0rc1/csrc/utils/inc/tiling/tiling_base.h +225 -0
  236. vllm_ascend-0.12.0rc1/csrc/utils/inc/tiling/tiling_templates_registry.h +162 -0
  237. vllm_ascend-0.12.0rc1/csrc/utils/inc/tiling/tiling_type.h +136 -0
  238. vllm_ascend-0.12.0rc1/csrc/utils/src/fallback_comm.cpp +53 -0
  239. vllm_ascend-0.12.0rc1/csrc/utils.h +55 -0
  240. vllm_ascend-0.12.0rc1/docs/source/assets/deployment.png +0 -0
  241. vllm_ascend-0.12.0rc1/docs/source/assets/disaggregated_prefill_pull.png +0 -0
  242. vllm_ascend-0.12.0rc1/docs/source/assets/disaggregated_prefill_push.png +0 -0
  243. vllm_ascend-0.12.0rc1/docs/source/assets/eplb.png +0 -0
  244. vllm_ascend-0.12.0rc1/docs/source/assets/workflow.png +0 -0
  245. vllm_ascend-0.12.0rc1/docs/source/community/contributors.md +171 -0
  246. vllm_ascend-0.12.0rc1/docs/source/community/user_stories/index.md +19 -0
  247. vllm_ascend-0.12.0rc1/docs/source/community/versioning_policy.md +149 -0
  248. vllm_ascend-0.12.0rc1/docs/source/conf.py +145 -0
  249. vllm_ascend-0.12.0rc1/docs/source/developer_guide/contribution/index.md +112 -0
  250. vllm_ascend-0.12.0rc1/docs/source/developer_guide/contribution/multi_node_test.md +159 -0
  251. vllm_ascend-0.12.0rc1/docs/source/developer_guide/contribution/testing.md +288 -0
  252. vllm_ascend-0.12.0rc1/docs/source/developer_guide/evaluation/index.md +11 -0
  253. vllm_ascend-0.12.0rc1/docs/source/developer_guide/evaluation/using_ais_bench.md +324 -0
  254. vllm_ascend-0.12.0rc1/docs/source/developer_guide/evaluation/using_evalscope.md +176 -0
  255. vllm_ascend-0.12.0rc1/docs/source/developer_guide/evaluation/using_lm_eval.md +302 -0
  256. vllm_ascend-0.12.0rc1/docs/source/developer_guide/evaluation/using_opencompass.md +124 -0
  257. vllm_ascend-0.12.0rc1/docs/source/developer_guide/feature_guide/KV_Cache_Pool_Guide.md +83 -0
  258. vllm_ascend-0.12.0rc1/docs/source/developer_guide/feature_guide/ModelRunner_prepare_inputs.md +259 -0
  259. vllm_ascend-0.12.0rc1/docs/source/developer_guide/feature_guide/Multi_Token_Prediction.md +109 -0
  260. vllm_ascend-0.12.0rc1/docs/source/developer_guide/feature_guide/add_custom_aclnn_op.md +25 -0
  261. vllm_ascend-0.12.0rc1/docs/source/developer_guide/feature_guide/disaggregated_prefill.md +103 -0
  262. vllm_ascend-0.12.0rc1/docs/source/developer_guide/feature_guide/eplb_swift_balancer.md +222 -0
  263. vllm_ascend-0.12.0rc1/docs/source/developer_guide/feature_guide/index.md +16 -0
  264. vllm_ascend-0.12.0rc1/docs/source/developer_guide/feature_guide/patch.md +75 -0
  265. vllm_ascend-0.12.0rc1/docs/source/developer_guide/performance_and_debug/index.md +11 -0
  266. vllm_ascend-0.12.0rc1/docs/source/developer_guide/performance_and_debug/msprobe_guide.md +516 -0
  267. vllm_ascend-0.12.0rc1/docs/source/developer_guide/performance_and_debug/optimization_and_tuning.md +184 -0
  268. vllm_ascend-0.12.0rc1/docs/source/developer_guide/performance_and_debug/performance_benchmark.md +195 -0
  269. vllm_ascend-0.12.0rc1/docs/source/developer_guide/performance_and_debug/service_profiling_guide.md +250 -0
  270. vllm_ascend-0.12.0rc1/docs/source/faqs.md +242 -0
  271. vllm_ascend-0.12.0rc1/docs/source/index.md +70 -0
  272. vllm_ascend-0.12.0rc1/docs/source/installation.md +485 -0
  273. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/contribution/testing.po +237 -0
  274. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/index.po +26 -0
  275. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/msprobe_guide.po +646 -0
  276. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/performance_benchmark.po +88 -0
  277. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/profile_execute_duration.po +81 -0
  278. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance_and_debug/service_profiling_guide.po +575 -0
  279. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu_multimodal.po +99 -0
  280. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/graph_mode.po +121 -0
  281. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/quantization.po +183 -0
  282. vllm_ascend-0.12.0rc1/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/supported_models.po +190 -0
  283. vllm_ascend-0.12.0rc1/docs/source/quick_start.md +195 -0
  284. vllm_ascend-0.12.0rc1/docs/source/tutorials/310p.md +409 -0
  285. vllm_ascend-0.12.0rc1/docs/source/tutorials/DeepSeek-R1.md +290 -0
  286. vllm_ascend-0.12.0rc1/docs/source/tutorials/DeepSeek-V3.1.md +807 -0
  287. vllm_ascend-0.12.0rc1/docs/source/tutorials/DeepSeek-V3.2.md +652 -0
  288. vllm_ascend-0.12.0rc1/docs/source/tutorials/Kimi-K2-Thinking.md +107 -0
  289. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen-VL-Dense.md +577 -0
  290. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen2.5-7B.md +177 -0
  291. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen2.5-Omni.md +206 -0
  292. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen3-235B-A22B.md +313 -0
  293. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen3-30B-A3B.md +110 -0
  294. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen3-32B-W4A4.md +141 -0
  295. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen3-8B-W4A8.md +134 -0
  296. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen3-Coder-30B-A3B.md +105 -0
  297. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen3-Dense.md +372 -0
  298. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen3-Next.md +154 -0
  299. vllm_ascend-0.12.0rc1/docs/source/tutorials/Qwen3_embedding.md +100 -0
  300. vllm_ascend-0.12.0rc1/docs/source/tutorials/index.md +25 -0
  301. vllm_ascend-0.12.0rc1/docs/source/tutorials/pd_disaggregation_mooncake_multi_node.md +922 -0
  302. vllm_ascend-0.12.0rc1/docs/source/tutorials/pd_disaggregation_mooncake_single_node.md +252 -0
  303. vllm_ascend-0.12.0rc1/docs/source/tutorials/ray.md +187 -0
  304. vllm_ascend-0.12.0rc1/docs/source/user_guide/configuration/additional_config.md +98 -0
  305. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/dynamic_batch.md +51 -0
  306. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/eplb_swift_balancer.md +98 -0
  307. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/external_dp.md +86 -0
  308. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/graph_mode.md +82 -0
  309. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/images/netloader_flowchart.png +0 -0
  310. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/images/netloader_timing_diagram.png +0 -0
  311. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/index.md +20 -0
  312. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/kv_pool.md +293 -0
  313. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/large_scale_ep.md +504 -0
  314. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/lora.md +26 -0
  315. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/netloader.md +97 -0
  316. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/quantization-llm-compressor.md +65 -0
  317. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/quantization.md +106 -0
  318. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/sleep_mode.md +116 -0
  319. vllm_ascend-0.12.0rc1/docs/source/user_guide/feature_guide/structured_output.md +17 -0
  320. vllm_ascend-0.12.0rc1/docs/source/user_guide/release_notes.md +810 -0
  321. vllm_ascend-0.12.0rc1/docs/source/user_guide/support_matrix/supported_features.md +47 -0
  322. vllm_ascend-0.12.0rc1/docs/source/user_guide/support_matrix/supported_models.md +81 -0
  323. vllm_ascend-0.12.0rc1/examples/chat_templates/template_qwen2_audio.jinja +23 -0
  324. vllm_ascend-0.12.0rc1/examples/disaggregated_prefill_v1/load_balance_proxy_server_example.py +666 -0
  325. vllm_ascend-0.12.0rc1/examples/disaggregated_prefill_v1/mooncake_connector_deployment_guide.md +165 -0
  326. vllm_ascend-0.12.0rc1/examples/external_online_dp/README.md +54 -0
  327. vllm_ascend-0.12.0rc1/examples/external_online_dp/dp_load_balance_proxy_server.py +405 -0
  328. vllm_ascend-0.12.0rc1/examples/external_online_dp/run_dp_template.sh +32 -0
  329. vllm_ascend-0.12.0rc1/examples/offline_data_parallel.py +266 -0
  330. vllm_ascend-0.12.0rc1/examples/offline_disaggregated_prefill_npu.py +168 -0
  331. vllm_ascend-0.12.0rc1/examples/offline_external_launcher.py +331 -0
  332. vllm_ascend-0.12.0rc1/examples/offline_inference_npu_long_seq.py +59 -0
  333. vllm_ascend-0.12.0rc1/examples/offline_inference_sleep_mode_npu.py +57 -0
  334. vllm_ascend-0.12.0rc1/examples/offline_weight_load.py +335 -0
  335. vllm_ascend-0.12.0rc1/examples/prompt_embed_inference.py +97 -0
  336. vllm_ascend-0.12.0rc1/examples/quantization/llm-compressor/w8a8_int8.py +160 -0
  337. vllm_ascend-0.12.0rc1/examples/quantization/llm-compressor/w8a8_int8_dynamic.py +83 -0
  338. vllm_ascend-0.12.0rc1/examples/run_dp_server.sh +30 -0
  339. vllm_ascend-0.12.0rc1/mypy.ini +32 -0
  340. vllm_ascend-0.12.0rc1/pyproject.toml +42 -0
  341. vllm_ascend-0.12.0rc1/requirements-dev.txt +24 -0
  342. vllm_ascend-0.12.0rc1/requirements.txt +33 -0
  343. vllm_ascend-0.12.0rc1/setup.py +533 -0
  344. vllm_ascend-0.12.0rc1/tests/e2e/conftest.py +773 -0
  345. vllm_ascend-0.12.0rc1/tests/e2e/doctests/002-pip-binary-installation-test.sh +66 -0
  346. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/ERNIE-4.5-21B-A3B-PT.yaml +9 -0
  347. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/InternVL2-8B.yaml +11 -0
  348. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/InternVL2_5-8B.yaml +11 -0
  349. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/InternVL3-8B.yaml +11 -0
  350. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/InternVL3_5-8B-hf.yaml +11 -0
  351. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/Meta-Llama-3.1-8B-Instruct.yaml +11 -0
  352. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/Molmo-7B-D-0924.yaml +13 -0
  353. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/Qwen2.5-Omni-7B.yaml +10 -0
  354. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/Qwen3-30B-A3B-W8A8.yaml +16 -0
  355. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/Qwen3-30B-A3B.yaml +19 -0
  356. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/Qwen3-8B-W8A8.yaml +12 -0
  357. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/Qwen3-Next-80B-A3B-Instruct.yaml +15 -0
  358. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/Qwen3-VL-8B-Instruct.yaml +11 -0
  359. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/accuracy.txt +17 -0
  360. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/gemma-3-4b-it.yaml +13 -0
  361. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/internlm3-8b-instruct.yaml +13 -0
  362. vllm_ascend-0.12.0rc1/tests/e2e/models/configs/llava-1.5-7b-hf.yaml +11 -0
  363. vllm_ascend-0.12.0rc1/tests/e2e/models/conftest.py +72 -0
  364. vllm_ascend-0.12.0rc1/tests/e2e/models/test_lm_eval_correctness.py +159 -0
  365. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_aclgraph_capture_replay.py +237 -0
  366. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_chunk_gated_delta_rule.py +33 -0
  367. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_data_parallel.py +83 -0
  368. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_data_parallel_tp2.py +52 -0
  369. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_expert_parallel.py +33 -0
  370. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_external_launcher.py +239 -0
  371. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_full_graph_mode.py +121 -0
  372. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_fused_moe_allgather_ep.py +74 -0
  373. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_offline_inference_distributed.py +223 -0
  374. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_offline_weight_load.py +74 -0
  375. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_pipeline_parallel.py +47 -0
  376. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_prefix_caching.py +83 -0
  377. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_quantization.py +47 -0
  378. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_qwen3_moe.py +89 -0
  379. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_qwen3_next.py +125 -0
  380. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_shared_expert_dp.py +93 -0
  381. vllm_ascend-0.12.0rc1/tests/e2e/multicard/test_single_request_aclgraph.py +85 -0
  382. vllm_ascend-0.12.0rc1/tests/e2e/nightly/features/test_mtpx_deepseek_r1_0528_w8a8.py +140 -0
  383. vllm_ascend-0.12.0rc1/tests/e2e/nightly/features/test_prefix_cache_deepseek_r1_0528_w8a8.py +110 -0
  384. vllm_ascend-0.12.0rc1/tests/e2e/nightly/features/test_prefix_cache_qwen3_32b_int8.py +99 -0
  385. vllm_ascend-0.12.0rc1/tests/e2e/nightly/features/test_qwen3_32b_int8_a3_feature_stack3.py +99 -0
  386. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_deepseek_r1_0528_w8a8.py +120 -0
  387. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_deepseek_r1_0528_w8a8_eplb.py +115 -0
  388. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_deepseek_v3_2_exp_w8a8.py +105 -0
  389. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_glm4_5.py +111 -0
  390. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_qwen2_5_vl_32b.py +110 -0
  391. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_qwen2_5_vl_7b.py +102 -0
  392. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_qwen3_235b_a22b_w8a8_eplb.py +105 -0
  393. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_qwen3_235b_w8a8.py +101 -0
  394. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_qwen3_30b_w8a8.py +92 -0
  395. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_qwen3_32b.py +99 -0
  396. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_qwen3_32b_int8.py +130 -0
  397. vllm_ascend-0.12.0rc1/tests/e2e/nightly/models/test_qwq_32b.py +116 -0
  398. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/models/DeepSeek-R1-W8A8-A2.yaml +57 -0
  399. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/models/DeepSeek-R1-W8A8-EPLB.yaml +195 -0
  400. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/models/DeepSeek-R1-W8A8.yaml +194 -0
  401. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/models/DeepSeek-V3.yaml +111 -0
  402. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/models/DeepSeek-V3_2-Exp-bf16.yaml +51 -0
  403. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/models/Qwen3-235B-A22B.yaml +70 -0
  404. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/models/Qwen3-235B-W8A8-EPLB.yaml +91 -0
  405. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/models/Qwen3-235B-W8A8.yaml +87 -0
  406. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/multi_node_config.py +285 -0
  407. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/config/utils.py +129 -0
  408. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/scripts/lws.yaml.jinja2 +140 -0
  409. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/scripts/run.sh +164 -0
  410. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multi_node/test_multi_node.py +130 -0
  411. vllm_ascend-0.12.0rc1/tests/e2e/nightly/multicard_ops/test_dispatch_gmm_combine_decode.py +411 -0
  412. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/test_batch_matmul_transpose.py +141 -0
  413. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/test_dispatch_ffn_combine.py +168 -0
  414. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/test_fused_moe.py +352 -0
  415. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/test_gmm_swiglu_quant_weight_nz_tensor_list.py +148 -0
  416. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/test_grouped_matmul_swiglu_quant.py +175 -0
  417. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/test_matmul_allreduce_add_rmsnorm.py +135 -0
  418. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/test_mla_preprocess.py +115 -0
  419. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/test_mla_preprocess_nq.py +99 -0
  420. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/test_mla_preprocess_qdown.py +116 -0
  421. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/triton/test_causal_conv1d.py +230 -0
  422. vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/triton/test_rope.py +141 -0
  423. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/compile/backend.py +130 -0
  424. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/compile/test_norm_quant_fusion.py +113 -0
  425. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/pooling/test_classification.py +34 -0
  426. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/pooling/test_embedding.py +100 -0
  427. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/pooling/test_scoring.py +187 -0
  428. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/spec_decode_v1/test_v1_mtp_correctness.py +176 -0
  429. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/spec_decode_v1/test_v1_spec_decode.py +241 -0
  430. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/test_aclgraph_accuracy.py +213 -0
  431. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/test_aclgraph_mem.py +99 -0
  432. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/test_async_scheduling.py +239 -0
  433. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/test_camem.py +99 -0
  434. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/test_completion_with_prompt_embeds.py +75 -0
  435. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/test_vlm.py +89 -0
  436. vllm_ascend-0.12.0rc1/tests/e2e/singlecard/test_xlite.py +132 -0
  437. vllm_ascend-0.12.0rc1/tests/ut/attention/test_attention_mask.py +53 -0
  438. vllm_ascend-0.12.0rc1/tests/ut/attention/test_attention_v1.py +392 -0
  439. vllm_ascend-0.12.0rc1/tests/ut/attention/test_mla_v1.py +1221 -0
  440. vllm_ascend-0.12.0rc1/tests/ut/attention/test_sfa_v1.py +187 -0
  441. vllm_ascend-0.12.0rc1/tests/ut/compilation/test_acl_graph.py +847 -0
  442. vllm_ascend-0.12.0rc1/tests/ut/core/test_scheduler_dynamic_batch.py +750 -0
  443. vllm_ascend-0.12.0rc1/tests/ut/distributed/mooncake/test_config_data.py +75 -0
  444. vllm_ascend-0.12.0rc1/tests/ut/distributed/test_parallel_state.py +81 -0
  445. vllm_ascend-0.12.0rc1/tests/ut/eplb/core/test_eplb_utils.py +194 -0
  446. vllm_ascend-0.12.0rc1/tests/ut/kv_connector/test_mooncake_connector.py +1262 -0
  447. vllm_ascend-0.12.0rc1/tests/ut/kv_connector/test_mooncake_layerwise_connector.py +895 -0
  448. vllm_ascend-0.12.0rc1/tests/ut/kv_connector/utils.py +210 -0
  449. vllm_ascend-0.12.0rc1/tests/ut/model_loader/netloader/test_netloader.py +215 -0
  450. vllm_ascend-0.12.0rc1/tests/ut/model_loader/netloader/test_netloader_elastic.py +432 -0
  451. vllm_ascend-0.12.0rc1/tests/ut/model_loader/netloader/test_netloader_load.py +114 -0
  452. vllm_ascend-0.12.0rc1/tests/ut/model_loader/netloader/test_netloader_utils.py +61 -0
  453. vllm_ascend-0.12.0rc1/tests/ut/ops/test_activation.py +76 -0
  454. vllm_ascend-0.12.0rc1/tests/ut/ops/test_comm_utils.py +98 -0
  455. vllm_ascend-0.12.0rc1/tests/ut/ops/test_expert_load_balancer.py +140 -0
  456. vllm_ascend-0.12.0rc1/tests/ut/ops/test_fused_moe.py +596 -0
  457. vllm_ascend-0.12.0rc1/tests/ut/ops/test_layernorm.py +57 -0
  458. vllm_ascend-0.12.0rc1/tests/ut/ops/test_linear.py +157 -0
  459. vllm_ascend-0.12.0rc1/tests/ut/ops/test_mla.py +155 -0
  460. vllm_ascend-0.12.0rc1/tests/ut/ops/test_moe_comm_method.py +245 -0
  461. vllm_ascend-0.12.0rc1/tests/ut/ops/test_prepare_finalize.py +224 -0
  462. vllm_ascend-0.12.0rc1/tests/ut/ops/test_rotary_embedding.py +453 -0
  463. vllm_ascend-0.12.0rc1/tests/ut/ops/test_token_dispatcher.py +535 -0
  464. vllm_ascend-0.12.0rc1/tests/ut/ops/test_vocab_parallel_embedding.py +260 -0
  465. vllm_ascend-0.12.0rc1/tests/ut/quantization/test_quant_config.py +241 -0
  466. vllm_ascend-0.12.0rc1/tests/ut/quantization/test_w4a16.py +269 -0
  467. vllm_ascend-0.12.0rc1/tests/ut/quantization/test_w4a8_dynamic.py +301 -0
  468. vllm_ascend-0.12.0rc1/tests/ut/quantization/test_w8a8.py +985 -0
  469. vllm_ascend-0.12.0rc1/tests/ut/quantization/test_w8a8_dynamic.py +61 -0
  470. vllm_ascend-0.12.0rc1/tests/ut/sample/test_rejection_sampler.py +204 -0
  471. vllm_ascend-0.12.0rc1/tests/ut/sample/test_sampler.py +35 -0
  472. vllm_ascend-0.12.0rc1/tests/ut/spec_decode/test_eagle_proposer.py +312 -0
  473. vllm_ascend-0.12.0rc1/tests/ut/spec_decode/test_mtp_proposer.py +445 -0
  474. vllm_ascend-0.12.0rc1/tests/ut/test_ascend_config.py +93 -0
  475. vllm_ascend-0.12.0rc1/tests/ut/test_platform.py +580 -0
  476. vllm_ascend-0.12.0rc1/tests/ut/test_utils.py +309 -0
  477. vllm_ascend-0.12.0rc1/tests/ut/worker/test_input_batch.py +375 -0
  478. vllm_ascend-0.12.0rc1/tests/ut/worker/test_worker_v1.py +1184 -0
  479. vllm_ascend-0.12.0rc1/tools/aisbench.py +326 -0
  480. vllm_ascend-0.12.0rc1/tools/send_request.py +23 -0
  481. vllm_ascend-0.12.0rc1/typos.toml +177 -0
  482. vllm_ascend-0.12.0rc1/vllm_ascend/__init__.py +37 -0
  483. vllm_ascend-0.12.0rc1/vllm_ascend/_cann_ops_custom/.gitkeep +3 -0
  484. vllm_ascend-0.12.0rc1/vllm_ascend/_version.py +34 -0
  485. vllm_ascend-0.12.0rc1/vllm_ascend/ascend_config.py +321 -0
  486. vllm_ascend-0.12.0rc1/vllm_ascend/ascend_forward_context.py +233 -0
  487. vllm_ascend-0.12.0rc1/vllm_ascend/attention/attention_cp.py +915 -0
  488. vllm_ascend-0.12.0rc1/vllm_ascend/attention/attention_mask.py +75 -0
  489. vllm_ascend-0.12.0rc1/vllm_ascend/attention/attention_v1.py +761 -0
  490. vllm_ascend-0.12.0rc1/vllm_ascend/attention/mla_v1.py +2119 -0
  491. vllm_ascend-0.12.0rc1/vllm_ascend/attention/sfa_v1.py +1002 -0
  492. vllm_ascend-0.12.0rc1/vllm_ascend/attention/utils.py +235 -0
  493. vllm_ascend-0.12.0rc1/vllm_ascend/compilation/acl_graph.py +485 -0
  494. vllm_ascend-0.12.0rc1/vllm_ascend/compilation/compiler_interface.py +137 -0
  495. vllm_ascend-0.12.0rc1/vllm_ascend/compilation/graph_fusion_pass_manager.py +53 -0
  496. vllm_ascend-0.12.0rc1/vllm_ascend/compilation/npugraph_ex_passes/add_rms_norm_quant.py +123 -0
  497. vllm_ascend-0.12.0rc1/vllm_ascend/compilation/passes/norm_quant_fusion_pass.py +113 -0
  498. vllm_ascend-0.12.0rc1/vllm_ascend/core/recompute_scheduler.py +841 -0
  499. vllm_ascend-0.12.0rc1/vllm_ascend/core/scheduler_dynamic_batch.py +595 -0
  500. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/__init__.py +40 -0
  501. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/cpu_offload_connector.py +475 -0
  502. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/cpu_offload_manager/cpu_kv_cache_manager.py +203 -0
  503. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/cpu_offload_manager/metadata.py +271 -0
  504. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/__init__.py +1 -0
  505. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/ascend_store_connector.py +192 -0
  506. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/backend/__init__.py +1 -0
  507. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/backend/backend.py +29 -0
  508. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/backend/memcache_backend.py +74 -0
  509. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/backend/mooncake_backend.py +186 -0
  510. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/config_data.py +377 -0
  511. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/kv_transfer.py +261 -0
  512. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/pool_scheduler.py +328 -0
  513. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/kvpool/pool_worker.py +604 -0
  514. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/mooncake_connector.py +1473 -0
  515. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/mooncake_layerwise_connector.py +1157 -0
  516. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/mooncake_transfer_engine.py +53 -0
  517. vllm_ascend-0.12.0rc1/vllm_ascend/distributed/parallel_state.py +345 -0
  518. vllm_ascend-0.12.0rc1/vllm_ascend/envs.py +148 -0
  519. vllm_ascend-0.12.0rc1/vllm_ascend/eplb/adaptor/vllm_adaptor.py +316 -0
  520. vllm_ascend-0.12.0rc1/vllm_ascend/eplb/core/eplb_device_transfer_loader.py +138 -0
  521. vllm_ascend-0.12.0rc1/vllm_ascend/eplb/core/eplb_utils.py +166 -0
  522. vllm_ascend-0.12.0rc1/vllm_ascend/eplb/core/policy/policy_dynamic_ep_v2.py +772 -0
  523. vllm_ascend-0.12.0rc1/vllm_ascend/eplb/core/policy/policy_factory.py +33 -0
  524. vllm_ascend-0.12.0rc1/vllm_ascend/eplb/eplb_updator.py +254 -0
  525. vllm_ascend-0.12.0rc1/vllm_ascend/eplb/utils.py +89 -0
  526. vllm_ascend-0.12.0rc1/vllm_ascend/kv_offload/cpu_npu.py +168 -0
  527. vllm_ascend-0.12.0rc1/vllm_ascend/kv_offload/npu.py +71 -0
  528. vllm_ascend-0.12.0rc1/vllm_ascend/lora/punica_npu.py +351 -0
  529. vllm_ascend-0.12.0rc1/vllm_ascend/model_loader/netloader/__init__.py +20 -0
  530. vllm_ascend-0.12.0rc1/vllm_ascend/model_loader/netloader/executor/elastic_load.py +170 -0
  531. vllm_ascend-0.12.0rc1/vllm_ascend/model_loader/netloader/interaction/elastic.py +408 -0
  532. vllm_ascend-0.12.0rc1/vllm_ascend/model_loader/netloader/load.py +84 -0
  533. vllm_ascend-0.12.0rc1/vllm_ascend/model_loader/netloader/netloader.py +326 -0
  534. vllm_ascend-0.12.0rc1/vllm_ascend/model_loader/netloader/utils.py +66 -0
  535. vllm_ascend-0.12.0rc1/vllm_ascend/ops/__init__.py +57 -0
  536. vllm_ascend-0.12.0rc1/vllm_ascend/ops/activation.py +44 -0
  537. vllm_ascend-0.12.0rc1/vllm_ascend/ops/expert_load_balancer.py +118 -0
  538. vllm_ascend-0.12.0rc1/vllm_ascend/ops/fused_moe/experts_selector.py +305 -0
  539. vllm_ascend-0.12.0rc1/vllm_ascend/ops/fused_moe/fused_moe.py +472 -0
  540. vllm_ascend-0.12.0rc1/vllm_ascend/ops/fused_moe/moe_comm_method.py +317 -0
  541. vllm_ascend-0.12.0rc1/vllm_ascend/ops/fused_moe/moe_mlp.py +344 -0
  542. vllm_ascend-0.12.0rc1/vllm_ascend/ops/fused_moe/prepare_finalize.py +453 -0
  543. vllm_ascend-0.12.0rc1/vllm_ascend/ops/fused_moe/token_dispatcher.py +749 -0
  544. vllm_ascend-0.12.0rc1/vllm_ascend/ops/layernorm.py +122 -0
  545. vllm_ascend-0.12.0rc1/vllm_ascend/ops/linear.py +468 -0
  546. vllm_ascend-0.12.0rc1/vllm_ascend/ops/linear_op.py +683 -0
  547. vllm_ascend-0.12.0rc1/vllm_ascend/ops/mla.py +187 -0
  548. vllm_ascend-0.12.0rc1/vllm_ascend/ops/register_custom_ops.py +343 -0
  549. vllm_ascend-0.12.0rc1/vllm_ascend/ops/rotary_embedding.py +437 -0
  550. vllm_ascend-0.12.0rc1/vllm_ascend/ops/shared_weight_layer.py +252 -0
  551. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/chunk.py +226 -0
  552. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/chunk_delta_h.py +259 -0
  553. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/chunk_o.py +168 -0
  554. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/chunk_scaled_dot_kkt.py +147 -0
  555. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/cumsum.py +145 -0
  556. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/layernorm_guard.py +201 -0
  557. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/sigmoid_gating.py +171 -0
  558. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/solve_tril.py +419 -0
  559. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/utils.py +79 -0
  560. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla/wy_fast.py +131 -0
  561. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/mamba/causal_conv1d.py +1348 -0
  562. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/rope.py +210 -0
  563. vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/triton_utils.py +30 -0
  564. vllm_ascend-0.12.0rc1/vllm_ascend/ops/vocab_parallel_embedding.py +281 -0
  565. vllm_ascend-0.12.0rc1/vllm_ascend/patch/__init__.py +255 -0
  566. vllm_ascend-0.12.0rc1/vllm_ascend/patch/platform/__init__.py +26 -0
  567. vllm_ascend-0.12.0rc1/vllm_ascend/patch/platform/patch_distributed.py +93 -0
  568. vllm_ascend-0.12.0rc1/vllm_ascend/patch/platform/patch_ec_connector.py +32 -0
  569. vllm_ascend-0.12.0rc1/vllm_ascend/patch/platform/patch_mamba_config.py +97 -0
  570. vllm_ascend-0.12.0rc1/vllm_ascend/patch/platform/patch_multiproc_executor.py +180 -0
  571. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/__init__.py +35 -0
  572. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_bert.py +45 -0
  573. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_deepseek.py +60 -0
  574. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_module.py +34 -0
  575. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_qwen2_5_omni.py +72 -0
  576. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_qwen2_5_vl.py +175 -0
  577. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_qwen3_next_mtp.py +52 -0
  578. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_qwen3_vl.py +85 -0
  579. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_rope.py +33 -0
  580. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_triton.py +14 -0
  581. vllm_ascend-0.12.0rc1/vllm_ascend/patch/worker/patch_weight_loader.py +41 -0
  582. vllm_ascend-0.12.0rc1/vllm_ascend/platform.py +415 -0
  583. vllm_ascend-0.12.0rc1/vllm_ascend/profiling_config.py +202 -0
  584. vllm_ascend-0.12.0rc1/vllm_ascend/quantization/compressed_tensors/__init__.py +0 -0
  585. vllm_ascend-0.12.0rc1/vllm_ascend/quantization/compressed_tensors/compressed_tensors.py +279 -0
  586. vllm_ascend-0.12.0rc1/vllm_ascend/quantization/quant_config.py +511 -0
  587. vllm_ascend-0.12.0rc1/vllm_ascend/quantization/utils.py +120 -0
  588. vllm_ascend-0.12.0rc1/vllm_ascend/quantization/w4a16.py +284 -0
  589. vllm_ascend-0.12.0rc1/vllm_ascend/quantization/w4a8_dynamic.py +496 -0
  590. vllm_ascend-0.12.0rc1/vllm_ascend/quantization/w8a8.py +711 -0
  591. vllm_ascend-0.12.0rc1/vllm_ascend/quantization/w8a8_dynamic.py +314 -0
  592. vllm_ascend-0.12.0rc1/vllm_ascend/quantization/w8a8_pdmix.py +70 -0
  593. vllm_ascend-0.12.0rc1/vllm_ascend/sample/__init__.py +0 -0
  594. vllm_ascend-0.12.0rc1/vllm_ascend/sample/logits_processor/builtin.py +52 -0
  595. vllm_ascend-0.12.0rc1/vllm_ascend/sample/rejection_sampler.py +849 -0
  596. vllm_ascend-0.12.0rc1/vllm_ascend/sample/sampler.py +102 -0
  597. vllm_ascend-0.12.0rc1/vllm_ascend/spec_decode/__init__.py +36 -0
  598. vllm_ascend-0.12.0rc1/vllm_ascend/spec_decode/eagle_proposer.py +684 -0
  599. vllm_ascend-0.12.0rc1/vllm_ascend/spec_decode/interface.py +54 -0
  600. vllm_ascend-0.12.0rc1/vllm_ascend/spec_decode/mtp_proposer.py +1210 -0
  601. vllm_ascend-0.12.0rc1/vllm_ascend/spec_decode/ngram_proposer.py +72 -0
  602. vllm_ascend-0.12.0rc1/vllm_ascend/spec_decode/suffix_proposer.py +45 -0
  603. vllm_ascend-0.12.0rc1/vllm_ascend/utils.py +1064 -0
  604. vllm_ascend-0.12.0rc1/vllm_ascend/worker/__init__.py +0 -0
  605. vllm_ascend-0.12.0rc1/vllm_ascend/worker/block_table.py +329 -0
  606. vllm_ascend-0.12.0rc1/vllm_ascend/worker/model_runner_v1.py +3522 -0
  607. vllm_ascend-0.12.0rc1/vllm_ascend/worker/npu_input_batch.py +982 -0
  608. vllm_ascend-0.12.0rc1/vllm_ascend/worker/worker_v1.py +478 -0
  609. vllm_ascend-0.12.0rc1/vllm_ascend/xlite/__init__.py +0 -0
  610. vllm_ascend-0.12.0rc1/vllm_ascend/xlite/xlite.py +275 -0
  611. vllm_ascend-0.12.0rc1/vllm_ascend/xlite/xlite_model_runner.py +36 -0
  612. vllm_ascend-0.12.0rc1/vllm_ascend/xlite/xlite_worker.py +26 -0
  613. vllm_ascend-0.12.0rc1/vllm_ascend.egg-info/PKG-INFO +146 -0
  614. vllm_ascend-0.12.0rc1/vllm_ascend.egg-info/SOURCES.txt +866 -0
  615. vllm_ascend-0.12.0rc1/vllm_ascend.egg-info/entry_points.txt +7 -0
  616. vllm_ascend-0.12.0rc1/vllm_ascend.egg-info/requires.txt +23 -0
  617. vllm_ascend-0.11.0rc3/.github/Dockerfile.buildwheel +0 -45
  618. vllm_ascend-0.11.0rc3/.github/ISSUE_TEMPLATE/900-release-checklist.yml +0 -104
  619. vllm_ascend-0.11.0rc3/.github/format_pr_body.sh +0 -59
  620. vllm_ascend-0.11.0rc3/.github/labeler.yml +0 -38
  621. vllm_ascend-0.11.0rc3/.github/workflows/_accuracy_test.yaml +0 -175
  622. vllm_ascend-0.11.0rc3/.github/workflows/_e2e_test.yaml +0 -199
  623. vllm_ascend-0.11.0rc3/.github/workflows/accuracy_test.yaml +0 -72
  624. vllm_ascend-0.11.0rc3/.github/workflows/format_pr_body.yaml +0 -57
  625. vllm_ascend-0.11.0rc3/.github/workflows/image_310p_openeuler.yml +0 -135
  626. vllm_ascend-0.11.0rc3/.github/workflows/image_310p_ubuntu.yml +0 -131
  627. vllm_ascend-0.11.0rc3/.github/workflows/image_a3_openeuler.yml +0 -135
  628. vllm_ascend-0.11.0rc3/.github/workflows/image_a3_ubuntu.yml +0 -131
  629. vllm_ascend-0.11.0rc3/.github/workflows/image_openeuler.yml +0 -134
  630. vllm_ascend-0.11.0rc3/.github/workflows/image_ubuntu.yml +0 -131
  631. vllm_ascend-0.11.0rc3/.github/workflows/label_merge_conflict.yml +0 -20
  632. vllm_ascend-0.11.0rc3/.github/workflows/labeler.yml +0 -18
  633. vllm_ascend-0.11.0rc3/.github/workflows/matchers/ruff.json +0 -17
  634. vllm_ascend-0.11.0rc3/.github/workflows/multi_node_test.yaml +0 -118
  635. vllm_ascend-0.11.0rc3/.github/workflows/nightly_benchmarks.yaml +0 -206
  636. vllm_ascend-0.11.0rc3/.github/workflows/pre-commit.yml +0 -43
  637. vllm_ascend-0.11.0rc3/.github/workflows/release_code.yml +0 -75
  638. vllm_ascend-0.11.0rc3/.github/workflows/release_whl.yml +0 -125
  639. vllm_ascend-0.11.0rc3/.github/workflows/reminder_comment.yml +0 -26
  640. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_dist.yaml +0 -100
  641. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_doctest.yaml +0 -87
  642. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test.yaml +0 -149
  643. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_310p.yaml +0 -117
  644. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_full.yaml +0 -80
  645. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_full_vllm_main.yaml +0 -45
  646. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_models.yaml +0 -177
  647. vllm_ascend-0.11.0rc3/.github/workflows/vllm_ascend_test_pd.yaml +0 -112
  648. vllm_ascend-0.11.0rc3/.gitignore +0 -204
  649. vllm_ascend-0.11.0rc3/.pre-commit-config.yaml +0 -151
  650. vllm_ascend-0.11.0rc3/CMakeLists.txt +0 -111
  651. vllm_ascend-0.11.0rc3/Dockerfile +0 -69
  652. vllm_ascend-0.11.0rc3/Dockerfile.310p +0 -61
  653. vllm_ascend-0.11.0rc3/Dockerfile.310p.openEuler +0 -59
  654. vllm_ascend-0.11.0rc3/Dockerfile.a3 +0 -68
  655. vllm_ascend-0.11.0rc3/Dockerfile.a3.openEuler +0 -71
  656. vllm_ascend-0.11.0rc3/Dockerfile.openEuler +0 -72
  657. vllm_ascend-0.11.0rc3/PKG-INFO +0 -143
  658. vllm_ascend-0.11.0rc3/README.md +0 -91
  659. vllm_ascend-0.11.0rc3/README.zh.md +0 -90
  660. vllm_ascend-0.11.0rc3/benchmarks/tests/serving-tests.json +0 -78
  661. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_host/mla_preprocess.h +0 -698
  662. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_host/tiling/mla_preprocess_tiling.h +0 -95
  663. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_kernel/mla_preprocess.h +0 -114
  664. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_kernel/mla_preprocess_kernel.cpp +0 -295
  665. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_bf16.hpp +0 -2914
  666. vllm_ascend-0.11.0rc3/csrc/mla_preprocess/op_kernel/mla_preprocess_mix_fp16.hpp +0 -2503
  667. vllm_ascend-0.11.0rc3/csrc/ops.h +0 -161
  668. vllm_ascend-0.11.0rc3/csrc/torch_binding.cpp +0 -514
  669. vllm_ascend-0.11.0rc3/csrc/torch_binding_meta.cpp +0 -136
  670. vllm_ascend-0.11.0rc3/csrc/utils.h +0 -31
  671. vllm_ascend-0.11.0rc3/docs/source/community/contributors.md +0 -171
  672. vllm_ascend-0.11.0rc3/docs/source/community/user_stories/index.md +0 -19
  673. vllm_ascend-0.11.0rc3/docs/source/community/versioning_policy.md +0 -135
  674. vllm_ascend-0.11.0rc3/docs/source/conf.py +0 -142
  675. vllm_ascend-0.11.0rc3/docs/source/developer_guide/contribution/index.md +0 -111
  676. vllm_ascend-0.11.0rc3/docs/source/developer_guide/contribution/testing.md +0 -285
  677. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/index.md +0 -10
  678. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/using_evalscope.md +0 -175
  679. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/using_lm_eval.md +0 -300
  680. vllm_ascend-0.11.0rc3/docs/source/developer_guide/evaluation/using_opencompass.md +0 -123
  681. vllm_ascend-0.11.0rc3/docs/source/developer_guide/feature_guide/ModelRunner_prepare_inputs.md +0 -260
  682. vllm_ascend-0.11.0rc3/docs/source/developer_guide/feature_guide/index.md +0 -11
  683. vllm_ascend-0.11.0rc3/docs/source/developer_guide/feature_guide/patch.md +0 -75
  684. vllm_ascend-0.11.0rc3/docs/source/developer_guide/modeling/adding_a_new_model.md +0 -258
  685. vllm_ascend-0.11.0rc3/docs/source/developer_guide/modeling/adding_a_new_multimodal_model.md +0 -3
  686. vllm_ascend-0.11.0rc3/docs/source/developer_guide/modeling/index.md +0 -10
  687. vllm_ascend-0.11.0rc3/docs/source/developer_guide/performance/index.md +0 -9
  688. vllm_ascend-0.11.0rc3/docs/source/developer_guide/performance/optimization_and_tuning.md +0 -183
  689. vllm_ascend-0.11.0rc3/docs/source/developer_guide/performance/performance_benchmark.md +0 -194
  690. vllm_ascend-0.11.0rc3/docs/source/faqs.md +0 -216
  691. vllm_ascend-0.11.0rc3/docs/source/index.md +0 -71
  692. vllm_ascend-0.11.0rc3/docs/source/installation.md +0 -287
  693. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/contribution/testing.po +0 -237
  694. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance/index.po +0 -26
  695. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance/performance_benchmark.po +0 -88
  696. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/performance/profile_execute_duration.po +0 -81
  697. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu_multimodal.po +0 -99
  698. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/graph_mode.po +0 -121
  699. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/quantization.po +0 -183
  700. vllm_ascend-0.11.0rc3/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/supported_models.po +0 -214
  701. vllm_ascend-0.11.0rc3/docs/source/quick_start.md +0 -185
  702. vllm_ascend-0.11.0rc3/docs/source/tutorials/index.md +0 -25
  703. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi-node_dsv3.2.md +0 -405
  704. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node.md +0 -212
  705. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_kimi.md +0 -158
  706. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_pd_disaggregation_llmdatadist.md +0 -244
  707. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_pd_disaggregation_mooncake.md +0 -616
  708. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_qwen3vl.md +0 -165
  709. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_node_ray.md +0 -182
  710. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu.md +0 -107
  711. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu_moge.md +0 -242
  712. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu_quantization.md +0 -137
  713. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu_qwen3_moe.md +0 -109
  714. vllm_ascend-0.11.0rc3/docs/source/tutorials/multi_npu_qwen3_next.md +0 -156
  715. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_node_300i.md +0 -408
  716. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_node_pd_disaggregation_llmdatadist.md +0 -181
  717. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu.md +0 -202
  718. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu_audio.md +0 -122
  719. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu_multimodal.md +0 -192
  720. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu_qwen3_embedding.md +0 -99
  721. vllm_ascend-0.11.0rc3/docs/source/tutorials/single_npu_qwen3_quantization.md +0 -133
  722. vllm_ascend-0.11.0rc3/docs/source/user_guide/configuration/additional_config.md +0 -116
  723. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/eplb_swift_balancer.md +0 -98
  724. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/graph_mode.md +0 -78
  725. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/index.md +0 -14
  726. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/lora.md +0 -23
  727. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/quantization.md +0 -125
  728. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/sleep_mode.md +0 -114
  729. vllm_ascend-0.11.0rc3/docs/source/user_guide/feature_guide/structured_output.md +0 -163
  730. vllm_ascend-0.11.0rc3/docs/source/user_guide/release_notes.md +0 -689
  731. vllm_ascend-0.11.0rc3/docs/source/user_guide/support_matrix/supported_features.md +0 -45
  732. vllm_ascend-0.11.0rc3/docs/source/user_guide/support_matrix/supported_models.md +0 -83
  733. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/README.md +0 -242
  734. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/gen_ranktable.py +0 -141
  735. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/gen_ranktable.sh +0 -88
  736. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/load_balance_proxy_server_example.py +0 -666
  737. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/mooncake_connector_deployment_guide.md +0 -165
  738. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/mooncake_connector_store_deployment_guide.md +0 -278
  739. vllm_ascend-0.11.0rc3/examples/disaggregated_prefill_v1/run_server.sh +0 -32
  740. vllm_ascend-0.11.0rc3/examples/external_online_dp/README.md +0 -38
  741. vllm_ascend-0.11.0rc3/examples/external_online_dp/run_dp_template.sh +0 -46
  742. vllm_ascend-0.11.0rc3/examples/offline_data_parallel.py +0 -257
  743. vllm_ascend-0.11.0rc3/examples/offline_disaggregated_prefill_npu.py +0 -147
  744. vllm_ascend-0.11.0rc3/examples/offline_dualbatch_overlap_npu.py +0 -52
  745. vllm_ascend-0.11.0rc3/examples/offline_external_launcher.py +0 -330
  746. vllm_ascend-0.11.0rc3/examples/offline_inference_sleep_mode_npu.py +0 -57
  747. vllm_ascend-0.11.0rc3/examples/offline_weight_load.py +0 -326
  748. vllm_ascend-0.11.0rc3/examples/run_dp_server.sh +0 -32
  749. vllm_ascend-0.11.0rc3/mypy.ini +0 -16
  750. vllm_ascend-0.11.0rc3/pyproject.toml +0 -36
  751. vllm_ascend-0.11.0rc3/requirements-dev.txt +0 -20
  752. vllm_ascend-0.11.0rc3/requirements.txt +0 -30
  753. vllm_ascend-0.11.0rc3/setup.py +0 -399
  754. vllm_ascend-0.11.0rc3/tests/e2e/310p/test_offline_inference_parallel_310p.py +0 -62
  755. vllm_ascend-0.11.0rc3/tests/e2e/conftest.py +0 -589
  756. vllm_ascend-0.11.0rc3/tests/e2e/doctests/002-pip-binary-installation-test.sh +0 -74
  757. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/DeepSeek-V2-Lite.yaml +0 -17
  758. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/Qwen2-VL-7B-Instruct.yaml +0 -10
  759. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/Qwen2.5-VL-7B-Instruct.yaml +0 -10
  760. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/Qwen3-30B-A3B.yaml +0 -20
  761. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/Qwen3-8B-Base.yaml +0 -15
  762. vllm_ascend-0.11.0rc3/tests/e2e/models/configs/accuracy.txt +0 -8
  763. vllm_ascend-0.11.0rc3/tests/e2e/models/conftest.py +0 -72
  764. vllm_ascend-0.11.0rc3/tests/e2e/models/test_lm_eval_correctness.py +0 -157
  765. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_data_parallel.py +0 -73
  766. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_expert_parallel.py +0 -42
  767. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_external_launcher.py +0 -243
  768. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_full_graph_mode.py +0 -72
  769. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_fused_moe_allgather_ep.py +0 -86
  770. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_offline_inference_distributed.py +0 -228
  771. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_pipeline_parallel.py +0 -47
  772. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_prefix_caching.py +0 -148
  773. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_qwen3_moe.py +0 -103
  774. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_single_request_aclgraph.py +0 -84
  775. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_torchair_graph_mode.py +0 -227
  776. vllm_ascend-0.11.0rc3/tests/e2e/multicard/test_weight_loader.py +0 -109
  777. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_deepseek_r1_w8a8_eplb.py +0 -106
  778. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_qwen2_5_vl_7b.py +0 -110
  779. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_qwen3_235b_a22b_w8a8_eplb.py +0 -104
  780. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_qwen3_32b.py +0 -99
  781. vllm_ascend-0.11.0rc3/tests/e2e/nightly/models/test_qwen3_32b_int8.py +0 -118
  782. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/config/models/DeepSeek-V3.yaml +0 -126
  783. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/config/models/Qwen3-235B-A3B.yaml +0 -76
  784. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/config/multi_node_config.py +0 -207
  785. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/config/utils.py +0 -95
  786. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/scripts/lws.yaml +0 -132
  787. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/scripts/run.sh +0 -145
  788. vllm_ascend-0.11.0rc3/tests/e2e/nightly/multi_node/test_multi_node.py +0 -30
  789. vllm_ascend-0.11.0rc3/tests/e2e/pd_disaggreate/run_edge_case_test.sh +0 -139
  790. vllm_ascend-0.11.0rc3/tests/e2e/pd_disaggreate/setup_pd.sh +0 -134
  791. vllm_ascend-0.11.0rc3/tests/e2e/pd_disaggreate/test_edge_cases.py +0 -81
  792. vllm_ascend-0.11.0rc3/tests/e2e/pd_disaggreate/test_pd_e2e.py +0 -109
  793. vllm_ascend-0.11.0rc3/tests/e2e/run_disagg_pd.sh +0 -58
  794. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops/test_fused_moe.py +0 -341
  795. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops/test_mla_preprocess.py +0 -108
  796. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/spec_decode_v1/test_v1_mtp_correctness.py +0 -110
  797. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/spec_decode_v1/test_v1_mtp_torchair_correctness.py +0 -106
  798. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/spec_decode_v1/test_v1_spec_decode.py +0 -147
  799. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_aclgraph.py +0 -203
  800. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_aclgraph_mem.py +0 -100
  801. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_ascend_scheduler.py +0 -113
  802. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_bge_model.py +0 -49
  803. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_camem.py +0 -99
  804. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_chunked.py +0 -82
  805. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_embedding.py +0 -49
  806. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_embedding_aclgraph.py +0 -55
  807. vllm_ascend-0.11.0rc3/tests/e2e/singlecard/test_vlm.py +0 -124
  808. vllm_ascend-0.11.0rc3/tests/ut/attention/test_attention_mask.py +0 -95
  809. vllm_ascend-0.11.0rc3/tests/ut/attention/test_attention_v1.py +0 -702
  810. vllm_ascend-0.11.0rc3/tests/ut/attention/test_mla_v1.py +0 -675
  811. vllm_ascend-0.11.0rc3/tests/ut/compilation/test_acl_graph.py +0 -720
  812. vllm_ascend-0.11.0rc3/tests/ut/core/test_schedule_config.py +0 -148
  813. vllm_ascend-0.11.0rc3/tests/ut/core/test_scheduler.py +0 -807
  814. vllm_ascend-0.11.0rc3/tests/ut/distributed/test_parallel_state.py +0 -58
  815. vllm_ascend-0.11.0rc3/tests/ut/eplb/core/test_eplb_utils.py +0 -225
  816. vllm_ascend-0.11.0rc3/tests/ut/kv_connector/test_llmdatadist_connector.py +0 -96
  817. vllm_ascend-0.11.0rc3/tests/ut/kv_connector/test_mooncake_connector.py +0 -1139
  818. vllm_ascend-0.11.0rc3/tests/ut/kv_connector/test_mooncake_layerwise_connector.py +0 -924
  819. vllm_ascend-0.11.0rc3/tests/ut/kv_connector/utils.py +0 -208
  820. vllm_ascend-0.11.0rc3/tests/ut/models/conftest.py +0 -100
  821. vllm_ascend-0.11.0rc3/tests/ut/models/test_qwen2_5_vl.py +0 -492
  822. vllm_ascend-0.11.0rc3/tests/ut/models/test_qwen2_5_vl_without_padding.py +0 -422
  823. vllm_ascend-0.11.0rc3/tests/ut/models/test_qwen2_vl.py +0 -200
  824. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_base.py +0 -32
  825. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_decorator.py +0 -47
  826. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_layers.py +0 -198
  827. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_metadata.py +0 -246
  828. vllm_ascend-0.11.0rc3/tests/ut/multistream/test_ms_split.py +0 -147
  829. vllm_ascend-0.11.0rc3/tests/ut/ops/test_activation.py +0 -72
  830. vllm_ascend-0.11.0rc3/tests/ut/ops/test_comm_utils.py +0 -98
  831. vllm_ascend-0.11.0rc3/tests/ut/ops/test_common_fused_moe.py +0 -56
  832. vllm_ascend-0.11.0rc3/tests/ut/ops/test_expert_load_balancer.py +0 -141
  833. vllm_ascend-0.11.0rc3/tests/ut/ops/test_fused_moe_prepare_and_finalize.py +0 -271
  834. vllm_ascend-0.11.0rc3/tests/ut/ops/test_fused_ops.py +0 -597
  835. vllm_ascend-0.11.0rc3/tests/ut/ops/test_layernorm.py +0 -156
  836. vllm_ascend-0.11.0rc3/tests/ut/ops/test_linear.py +0 -147
  837. vllm_ascend-0.11.0rc3/tests/ut/ops/test_moe_comm_method.py +0 -230
  838. vllm_ascend-0.11.0rc3/tests/ut/ops/test_rotary_embedding.py +0 -469
  839. vllm_ascend-0.11.0rc3/tests/ut/ops/test_token_dispatcher.py +0 -515
  840. vllm_ascend-0.11.0rc3/tests/ut/ops/test_vocab_parallel_embedding.py +0 -240
  841. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_quant_config.py +0 -233
  842. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_w4a8_dynamic.py +0 -303
  843. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_w8a8.py +0 -976
  844. vllm_ascend-0.11.0rc3/tests/ut/quantization/test_w8a8_dynamic.py +0 -69
  845. vllm_ascend-0.11.0rc3/tests/ut/sample/test_rejection_sampler.py +0 -203
  846. vllm_ascend-0.11.0rc3/tests/ut/sample/test_sampler.py +0 -32
  847. vllm_ascend-0.11.0rc3/tests/ut/test_ascend_config.py +0 -362
  848. vllm_ascend-0.11.0rc3/tests/ut/test_platform.py +0 -765
  849. vllm_ascend-0.11.0rc3/tests/ut/test_utils.py +0 -381
  850. vllm_ascend-0.11.0rc3/tests/ut/torchair/models/test_torchair_deepseek_mtp.py +0 -197
  851. vllm_ascend-0.11.0rc3/tests/ut/torchair/models/test_torchair_deepseek_v2.py +0 -357
  852. vllm_ascend-0.11.0rc3/tests/ut/torchair/ops/test_torchair_fused_moe.py +0 -422
  853. vllm_ascend-0.11.0rc3/tests/ut/torchair/ops/test_torchair_rotary_embedding.py +0 -331
  854. vllm_ascend-0.11.0rc3/tests/ut/torchair/quantization/test_torchair_w4a8_dynamic.py +0 -296
  855. vllm_ascend-0.11.0rc3/tests/ut/torchair/quantization/test_torchair_w8a8_dynamic.py +0 -129
  856. vllm_ascend-0.11.0rc3/tests/ut/torchair/test_torchair_attention.py +0 -95
  857. vllm_ascend-0.11.0rc3/tests/ut/torchair/test_torchair_mla.py +0 -850
  858. vllm_ascend-0.11.0rc3/tests/ut/torchair/test_utils.py +0 -164
  859. vllm_ascend-0.11.0rc3/tests/ut/worker/test_input_batch.py +0 -372
  860. vllm_ascend-0.11.0rc3/tests/ut/worker/test_model_runner_v1.py +0 -111
  861. vllm_ascend-0.11.0rc3/tests/ut/worker/test_worker_v1.py +0 -1240
  862. vllm_ascend-0.11.0rc3/tools/aisbench.py +0 -227
  863. vllm_ascend-0.11.0rc3/typos.toml +0 -177
  864. vllm_ascend-0.11.0rc3/vllm_ascend/__init__.py +0 -33
  865. vllm_ascend-0.11.0rc3/vllm_ascend/_version.py +0 -34
  866. vllm_ascend-0.11.0rc3/vllm_ascend/ascend_config.py +0 -310
  867. vllm_ascend-0.11.0rc3/vllm_ascend/ascend_forward_context.py +0 -211
  868. vllm_ascend-0.11.0rc3/vllm_ascend/attention/attention_mask.py +0 -96
  869. vllm_ascend-0.11.0rc3/vllm_ascend/attention/attention_v1.py +0 -727
  870. vllm_ascend-0.11.0rc3/vllm_ascend/attention/mla_v1.py +0 -1325
  871. vllm_ascend-0.11.0rc3/vllm_ascend/attention/sfa_v1.py +0 -988
  872. vllm_ascend-0.11.0rc3/vllm_ascend/attention/utils.py +0 -180
  873. vllm_ascend-0.11.0rc3/vllm_ascend/compilation/acl_graph.py +0 -343
  874. vllm_ascend-0.11.0rc3/vllm_ascend/core/recompute_schedule_config.py +0 -39
  875. vllm_ascend-0.11.0rc3/vllm_ascend/core/recompute_scheduler.py +0 -1392
  876. vllm_ascend-0.11.0rc3/vllm_ascend/core/schedule_config.py +0 -108
  877. vllm_ascend-0.11.0rc3/vllm_ascend/core/scheduler.py +0 -587
  878. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/__init__.py +0 -40
  879. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/cpu_offload_connector.py +0 -471
  880. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/cpu_offload_manager/cpu_kv_cache_manager.py +0 -202
  881. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/cpu_offload_manager/metadata.py +0 -269
  882. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/llmdatadist_c_mgr_connector.py +0 -994
  883. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/config_data.py +0 -449
  884. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/kv_transfer.py +0 -282
  885. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/mooncake_engine.py +0 -621
  886. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/mooncake_store.py +0 -126
  887. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/mooncake_store_connector_v1.py +0 -492
  888. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake/transfer_engine.py +0 -38
  889. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake_connector.py +0 -1263
  890. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake_layerwise_connector.py +0 -1153
  891. vllm_ascend-0.11.0rc3/vllm_ascend/distributed/parallel_state.py +0 -196
  892. vllm_ascend-0.11.0rc3/vllm_ascend/envs.py +0 -183
  893. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/adaptor/vllm_adaptor.py +0 -289
  894. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/eplb_device_transfer_loader.py +0 -138
  895. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/eplb_utils.py +0 -190
  896. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/policy/policy_dynamic_ep_v2.py +0 -771
  897. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/policy/policy_factory.py +0 -33
  898. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/eplb_updator.py +0 -209
  899. vllm_ascend-0.11.0rc3/vllm_ascend/eplb/utils.py +0 -77
  900. vllm_ascend-0.11.0rc3/vllm_ascend/lora/punica_npu.py +0 -356
  901. vllm_ascend-0.11.0rc3/vllm_ascend/models/__init__.py +0 -48
  902. vllm_ascend-0.11.0rc3/vllm_ascend/models/deepseek_v3_2.py +0 -633
  903. vllm_ascend-0.11.0rc3/vllm_ascend/models/layers/mla.py +0 -193
  904. vllm_ascend-0.11.0rc3/vllm_ascend/models/layers/sfa.py +0 -233
  905. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen2_5_omni_thinker.py +0 -54
  906. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen2_5_vl.py +0 -628
  907. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen2_5_vl_without_padding.py +0 -671
  908. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen2_vl.py +0 -369
  909. vllm_ascend-0.11.0rc3/vllm_ascend/models/qwen3_next.py +0 -676
  910. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/base.py +0 -29
  911. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/context.py +0 -67
  912. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/decorator.py +0 -22
  913. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/layers.py +0 -61
  914. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/metadata.py +0 -182
  915. vllm_ascend-0.11.0rc3/vllm_ascend/multistream/ms_split.py +0 -247
  916. vllm_ascend-0.11.0rc3/vllm_ascend/ops/__init__.py +0 -57
  917. vllm_ascend-0.11.0rc3/vllm_ascend/ops/activation.py +0 -44
  918. vllm_ascend-0.11.0rc3/vllm_ascend/ops/attention.py +0 -309
  919. vllm_ascend-0.11.0rc3/vllm_ascend/ops/casual_conv1d.py +0 -539
  920. vllm_ascend-0.11.0rc3/vllm_ascend/ops/common_fused_moe.py +0 -464
  921. vllm_ascend-0.11.0rc3/vllm_ascend/ops/expert_load_balancer.py +0 -117
  922. vllm_ascend-0.11.0rc3/vllm_ascend/ops/fla.py +0 -299
  923. vllm_ascend-0.11.0rc3/vllm_ascend/ops/layernorm.py +0 -213
  924. vllm_ascend-0.11.0rc3/vllm_ascend/ops/linear.py +0 -466
  925. vllm_ascend-0.11.0rc3/vllm_ascend/ops/linear_op.py +0 -531
  926. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/experts_selector.py +0 -277
  927. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/fused_moe_prepare_and_finalize.py +0 -520
  928. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/moe_comm_method.py +0 -273
  929. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/moe_mlp.py +0 -258
  930. vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe/token_dispatcher.py +0 -730
  931. vllm_ascend-0.11.0rc3/vllm_ascend/ops/register_custom_ops.py +0 -315
  932. vllm_ascend-0.11.0rc3/vllm_ascend/ops/rotary_embedding.py +0 -435
  933. vllm_ascend-0.11.0rc3/vllm_ascend/ops/sigmoid_gating.py +0 -384
  934. vllm_ascend-0.11.0rc3/vllm_ascend/ops/vocab_parallel_embedding.py +0 -255
  935. vllm_ascend-0.11.0rc3/vllm_ascend/patch/__init__.py +0 -174
  936. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/__init__.py +0 -30
  937. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_config.py +0 -234
  938. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_core.py +0 -68
  939. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_distributed.py +0 -115
  940. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_mamba_config.py +0 -96
  941. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_message_queue.py +0 -164
  942. vllm_ascend-0.11.0rc3/vllm_ascend/patch/platform/patch_multiproc_executor.py +0 -151
  943. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/__init__.py +0 -37
  944. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_attention_layer.py +0 -92
  945. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_deepseek_mtp.py +0 -94
  946. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_logits.py +0 -26
  947. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_roberta.py +0 -88
  948. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_triton.py +0 -16
  949. vllm_ascend-0.11.0rc3/vllm_ascend/patch/worker/patch_weight_loader.py +0 -41
  950. vllm_ascend-0.11.0rc3/vllm_ascend/platform.py +0 -431
  951. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/quant_config.py +0 -479
  952. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/utils.py +0 -87
  953. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/w4a8_dynamic.py +0 -490
  954. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/w8a8.py +0 -674
  955. vllm_ascend-0.11.0rc3/vllm_ascend/quantization/w8a8_dynamic.py +0 -284
  956. vllm_ascend-0.11.0rc3/vllm_ascend/sample/logits_processor/builtin.py +0 -35
  957. vllm_ascend-0.11.0rc3/vllm_ascend/sample/rejection_sampler.py +0 -504
  958. vllm_ascend-0.11.0rc3/vllm_ascend/sample/sampler.py +0 -74
  959. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/__init__.py +0 -33
  960. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/eagle_proposer.py +0 -663
  961. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/interface.py +0 -54
  962. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/mtp_proposer.py +0 -675
  963. vllm_ascend-0.11.0rc3/vllm_ascend/spec_decode/ngram_proposer.py +0 -72
  964. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/qwen2.py +0 -363
  965. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/qwen3_moe.py +0 -537
  966. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/torchair_deepseek_mtp.py +0 -218
  967. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/torchair_deepseek_v2.py +0 -1301
  968. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/torchair_deepseek_v3.py +0 -28
  969. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models/torchair_pangu_moe.py +0 -1118
  970. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/sequence_parallel.py +0 -120
  971. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/shared_weight_layer.py +0 -245
  972. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_activation.py +0 -37
  973. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_fused_moe.py +0 -1429
  974. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_layernorm.py +0 -78
  975. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_rotary_embedding.py +0 -365
  976. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops/torchair_vocab_parallel_embedding.py +0 -38
  977. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/quantization/torchair_w4a8_dynamic.py +0 -501
  978. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/quantization/torchair_w8a8_dynamic.py +0 -1080
  979. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_attention.py +0 -463
  980. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_mla.py +0 -1310
  981. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_model_runner.py +0 -557
  982. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_sfa.py +0 -1333
  983. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/torchair_worker.py +0 -63
  984. vllm_ascend-0.11.0rc3/vllm_ascend/torchair/utils.py +0 -275
  985. vllm_ascend-0.11.0rc3/vllm_ascend/utils.py +0 -824
  986. vllm_ascend-0.11.0rc3/vllm_ascend/worker/block_table.py +0 -312
  987. vllm_ascend-0.11.0rc3/vllm_ascend/worker/model_runner_v1.py +0 -3711
  988. vllm_ascend-0.11.0rc3/vllm_ascend/worker/npu_input_batch.py +0 -842
  989. vllm_ascend-0.11.0rc3/vllm_ascend/worker/worker_v1.py +0 -442
  990. vllm_ascend-0.11.0rc3/vllm_ascend.egg-info/PKG-INFO +0 -143
  991. vllm_ascend-0.11.0rc3/vllm_ascend.egg-info/SOURCES.txt +0 -627
  992. vllm_ascend-0.11.0rc3/vllm_ascend.egg-info/entry_points.txt +0 -6
  993. vllm_ascend-0.11.0rc3/vllm_ascend.egg-info/requires.txt +0 -20
  994. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.gemini/config.yaml +0 -0
  995. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/100-documentation.yml +0 -0
  996. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/110-user-story.yml +0 -0
  997. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/200-installation.yml +0 -0
  998. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/300-usage.yml +0 -0
  999. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/400-bug-report.yml +0 -0
  1000. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/500-feature-request.yml +0 -0
  1001. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/600-new-model.yml +0 -0
  1002. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/700-performance-discussion.yml +0 -0
  1003. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/750-RFC.yml +0 -0
  1004. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/800-others.yml +0 -0
  1005. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  1006. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  1007. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/actionlint.yaml +0 -0
  1008. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/dependabot.yml +0 -0
  1009. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/workflows/matchers/actionlint.json +0 -0
  1010. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.github/workflows/matchers/mypy.json +0 -0
  1011. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/.readthedocs.yaml +0 -0
  1012. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/CODE_OF_CONDUCT.md +0 -0
  1013. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/CONTRIBUTING.md +0 -0
  1014. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/DCO +0 -0
  1015. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/LICENSE +0 -0
  1016. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/benchmarks/README.md +0 -0
  1017. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/benchmarks/ops/ben_vocabparallelembedding.py +0 -0
  1018. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/benchmarks/requirements-bench.txt +0 -0
  1019. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/benchmarks/scripts/convert_json_to_markdown.py +0 -0
  1020. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/benchmarks/scripts/perf_result_template.md +0 -0
  1021. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/benchmarks/scripts/run-performance-benchmarks.sh +0 -0
  1022. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/benchmarks/tests/latency-tests.json +0 -0
  1023. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/benchmarks/tests/throughput-tests.json +0 -0
  1024. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/cmake/utils.cmake +0 -0
  1025. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/codecov.yml +0 -0
  1026. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/collect_env.py +0 -0
  1027. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/camem_allocator.cpp +0 -0
  1028. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/kernels/bgmv_expand.cpp +0 -0
  1029. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/kernels/bgmv_shrink.cpp +0 -0
  1030. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/kernels/get_masked_input_and_mask_kernel.cpp +0 -0
  1031. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/kernels/pos_encoding_kernels.cpp +0 -0
  1032. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/kernels/sgmv_expand.cpp +0 -0
  1033. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/kernels/sgmv_shrink.cpp +0 -0
  1034. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/kernels/types.h +0 -0
  1035. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/kernels/utils.h +0 -0
  1036. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/common.h +0 -0
  1037. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/common_func.h +0 -0
  1038. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/hardware.h +0 -0
  1039. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterator.h +0 -0
  1040. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterators/gm_to_l1_iterator.inc +0 -0
  1041. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterators/gm_to_ub_iterator.inc +0 -0
  1042. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterators/l0c_to_gm_iterator.inc +0 -0
  1043. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterators/l0c_to_l1_iterator.inc +0 -0
  1044. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterators/l0c_to_ub_iterator.inc +0 -0
  1045. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterators/l1_to_bt_iterator.inc +0 -0
  1046. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterators/l1_to_fb_iterator.inc +0 -0
  1047. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterators/l1_to_l0_iterator.inc +0 -0
  1048. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/iterators/l1_to_ub_iterator.inc +0 -0
  1049. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/kernel_utils.h +0 -0
  1050. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/layout.h +0 -0
  1051. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/mem.h +0 -0
  1052. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/mma.h +0 -0
  1053. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/set_fpc.h +0 -0
  1054. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/simd.h +0 -0
  1055. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/csrc/mla_preprocess/op_kernel/kernel/utils.h +0 -0
  1056. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/Makefile +0 -0
  1057. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/README.md +0 -0
  1058. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/requirements-docs.txt +0 -0
  1059. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/requirements-test.txt +0 -0
  1060. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/_templates/sections/header.html +0 -0
  1061. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/assets/multi_node_dp_deepseek.png +0 -0
  1062. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/assets/multi_node_dp_kimi.png +0 -0
  1063. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/community/governance.md +0 -0
  1064. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/community/user_stories/llamafactory.md +0 -0
  1065. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/developer_guide/evaluation/accuracy_report/DeepSeek-V2-Lite.md +0 -0
  1066. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/developer_guide/evaluation/accuracy_report/Qwen2.5-VL-7B-Instruct.md +0 -0
  1067. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/developer_guide/evaluation/accuracy_report/Qwen3-30B-A3B.md +0 -0
  1068. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/developer_guide/evaluation/accuracy_report/Qwen3-8B-Base.md +0 -0
  1069. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/developer_guide/evaluation/accuracy_report/index.md +0 -0
  1070. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/developer_guide/feature_guide/ACL_Graph.md +0 -0
  1071. {vllm_ascend-0.11.0rc3/docs/source/developer_guide/performance → vllm_ascend-0.12.0rc1/docs/source/developer_guide/performance_and_debug}/profile_execute_duration.md +0 -0
  1072. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/community/contributors.po +0 -0
  1073. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/community/governance.po +0 -0
  1074. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/community/user_stories/index.po +0 -0
  1075. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/community/user_stories/llamafactory.po +0 -0
  1076. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/community/versioning_policy.po +0 -0
  1077. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/contribution/index.po +0 -0
  1078. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/accuracy_report/index.po +0 -0
  1079. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/index.po +0 -0
  1080. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_evalscope.po +0 -0
  1081. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_lm_eval.po +0 -0
  1082. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/evaluation/using_opencompass.po +0 -0
  1083. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/index.po +0 -0
  1084. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/feature_guide/patch.po +0 -0
  1085. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/modeling/adding_a_new_model.po +0 -0
  1086. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/modeling/adding_a_new_multimodal_model.po +0 -0
  1087. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/developer_guide/modeling/index.po +0 -0
  1088. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/faqs.po +0 -0
  1089. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/index.po +0 -0
  1090. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/installation.po +0 -0
  1091. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/quick_start.po +0 -0
  1092. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/index.po +0 -0
  1093. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_node.po +0 -0
  1094. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_npu.po +0 -0
  1095. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_npu_moge.po +0 -0
  1096. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_npu_quantization.po +0 -0
  1097. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/multi_npu_qwen3_moe.po +0 -0
  1098. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_node_300i.po +0 -0
  1099. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu.po +0 -0
  1100. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu_audio.po +0 -0
  1101. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/tutorials/single_npu_qwen3_embedding.po +0 -0
  1102. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/configuration/additional_config.po +0 -0
  1103. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/configuration/env_vars.po +0 -0
  1104. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/configuration/index.po +0 -0
  1105. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/index.po +0 -0
  1106. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/lora.po +0 -0
  1107. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/sleep_mode.po +0 -0
  1108. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/feature_guide/structured_output.po +0 -0
  1109. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/release_notes.po +0 -0
  1110. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/index.po +0 -0
  1111. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/locale/zh_CN/LC_MESSAGES/user_guide/support_matrix/supported_features.po +0 -0
  1112. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/logos/vllm-ascend-logo-text-dark.png +0 -0
  1113. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/logos/vllm-ascend-logo-text-light.png +0 -0
  1114. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/user_guide/configuration/env_vars.md +0 -0
  1115. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/user_guide/configuration/index.md +0 -0
  1116. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/user_guide/feature_guide/images/eplb_img.png +0 -0
  1117. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/user_guide/feature_guide/images/structured_output_1.png +0 -0
  1118. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/docs/source/user_guide/support_matrix/index.md +0 -0
  1119. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/examples/disaggregated_prefill_v1/load_balance_proxy_layerwise_server_example.py +0 -0
  1120. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/examples/eplb/eplb_deepseek.py +0 -0
  1121. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/examples/eplb/eplb_strategy.py +0 -0
  1122. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/examples/external_online_dp/launch_online_dp.py +0 -0
  1123. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/examples/offline_embed.py +0 -0
  1124. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/examples/offline_inference_audio_language.py +0 -0
  1125. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/examples/offline_inference_npu.py +0 -0
  1126. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/examples/offline_inference_npu_tp2.py +0 -0
  1127. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/examples/prompt_embedding_inference.py +0 -0
  1128. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/format.sh +0 -0
  1129. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/packages.txt +0 -0
  1130. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/requirements-lint.txt +0 -0
  1131. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/setup.cfg +0 -0
  1132. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/__init__.py +0 -0
  1133. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/310p/test_offline_inference_310p.py +0 -0
  1134. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/__init__.py +0 -0
  1135. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/common.sh +0 -0
  1136. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/doctests/001-quickstart-test.sh +0 -0
  1137. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/model_utils.py +0 -0
  1138. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/models/configs/Qwen2-Audio-7B-Instruct.yaml +0 -0
  1139. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/models/configs/Qwen3-8B.yaml +0 -0
  1140. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/models/configs/Qwen3-VL-30B-A3B-Instruct.yaml +0 -0
  1141. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/models/report_template.md +0 -0
  1142. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/multicard/test_ilama_lora_tp2.py +0 -0
  1143. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/nightly/multi_node/__init__.py +0 -0
  1144. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/nightly/multi_node/config/__init__.py +0 -0
  1145. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard → vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops}/__init__.py +0 -0
  1146. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard → vllm_ascend-0.12.0rc1/tests/e2e/nightly}/ops/test_bgmv_expand.py +0 -0
  1147. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard → vllm_ascend-0.12.0rc1/tests/e2e/nightly}/ops/test_bgmv_shrink.py +0 -0
  1148. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard → vllm_ascend-0.12.0rc1/tests/e2e/nightly}/ops/test_gating_top_k_softmax.py +0 -0
  1149. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard → vllm_ascend-0.12.0rc1/tests/e2e/nightly}/ops/test_rotary_embedding.py +0 -0
  1150. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard → vllm_ascend-0.12.0rc1/tests/e2e/nightly}/ops/test_vocabparallelembedding.py +0 -0
  1151. {vllm_ascend-0.11.0rc3/tests/e2e/singlecard/ops → vllm_ascend-0.12.0rc1/tests/e2e/nightly/ops/triton}/__init__.py +0 -0
  1152. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/prompts/example.txt +0 -0
  1153. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/run_doctests.sh +0 -0
  1154. {vllm_ascend-0.11.0rc3/tests/ut → vllm_ascend-0.12.0rc1/tests/e2e/singlecard}/__init__.py +0 -0
  1155. {vllm_ascend-0.11.0rc3/tests/ut/models → vllm_ascend-0.12.0rc1/tests/e2e/singlecard/pooling}/__init__.py +0 -0
  1156. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/singlecard/test_guided_decoding.py +0 -0
  1157. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/singlecard/test_ilama_lora.py +0 -0
  1158. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/singlecard/test_multistream_overlap_shared_expert.py +0 -0
  1159. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/singlecard/test_profile_execute_duration.py +0 -0
  1160. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/singlecard/test_quantization.py +0 -0
  1161. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/singlecard/test_sampler.py +0 -0
  1162. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/utils.py +0 -0
  1163. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/vllm_interface/singlecard/test_sampler.py +0 -0
  1164. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/e2e/vllm_interface/vllm_test.cfg +0 -0
  1165. {vllm_ascend-0.11.0rc3/tests/ut/torchair → vllm_ascend-0.12.0rc1/tests/ut}/__init__.py +0 -0
  1166. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/base.py +0 -0
  1167. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/conftest.py +0 -0
  1168. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/device_allocator/test_camem.py +0 -0
  1169. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/distributed/device_communicators/test_pyhccl.py +0 -0
  1170. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/distributed/device_communicators/test_pyhccl_wrapper.py +0 -0
  1171. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/distributed/test_communicator.py +0 -0
  1172. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/distributed/test_determin_expert_map_all.py +0 -0
  1173. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/eplb/adaptor/test_abstract_adaptor.py +0 -0
  1174. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/eplb/core/policy/test_policy_abstract.py +0 -0
  1175. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/eplb/core/policy/test_policy_dynamic_ep.py +0 -0
  1176. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/eplb/core/policy/test_policy_dynamic_ep_v2.py +0 -0
  1177. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/eplb/core/policy/test_policy_factor.py +0 -0
  1178. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/eplb/core/test_eplb_device_transfer_loader.py +0 -0
  1179. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/fake_weight/config.json +0 -0
  1180. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/kv_connector/test_remote_decode_lifecycle.py +0 -0
  1181. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/kv_connector/test_remote_prefill_lifecycle.py +0 -0
  1182. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/ops/expert_map.json +0 -0
  1183. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/patch/worker/patch_common/test_patch_distributed.py +0 -0
  1184. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/patch/worker/patch_common/test_patch_minicpm.py +0 -0
  1185. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/quantization/test_utils.py +0 -0
  1186. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/quantization/test_w4a4_flatquant_dynamic.py +0 -0
  1187. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/sample/logits_processor/test_builtin.py +0 -0
  1188. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tests/ut/test_envs.py +0 -0
  1189. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/actionlint.sh +0 -0
  1190. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/check_python_src_init.py +0 -0
  1191. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/check_repo.sh +0 -0
  1192. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/enforce_regex_import.py +0 -0
  1193. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/mooncake_installer.sh +0 -0
  1194. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/mypy.sh +0 -0
  1195. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/png-lint.sh +0 -0
  1196. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/send_mm_request.py +0 -0
  1197. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/shellcheck.sh +0 -0
  1198. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/tools/sphinx-lint.sh +0 -0
  1199. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/attention/__init__.py +0 -0
  1200. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/compilation/__init__.py +0 -0
  1201. {vllm_ascend-0.11.0rc3/vllm_ascend/core → vllm_ascend-0.12.0rc1/vllm_ascend/compilation/npugraph_ex_passes}/__init__.py +0 -0
  1202. {vllm_ascend-0.11.0rc3/vllm_ascend/device_allocator → vllm_ascend-0.12.0rc1/vllm_ascend/compilation/passes}/__init__.py +0 -0
  1203. {vllm_ascend-0.11.0rc3/vllm_ascend/distributed/cpu_offload_manager → vllm_ascend-0.12.0rc1/vllm_ascend/core}/__init__.py +0 -0
  1204. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/cpu_binding.py +0 -0
  1205. {vllm_ascend-0.11.0rc3/vllm_ascend/distributed/device_communicators → vllm_ascend-0.12.0rc1/vllm_ascend/device_allocator}/__init__.py +0 -0
  1206. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/device_allocator/camem.py +0 -0
  1207. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/distributed/communicator.py +0 -0
  1208. {vllm_ascend-0.11.0rc3/vllm_ascend/distributed/mooncake → vllm_ascend-0.12.0rc1/vllm_ascend/distributed/cpu_offload_manager}/__init__.py +0 -0
  1209. {vllm_ascend-0.11.0rc3/vllm_ascend/eplb → vllm_ascend-0.12.0rc1/vllm_ascend/distributed/device_communicators}/__init__.py +0 -0
  1210. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/distributed/device_communicators/pyhccl.py +0 -0
  1211. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/distributed/device_communicators/pyhccl_wrapper.py +0 -0
  1212. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/distributed/utils.py +0 -0
  1213. {vllm_ascend-0.11.0rc3/vllm_ascend/eplb/adaptor → vllm_ascend-0.12.0rc1/vllm_ascend/eplb}/__init__.py +0 -0
  1214. {vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core → vllm_ascend-0.12.0rc1/vllm_ascend/eplb/adaptor}/__init__.py +0 -0
  1215. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/eplb/adaptor/abstract_adaptor.py +0 -0
  1216. {vllm_ascend-0.11.0rc3/vllm_ascend/eplb/core/policy → vllm_ascend-0.12.0rc1/vllm_ascend/eplb/core}/__init__.py +0 -0
  1217. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/eplb/core/eplb_worker.py +0 -0
  1218. {vllm_ascend-0.11.0rc3/vllm_ascend/lora → vllm_ascend-0.12.0rc1/vllm_ascend/eplb/core/policy}/__init__.py +0 -0
  1219. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/eplb/core/policy/policy_abstract.py +0 -0
  1220. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/eplb/core/policy/policy_dynamic_ep.py +0 -0
  1221. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/eplb/core/policy/policy_flashlb.py +0 -0
  1222. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/eplb/core/policy/policy_random.py +0 -0
  1223. {vllm_ascend-0.11.0rc3/vllm_ascend/models/layers → vllm_ascend-0.12.0rc1/vllm_ascend/kv_offload}/__init__.py +0 -0
  1224. {vllm_ascend-0.11.0rc3/vllm_ascend/multistream → vllm_ascend-0.12.0rc1/vllm_ascend/lora}/__init__.py +0 -0
  1225. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/lora/lora_ops.py +0 -0
  1226. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/lora/utils.py +0 -0
  1227. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/meta_registration.py +0 -0
  1228. {vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe → vllm_ascend-0.12.0rc1/vllm_ascend/model_loader}/__init__.py +0 -0
  1229. {vllm_ascend-0.11.0rc3/vllm_ascend/quantization → vllm_ascend-0.12.0rc1/vllm_ascend/model_loader/netloader/executor}/__init__.py +0 -0
  1230. {vllm_ascend-0.11.0rc3/vllm_ascend/sample → vllm_ascend-0.12.0rc1/vllm_ascend/model_loader/netloader/interaction}/__init__.py +0 -0
  1231. {vllm_ascend-0.11.0rc3/vllm_ascend/torchair → vllm_ascend-0.12.0rc1/vllm_ascend/ops/fused_moe}/__init__.py +0 -0
  1232. {vllm_ascend-0.11.0rc3/vllm_ascend/ops/moe → vllm_ascend-0.12.0rc1/vllm_ascend/ops/fused_moe}/comm_utils.py +0 -0
  1233. {vllm_ascend-0.11.0rc3/vllm_ascend/torchair/models → vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton}/__init__.py +0 -0
  1234. {vllm_ascend-0.11.0rc3/vllm_ascend/torchair/ops → vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/fla}/__init__.py +0 -0
  1235. {vllm_ascend-0.11.0rc3/vllm_ascend/torchair/quantization → vllm_ascend-0.12.0rc1/vllm_ascend/ops/triton/mamba}/__init__.py +0 -0
  1236. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/ops/weight_prefetch.py +0 -0
  1237. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/patch/platform/patch_sched_yield.py +0 -0
  1238. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/patch/worker/patch_distributed.py +0 -0
  1239. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/patch/worker/patch_minicpm.py +0 -0
  1240. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/patch/worker/patch_multimodal_merge.py +0 -0
  1241. {vllm_ascend-0.11.0rc3/vllm_ascend/worker → vllm_ascend-0.12.0rc1/vllm_ascend/quantization}/__init__.py +0 -0
  1242. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/quantization/w4a4_flatquant_dynamic.py +0 -0
  1243. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend/sample/logits_processor/__init__.py +0 -0
  1244. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/vllm_ascend.egg-info/dependency_links.txt +0 -0
  1245. {vllm_ascend-0.11.0rc3 → vllm_ascend-0.12.0rc1}/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.3.rc2-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
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:main
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:main-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,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,267 @@
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.3.rc2-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.12.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.3.rc2-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.0.1
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
+ echo "Looking for logs containing: $FAIL_TAG"
256
+ kubectl logs -f "$LEADER_POD" -n "$NAMESPACE" | while read -r line; do
257
+ echo "$line"
258
+ if echo "$line" | grep -q "$FAIL_TAG"; then
259
+ exit 1 # workflow step failed
260
+ fi
261
+ done
262
+
263
+ - name: Post process
264
+ if: always()
265
+ run: |
266
+ kubectl get pods -n $NAMESPACE --ignore-not-found=true
267
+ kubectl delete -f ./lws.yaml --ignore-not-found=true || true
@@ -0,0 +1,130 @@
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
+ name: 'e2e nightly test'
19
+
20
+ on:
21
+ workflow_call:
22
+ inputs:
23
+ vllm:
24
+ required: true
25
+ type: string
26
+ runner:
27
+ required: true
28
+ type: string
29
+ image:
30
+ required: false
31
+ type: string
32
+ default: "swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/cann:8.3.rc2-910b-ubuntu22.04-py3.11"
33
+ tests:
34
+ required: true
35
+ type: string
36
+ name:
37
+ required: false
38
+ type: string
39
+
40
+ # Bash shells do not use ~/.profile or ~/.bashrc so these shells need to be explicitly
41
+ # declared as "shell: bash -el {0}" on steps that need to be properly activated.
42
+ # It's used to activate ascend-toolkit environment variables.
43
+ defaults:
44
+ run:
45
+ shell: bash -el {0}
46
+
47
+ # only cancel in-progress runs of the same workflow
48
+ # and ignore the lint / 1 card / 4 cards test type
49
+ concurrency:
50
+ group: ascend-nightly-${{ github.workflow_ref }}-${{ github.ref }}-${{ inputs.tests }}
51
+ cancel-in-progress: true
52
+
53
+ jobs:
54
+ e2e-nightly:
55
+ name: ${{ inputs.tests }}
56
+ runs-on: ${{ inputs.runner }}
57
+ container:
58
+ image: ${{ inputs.image }}
59
+ steps:
60
+ - name: Check npu and CANN info
61
+ run: |
62
+ npu-smi info
63
+ cat /usr/local/Ascend/ascend-toolkit/latest/"$(uname -i)"-linux/ascend_toolkit_install.info
64
+
65
+ - name: Show vLLM and vLLM-Ascend version
66
+ working-directory: /vllm-workspace
67
+ run: |
68
+ echo "Installed vLLM-related Python packages:"
69
+ pip list | grep vllm || echo "No vllm packages found."
70
+
71
+ echo ""
72
+ echo "============================"
73
+ echo "vLLM Git information"
74
+ echo "============================"
75
+ cd vllm
76
+ if [ -d .git ]; then
77
+ echo "Branch: $(git rev-parse --abbrev-ref HEAD)"
78
+ echo "Commit hash: $(git rev-parse HEAD)"
79
+ echo "Author: $(git log -1 --pretty=format:'%an <%ae>')"
80
+ echo "Date: $(git log -1 --pretty=format:'%ad' --date=iso)"
81
+ echo "Message: $(git log -1 --pretty=format:'%s')"
82
+ echo "Tags: $(git tag --points-at HEAD || echo 'None')"
83
+ echo "Remote: $(git remote -v | head -n1)"
84
+ echo ""
85
+ else
86
+ echo "No .git directory found in vllm"
87
+ fi
88
+ cd ..
89
+
90
+ echo ""
91
+ echo "============================"
92
+ echo "vLLM-Ascend Git information"
93
+ echo "============================"
94
+ cd vllm-ascend
95
+ if [ -d .git ]; then
96
+ echo "Branch: $(git rev-parse --abbrev-ref HEAD)"
97
+ echo "Commit hash: $(git rev-parse HEAD)"
98
+ echo "Author: $(git log -1 --pretty=format:'%an <%ae>')"
99
+ echo "Date: $(git log -1 --pretty=format:'%ad' --date=iso)"
100
+ echo "Message: $(git log -1 --pretty=format:'%s')"
101
+ echo "Tags: $(git tag --points-at HEAD || echo 'None')"
102
+ echo "Remote: $(git remote -v | head -n1)"
103
+ echo ""
104
+ else
105
+ echo "No .git directory found in vllm-ascend"
106
+ fi
107
+ cd ..
108
+
109
+ - name: Install custom-ops (for DeepSeek-V3.2-Exp)
110
+ if: ${{ inputs.name == 'deepseek3_2-exp-w8a8' }}
111
+ shell: bash -l {0}
112
+ run: |
113
+ wget https://vllm-ascend.obs.cn-north-4.myhuaweicloud.com/vllm-ascend/a3/CANN-custom_ops-sfa-linux.aarch64.run
114
+ chmod +x ./CANN-custom_ops-sfa-linux.aarch64.run
115
+ ./CANN-custom_ops-sfa-linux.aarch64.run --quiet
116
+ export ASCEND_CUSTOM_OPP_PATH=/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize:${ASCEND_CUSTOM_OPP_PATH}
117
+ export LD_LIBRARY_PATH=/usr/local/Ascend/ascend-toolkit/latest/opp/vendors/customize/op_api/lib/:${LD_LIBRARY_PATH}
118
+ wget https://vllm-ascend.obs.cn-north-4.myhuaweicloud.com/vllm-ascend/a3/custom_ops-1.0-cp311-cp311-linux_aarch64.whl
119
+ pip install custom_ops-1.0-cp311-cp311-linux_aarch64.whl
120
+ . /usr/local/Ascend/ascend-toolkit/set_env.sh
121
+
122
+ - name: Run vllm-project/vllm-ascend test
123
+ env:
124
+ VLLM_WORKER_MULTIPROC_METHOD: spawn
125
+ VLLM_USE_MODELSCOPE: True
126
+ VLLM_CI_RUNNER: ${{ inputs.runner }}
127
+ BENCHMARK_HOME: /vllm-workspace/vllm-ascend/benchmark
128
+ working-directory: /vllm-workspace/vllm-ascend
129
+ run: |
130
+ pytest -sv ${{ inputs.tests }}