sglang 0.5.3rc2__tar.gz → 0.5.4.post1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1432) hide show
  1. sglang-0.5.4.post1/PKG-INFO +391 -0
  2. sglang-0.5.4.post1/README.md +83 -0
  3. sglang-0.5.4.post1/pyproject.toml +155 -0
  4. sglang-0.5.4.post1/sglang/bench_one_batch.py +682 -0
  5. sglang-0.5.4.post1/sglang/bench_one_batch_server.py +745 -0
  6. sglang-0.5.4.post1/sglang/bench_serving.py +2631 -0
  7. sglang-0.5.4.post1/sglang/check_env.py +305 -0
  8. sglang-0.5.4.post1/sglang/compile_deep_gemm.py +188 -0
  9. sglang-0.5.4.post1/sglang/global_config.py +29 -0
  10. sglang-0.5.4.post1/sglang/lang/api.py +292 -0
  11. sglang-0.5.4.post1/sglang/lang/interpreter.py +1061 -0
  12. sglang-0.5.4.post1/sglang/lang/ir.py +648 -0
  13. sglang-0.5.4.post1/sglang/launch_server.py +25 -0
  14. sglang-0.5.4.post1/sglang/profiler.py +183 -0
  15. sglang-0.5.4.post1/sglang/srt/_custom_ops.py +177 -0
  16. sglang-0.5.4.post1/sglang/srt/batch_invariant_ops/batch_invariant_ops.py +644 -0
  17. sglang-0.5.4.post1/sglang/srt/checkpoint_engine/checkpoint_engine_worker.py +142 -0
  18. sglang-0.5.4.post1/sglang/srt/compilation/backend.py +437 -0
  19. sglang-0.5.4.post1/sglang/srt/compilation/compilation_config.py +20 -0
  20. sglang-0.5.4.post1/sglang/srt/compilation/compilation_counter.py +47 -0
  21. sglang-0.5.4.post1/sglang/srt/compilation/compile.py +210 -0
  22. sglang-0.5.4.post1/sglang/srt/compilation/compiler_interface.py +503 -0
  23. sglang-0.5.4.post1/sglang/srt/compilation/cuda_piecewise_backend.py +228 -0
  24. sglang-0.5.4.post1/sglang/srt/compilation/fix_functionalization.py +134 -0
  25. sglang-0.5.4.post1/sglang/srt/compilation/fx_utils.py +83 -0
  26. sglang-0.5.4.post1/sglang/srt/compilation/inductor_pass.py +140 -0
  27. sglang-0.5.4.post1/sglang/srt/compilation/pass_manager.py +66 -0
  28. sglang-0.5.4.post1/sglang/srt/compilation/piecewise_context_manager.py +40 -0
  29. sglang-0.5.4.post1/sglang/srt/compilation/weak_ref_tensor_jit.py +16 -0
  30. sglang-0.5.4.post1/sglang/srt/configs/__init__.py +39 -0
  31. sglang-0.5.4.post1/sglang/srt/configs/deepseek_ocr.py +262 -0
  32. sglang-0.5.4.post1/sglang/srt/configs/deepseekvl2.py +786 -0
  33. sglang-0.5.4.post1/sglang/srt/configs/dots_vlm.py +134 -0
  34. sglang-0.5.4.post1/sglang/srt/configs/falcon_h1.py +309 -0
  35. sglang-0.5.4.post1/sglang/srt/configs/load_config.py +121 -0
  36. sglang-0.5.4.post1/sglang/srt/configs/mamba_utils.py +117 -0
  37. sglang-0.5.4.post1/sglang/srt/configs/model_config.py +1004 -0
  38. sglang-0.5.4.post1/sglang/srt/configs/modelopt_config.py +30 -0
  39. sglang-0.5.4.post1/sglang/srt/configs/nemotron_h.py +286 -0
  40. sglang-0.5.4.post1/sglang/srt/configs/olmo3.py +105 -0
  41. sglang-0.5.4.post1/sglang/srt/configs/points_v15_chat.py +29 -0
  42. sglang-0.5.4.post1/sglang/srt/configs/qwen3_next.py +290 -0
  43. sglang-0.5.4.post1/sglang/srt/configs/qwen3_omni.py +613 -0
  44. sglang-0.5.4.post1/sglang/srt/configs/qwen3_vl.py +576 -0
  45. sglang-0.5.4.post1/sglang/srt/connector/remote_instance.py +82 -0
  46. sglang-0.5.4.post1/sglang/srt/constrained/base_grammar_backend.py +254 -0
  47. sglang-0.5.4.post1/sglang/srt/constrained/llguidance_backend.py +178 -0
  48. sglang-0.5.4.post1/sglang/srt/constrained/outlines_backend.py +190 -0
  49. sglang-0.5.4.post1/sglang/srt/constrained/reasoner_grammar_backend.py +93 -0
  50. sglang-0.5.4.post1/sglang/srt/constrained/utils.py +12 -0
  51. sglang-0.5.4.post1/sglang/srt/constrained/xgrammar_backend.py +269 -0
  52. sglang-0.5.4.post1/sglang/srt/disaggregation/ascend/transfer_engine.py +96 -0
  53. sglang-0.5.4.post1/sglang/srt/disaggregation/base/conn.py +147 -0
  54. sglang-0.5.4.post1/sglang/srt/disaggregation/common/conn.py +608 -0
  55. sglang-0.5.4.post1/sglang/srt/disaggregation/decode.py +1036 -0
  56. sglang-0.5.4.post1/sglang/srt/disaggregation/decode_kvcache_offload_manager.py +185 -0
  57. sglang-0.5.4.post1/sglang/srt/disaggregation/fake/conn.py +93 -0
  58. sglang-0.5.4.post1/sglang/srt/disaggregation/mooncake/conn.py +1352 -0
  59. sglang-0.5.4.post1/sglang/srt/disaggregation/nixl/conn.py +850 -0
  60. sglang-0.5.4.post1/sglang/srt/disaggregation/prefill.py +710 -0
  61. sglang-0.5.4.post1/sglang/srt/distributed/device_communicators/all_reduce_utils.py +16 -0
  62. sglang-0.5.4.post1/sglang/srt/distributed/device_communicators/custom_all_reduce.py +421 -0
  63. sglang-0.5.4.post1/sglang/srt/distributed/device_communicators/pymscclpp.py +315 -0
  64. sglang-0.5.4.post1/sglang/srt/distributed/device_communicators/pynccl.py +353 -0
  65. sglang-0.5.4.post1/sglang/srt/distributed/device_communicators/pynccl_allocator.py +133 -0
  66. sglang-0.5.4.post1/sglang/srt/distributed/device_communicators/symm_mem.py +164 -0
  67. sglang-0.5.4.post1/sglang/srt/distributed/naive_distributed.py +113 -0
  68. sglang-0.5.4.post1/sglang/srt/distributed/parallel_state.py +1875 -0
  69. sglang-0.5.4.post1/sglang/srt/elastic_ep/elastic_ep.py +74 -0
  70. sglang-0.5.4.post1/sglang/srt/entrypoints/context.py +247 -0
  71. sglang-0.5.4.post1/sglang/srt/entrypoints/engine.py +903 -0
  72. sglang-0.5.4.post1/sglang/srt/entrypoints/grpc_server.py +1006 -0
  73. sglang-0.5.4.post1/sglang/srt/entrypoints/harmony_utils.py +372 -0
  74. sglang-0.5.4.post1/sglang/srt/entrypoints/http_server.py +1581 -0
  75. sglang-0.5.4.post1/sglang/srt/entrypoints/http_server_engine.py +136 -0
  76. sglang-0.5.4.post1/sglang/srt/entrypoints/openai/protocol.py +1225 -0
  77. sglang-0.5.4.post1/sglang/srt/entrypoints/openai/serving_base.py +261 -0
  78. sglang-0.5.4.post1/sglang/srt/entrypoints/openai/serving_chat.py +1172 -0
  79. sglang-0.5.4.post1/sglang/srt/entrypoints/openai/serving_classify.py +204 -0
  80. sglang-0.5.4.post1/sglang/srt/entrypoints/openai/serving_completions.py +476 -0
  81. sglang-0.5.4.post1/sglang/srt/entrypoints/openai/serving_responses.py +1321 -0
  82. sglang-0.5.4.post1/sglang/srt/entrypoints/openai/serving_tokenize.py +144 -0
  83. sglang-0.5.4.post1/sglang/srt/environ.py +337 -0
  84. sglang-0.5.4.post1/sglang/srt/eplb/eplb_algorithms/__init__.py +80 -0
  85. sglang-0.5.4.post1/sglang/srt/eplb/eplb_algorithms/deepseek.py +221 -0
  86. sglang-0.5.4.post1/sglang/srt/eplb/eplb_algorithms/elasticity_aware.py +87 -0
  87. sglang-0.5.4.post1/sglang/srt/eplb/expert_distribution.py +995 -0
  88. sglang-0.5.4.post1/sglang/srt/eplb/expert_location_dispatch.py +109 -0
  89. sglang-0.5.4.post1/sglang/srt/eplb/expert_location_updater.py +575 -0
  90. sglang-0.5.4.post1/sglang/srt/function_call/base_format_detector.py +363 -0
  91. sglang-0.5.4.post1/sglang/srt/function_call/function_call_parser.py +227 -0
  92. sglang-0.5.4.post1/sglang/srt/function_call/glm4_moe_detector.py +160 -0
  93. sglang-0.5.4.post1/sglang/srt/function_call/gpt_oss_detector.py +242 -0
  94. sglang-0.5.4.post1/sglang/srt/function_call/json_array_parser.py +61 -0
  95. sglang-0.5.4.post1/sglang/srt/function_call/minimax_m2.py +367 -0
  96. sglang-0.5.4.post1/sglang/srt/function_call/utils.py +143 -0
  97. sglang-0.5.4.post1/sglang/srt/grpc/compile_proto.py +245 -0
  98. sglang-0.5.4.post1/sglang/srt/grpc/grpc_request_manager.py +915 -0
  99. sglang-0.5.4.post1/sglang/srt/grpc/health_servicer.py +189 -0
  100. sglang-0.5.4.post1/sglang/srt/grpc/scheduler_launcher.py +181 -0
  101. sglang-0.5.4.post1/sglang/srt/grpc/sglang_scheduler_pb2.py +119 -0
  102. sglang-0.5.4.post1/sglang/srt/grpc/sglang_scheduler_pb2.pyi +490 -0
  103. sglang-0.5.4.post1/sglang/srt/grpc/sglang_scheduler_pb2_grpc.py +327 -0
  104. sglang-0.5.4.post1/sglang/srt/layers/activation.py +392 -0
  105. sglang-0.5.4.post1/sglang/srt/layers/attention/aiter_backend.py +1178 -0
  106. sglang-0.5.4.post1/sglang/srt/layers/attention/ascend_backend.py +692 -0
  107. sglang-0.5.4.post1/sglang/srt/layers/attention/attention_registry.py +226 -0
  108. sglang-0.5.4.post1/sglang/srt/layers/attention/base_attn_backend.py +145 -0
  109. sglang-0.5.4.post1/sglang/srt/layers/attention/double_sparsity_backend.py +257 -0
  110. sglang-0.5.4.post1/sglang/srt/layers/attention/fla/chunk.py +241 -0
  111. sglang-0.5.4.post1/sglang/srt/layers/attention/fla/chunk_o.py +178 -0
  112. sglang-0.5.4.post1/sglang/srt/layers/attention/fla/index.py +35 -0
  113. sglang-0.5.4.post1/sglang/srt/layers/attention/fla/layernorm_gated.py +344 -0
  114. sglang-0.5.4.post1/sglang/srt/layers/attention/fla/utils.py +328 -0
  115. sglang-0.5.4.post1/sglang/srt/layers/attention/fla/wy_fast.py +156 -0
  116. sglang-0.5.4.post1/sglang/srt/layers/attention/flashattention_backend.py +2412 -0
  117. sglang-0.5.4.post1/sglang/srt/layers/attention/flashinfer_backend.py +1595 -0
  118. sglang-0.5.4.post1/sglang/srt/layers/attention/flashinfer_mla_backend.py +1085 -0
  119. sglang-0.5.4.post1/sglang/srt/layers/attention/flashmla_backend.py +543 -0
  120. sglang-0.5.4.post1/sglang/srt/layers/attention/hybrid_attn_backend.py +147 -0
  121. sglang-0.5.4.post1/sglang/srt/layers/attention/hybrid_linear_attn_backend.py +705 -0
  122. sglang-0.5.4.post1/sglang/srt/layers/attention/intel_amx_backend.py +131 -0
  123. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/causal_conv1d.py +129 -0
  124. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/causal_conv1d_triton.py +973 -0
  125. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/mamba.py +577 -0
  126. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/mamba2_metadata.py +211 -0
  127. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/mixer2_rms_norm_gated.py +120 -0
  128. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/ops/ssd_bmm.py +214 -0
  129. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/ops/ssd_chunk_scan.py +562 -0
  130. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/ops/ssd_chunk_state.py +646 -0
  131. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/ops/ssd_combined.py +261 -0
  132. sglang-0.5.4.post1/sglang/srt/layers/attention/mamba/ops/ssd_state_passing.py +264 -0
  133. sglang-0.5.4.post1/sglang/srt/layers/attention/npu_ops/mla_preprocess.py +393 -0
  134. sglang-0.5.4.post1/sglang/srt/layers/attention/nsa/nsa_indexer.py +718 -0
  135. sglang-0.5.4.post1/sglang/srt/layers/attention/nsa/triton_kernel.py +136 -0
  136. sglang-0.5.4.post1/sglang/srt/layers/attention/nsa/utils.py +23 -0
  137. sglang-0.5.4.post1/sglang/srt/layers/attention/nsa_backend.py +1201 -0
  138. sglang-0.5.4.post1/sglang/srt/layers/attention/triton_backend.py +1314 -0
  139. sglang-0.5.4.post1/sglang/srt/layers/attention/triton_ops/double_sparsity_attention.py +1106 -0
  140. sglang-0.5.4.post1/sglang/srt/layers/attention/triton_ops/extend_attention.py +1045 -0
  141. sglang-0.5.4.post1/sglang/srt/layers/attention/trtllm_mha_backend.py +692 -0
  142. sglang-0.5.4.post1/sglang/srt/layers/attention/trtllm_mla_backend.py +1070 -0
  143. sglang-0.5.4.post1/sglang/srt/layers/attention/utils.py +181 -0
  144. sglang-0.5.4.post1/sglang/srt/layers/attention/vision.py +688 -0
  145. sglang-0.5.4.post1/sglang/srt/layers/attention/xpu_backend.py +1028 -0
  146. sglang-0.5.4.post1/sglang/srt/layers/communicator.py +689 -0
  147. sglang-0.5.4.post1/sglang/srt/layers/deep_gemm_wrapper/compile_utils.py +237 -0
  148. sglang-0.5.4.post1/sglang/srt/layers/deep_gemm_wrapper/configurer.py +25 -0
  149. sglang-0.5.4.post1/sglang/srt/layers/deep_gemm_wrapper/entrypoint.py +119 -0
  150. sglang-0.5.4.post1/sglang/srt/layers/dp_attention.py +545 -0
  151. sglang-0.5.4.post1/sglang/srt/layers/layernorm.py +383 -0
  152. sglang-0.5.4.post1/sglang/srt/layers/linear.py +1394 -0
  153. sglang-0.5.4.post1/sglang/srt/layers/logits_processor.py +812 -0
  154. sglang-0.5.4.post1/sglang/srt/layers/modelopt_utils.py +11 -0
  155. sglang-0.5.4.post1/sglang/srt/layers/moe/cutlass_moe.py +363 -0
  156. sglang-0.5.4.post1/sglang/srt/layers/moe/cutlass_w4a8_moe.py +536 -0
  157. sglang-0.5.4.post1/sglang/srt/layers/moe/ep_moe/kernels.py +1210 -0
  158. sglang-0.5.4.post1/sglang/srt/layers/moe/ep_moe/layer.py +531 -0
  159. sglang-0.5.4.post1/sglang/srt/layers/moe/flashinfer_cutedsl_moe.py +183 -0
  160. sglang-0.5.4.post1/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=128,N=192,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +146 -0
  161. sglang-0.5.4.post1/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=256,N=256,device_name=NVIDIA_B200.json +146 -0
  162. sglang-0.5.4.post1/sglang/srt/layers/moe/fused_moe_triton/fused_moe_triton_config.py +224 -0
  163. sglang-0.5.4.post1/sglang/srt/layers/moe/fused_moe_triton/layer.py +1077 -0
  164. sglang-0.5.4.post1/sglang/srt/layers/moe/fused_moe_triton/triton_kernels_moe.py +314 -0
  165. sglang-0.5.4.post1/sglang/srt/layers/moe/moe_runner/deep_gemm.py +569 -0
  166. sglang-0.5.4.post1/sglang/srt/layers/moe/moe_runner/runner.py +86 -0
  167. sglang-0.5.4.post1/sglang/srt/layers/moe/moe_runner/triton.py +450 -0
  168. sglang-0.5.4.post1/sglang/srt/layers/moe/moe_runner/triton_kernels.py +194 -0
  169. sglang-0.5.4.post1/sglang/srt/layers/moe/rocm_moe_utils.py +140 -0
  170. sglang-0.5.4.post1/sglang/srt/layers/moe/router.py +428 -0
  171. sglang-0.5.4.post1/sglang/srt/layers/moe/token_dispatcher/__init__.py +51 -0
  172. sglang-0.5.4.post1/sglang/srt/layers/moe/token_dispatcher/base.py +156 -0
  173. sglang-0.5.4.post1/sglang/srt/layers/moe/token_dispatcher/deepep.py +808 -0
  174. sglang-0.5.4.post1/sglang/srt/layers/moe/token_dispatcher/mooncake.py +386 -0
  175. sglang-0.5.4.post1/sglang/srt/layers/moe/token_dispatcher/standard.py +107 -0
  176. sglang-0.5.4.post1/sglang/srt/layers/moe/topk.py +890 -0
  177. sglang-0.5.4.post1/sglang/srt/layers/moe/utils.py +230 -0
  178. sglang-0.5.4.post1/sglang/srt/layers/quantization/__init__.py +171 -0
  179. sglang-0.5.4.post1/sglang/srt/layers/quantization/awq.py +956 -0
  180. sglang-0.5.4.post1/sglang/srt/layers/quantization/awq_triton.py +368 -0
  181. sglang-0.5.4.post1/sglang/srt/layers/quantization/base_config.py +242 -0
  182. sglang-0.5.4.post1/sglang/srt/layers/quantization/compressed_tensors/__init__.py +7 -0
  183. sglang-0.5.4.post1/sglang/srt/layers/quantization/compressed_tensors/compressed_tensors.py +638 -0
  184. sglang-0.5.4.post1/sglang/srt/layers/quantization/compressed_tensors/compressed_tensors_moe.py +1043 -0
  185. sglang-0.5.4.post1/sglang/srt/layers/quantization/compressed_tensors/schemes/__init__.py +16 -0
  186. sglang-0.5.4.post1/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_w8a16_fp8.py +135 -0
  187. sglang-0.5.4.post1/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_wNa16.py +339 -0
  188. sglang-0.5.4.post1/sglang/srt/layers/quantization/fp8.py +1311 -0
  189. sglang-0.5.4.post1/sglang/srt/layers/quantization/fp8_kernel.py +1851 -0
  190. sglang-0.5.4.post1/sglang/srt/layers/quantization/fp8_utils.py +862 -0
  191. sglang-0.5.4.post1/sglang/srt/layers/quantization/fpgemm_fp8.py +202 -0
  192. sglang-0.5.4.post1/sglang/srt/layers/quantization/gguf.py +566 -0
  193. sglang-0.5.4.post1/sglang/srt/layers/quantization/gptq.py +1096 -0
  194. sglang-0.5.4.post1/sglang/srt/layers/quantization/int8_kernel.py +441 -0
  195. sglang-0.5.4.post1/sglang/srt/layers/quantization/marlin_utils.py +820 -0
  196. sglang-0.5.4.post1/sglang/srt/layers/quantization/modelopt_quant.py +1535 -0
  197. sglang-0.5.4.post1/sglang/srt/layers/quantization/mxfp4.py +837 -0
  198. sglang-0.5.4.post1/sglang/srt/layers/quantization/petit.py +252 -0
  199. sglang-0.5.4.post1/sglang/srt/layers/quantization/quark/quark.py +392 -0
  200. sglang-0.5.4.post1/sglang/srt/layers/quantization/quark/quark_moe.py +215 -0
  201. sglang-0.5.4.post1/sglang/srt/layers/quantization/quark/schemes/quark_w4a4_mxfp4.py +130 -0
  202. sglang-0.5.4.post1/sglang/srt/layers/quantization/unquant.py +443 -0
  203. sglang-0.5.4.post1/sglang/srt/layers/quantization/utils.py +563 -0
  204. sglang-0.5.4.post1/sglang/srt/layers/quantization/w4afp8.py +409 -0
  205. sglang-0.5.4.post1/sglang/srt/layers/quantization/w8a8_int8.py +1052 -0
  206. sglang-0.5.4.post1/sglang/srt/layers/radix_attention.py +169 -0
  207. sglang-0.5.4.post1/sglang/srt/layers/rotary_embedding.py +2733 -0
  208. sglang-0.5.4.post1/sglang/srt/layers/sampler.py +517 -0
  209. sglang-0.5.4.post1/sglang/srt/layers/sparse_pooler.py +98 -0
  210. sglang-0.5.4.post1/sglang/srt/layers/utils.py +58 -0
  211. sglang-0.5.4.post1/sglang/srt/layers/vocab_parallel_embedding.py +574 -0
  212. sglang-0.5.4.post1/sglang/srt/lora/backend/triton_backend.py +181 -0
  213. sglang-0.5.4.post1/sglang/srt/lora/eviction_policy.py +139 -0
  214. sglang-0.5.4.post1/sglang/srt/lora/lora_manager.py +466 -0
  215. sglang-0.5.4.post1/sglang/srt/lora/lora_registry.py +207 -0
  216. sglang-0.5.4.post1/sglang/srt/lora/mem_pool.py +333 -0
  217. sglang-0.5.4.post1/sglang/srt/lora/triton_ops/chunked_sgmv_expand.py +214 -0
  218. sglang-0.5.4.post1/sglang/srt/lora/triton_ops/chunked_sgmv_shrink.py +176 -0
  219. sglang-0.5.4.post1/sglang/srt/managers/cache_controller.py +820 -0
  220. sglang-0.5.4.post1/sglang/srt/managers/data_parallel_controller.py +514 -0
  221. sglang-0.5.4.post1/sglang/srt/managers/detokenizer_manager.py +330 -0
  222. sglang-0.5.4.post1/sglang/srt/managers/io_struct.py +1494 -0
  223. sglang-0.5.4.post1/sglang/srt/managers/mm_utils.py +814 -0
  224. sglang-0.5.4.post1/sglang/srt/managers/multi_tokenizer_mixin.py +584 -0
  225. sglang-0.5.4.post1/sglang/srt/managers/overlap_utils.py +130 -0
  226. sglang-0.5.4.post1/sglang/srt/managers/schedule_batch.py +1866 -0
  227. sglang-0.5.4.post1/sglang/srt/managers/schedule_policy.py +710 -0
  228. sglang-0.5.4.post1/sglang/srt/managers/scheduler.py +2796 -0
  229. sglang-0.5.4.post1/sglang/srt/managers/scheduler_metrics_mixin.py +378 -0
  230. sglang-0.5.4.post1/sglang/srt/managers/scheduler_output_processor_mixin.py +983 -0
  231. sglang-0.5.4.post1/sglang/srt/managers/scheduler_pp_mixin.py +341 -0
  232. sglang-0.5.4.post1/sglang/srt/managers/scheduler_profiler_mixin.py +345 -0
  233. sglang-0.5.4.post1/sglang/srt/managers/scheduler_runtime_checker_mixin.py +217 -0
  234. sglang-0.5.4.post1/sglang/srt/managers/scheduler_update_weights_mixin.py +181 -0
  235. sglang-0.5.4.post1/sglang/srt/managers/tokenizer_communicator_mixin.py +691 -0
  236. sglang-0.5.4.post1/sglang/srt/managers/tokenizer_manager.py +2167 -0
  237. sglang-0.5.4.post1/sglang/srt/managers/tp_worker.py +427 -0
  238. sglang-0.5.4.post1/sglang/srt/managers/utils.py +174 -0
  239. sglang-0.5.4.post1/sglang/srt/mem_cache/allocator.py +580 -0
  240. sglang-0.5.4.post1/sglang/srt/mem_cache/allocator_ascend.py +161 -0
  241. sglang-0.5.4.post1/sglang/srt/mem_cache/base_prefix_cache.py +109 -0
  242. sglang-0.5.4.post1/sglang/srt/mem_cache/chunk_cache.py +118 -0
  243. sglang-0.5.4.post1/sglang/srt/mem_cache/common.py +480 -0
  244. sglang-0.5.4.post1/sglang/srt/mem_cache/evict_policy.py +38 -0
  245. sglang-0.5.4.post1/sglang/srt/mem_cache/hicache_storage.py +274 -0
  246. sglang-0.5.4.post1/sglang/srt/mem_cache/hiradix_cache.py +949 -0
  247. sglang-0.5.4.post1/sglang/srt/mem_cache/mamba_radix_cache.py +993 -0
  248. sglang-0.5.4.post1/sglang/srt/mem_cache/memory_pool.py +1919 -0
  249. sglang-0.5.4.post1/sglang/srt/mem_cache/memory_pool_host.py +755 -0
  250. sglang-0.5.4.post1/sglang/srt/mem_cache/multimodal_cache.py +67 -0
  251. sglang-0.5.4.post1/sglang/srt/mem_cache/radix_cache.py +757 -0
  252. sglang-0.5.4.post1/sglang/srt/mem_cache/radix_cache_cpp.py +237 -0
  253. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/aibrix_kvcache/aibrix_kvcache_storage.py +157 -0
  254. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/aibrix_kvcache/unit_test.py +97 -0
  255. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/backend_factory.py +223 -0
  256. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/eic/eic_storage.py +777 -0
  257. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/hf3fs/hf3fs_client.py +163 -0
  258. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/hf3fs/mini_3fs_metadata_server.py +471 -0
  259. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/hf3fs/storage_hf3fs.py +644 -0
  260. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/lmcache/lmc_radix_cache.py +286 -0
  261. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/mooncake_store/mooncake_store.py +522 -0
  262. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/nixl/hicache_nixl.py +286 -0
  263. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/nixl/nixl_utils.py +204 -0
  264. sglang-0.5.4.post1/sglang/srt/mem_cache/storage/nixl/test_hicache_nixl_storage.py +270 -0
  265. sglang-0.5.4.post1/sglang/srt/mem_cache/swa_radix_cache.py +1080 -0
  266. sglang-0.5.4.post1/sglang/srt/metrics/collector.py +971 -0
  267. sglang-0.5.4.post1/sglang/srt/metrics/func_timer.py +101 -0
  268. sglang-0.5.4.post1/sglang/srt/model_executor/cuda_graph_runner.py +913 -0
  269. sglang-0.5.4.post1/sglang/srt/model_executor/forward_batch_info.py +1127 -0
  270. sglang-0.5.4.post1/sglang/srt/model_executor/model_runner.py +2280 -0
  271. sglang-0.5.4.post1/sglang/srt/model_executor/npu_graph_runner.py +100 -0
  272. sglang-0.5.4.post1/sglang/srt/model_executor/piecewise_cuda_graph_runner.py +549 -0
  273. sglang-0.5.4.post1/sglang/srt/model_loader/__init__.py +40 -0
  274. sglang-0.5.4.post1/sglang/srt/model_loader/loader.py +2095 -0
  275. sglang-0.5.4.post1/sglang/srt/model_loader/utils.py +118 -0
  276. sglang-0.5.4.post1/sglang/srt/model_loader/weight_utils.py +1203 -0
  277. sglang-0.5.4.post1/sglang/srt/models/apertus.py +685 -0
  278. sglang-0.5.4.post1/sglang/srt/models/arcee.py +532 -0
  279. sglang-0.5.4.post1/sglang/srt/models/bailing_moe.py +989 -0
  280. sglang-0.5.4.post1/sglang/srt/models/bailing_moe_nextn.py +167 -0
  281. sglang-0.5.4.post1/sglang/srt/models/bert.py +498 -0
  282. sglang-0.5.4.post1/sglang/srt/models/deepseek_nextn.py +191 -0
  283. sglang-0.5.4.post1/sglang/srt/models/deepseek_ocr.py +1516 -0
  284. sglang-0.5.4.post1/sglang/srt/models/deepseek_v2.py +3699 -0
  285. sglang-0.5.4.post1/sglang/srt/models/dots_ocr.py +171 -0
  286. sglang-0.5.4.post1/sglang/srt/models/dots_vlm.py +173 -0
  287. sglang-0.5.4.post1/sglang/srt/models/dots_vlm_vit.py +337 -0
  288. sglang-0.5.4.post1/sglang/srt/models/falcon_h1.py +570 -0
  289. sglang-0.5.4.post1/sglang/srt/models/gemma3_mm.py +460 -0
  290. sglang-0.5.4.post1/sglang/srt/models/gemma3n_mm.py +533 -0
  291. sglang-0.5.4.post1/sglang/srt/models/glm4_moe.py +1028 -0
  292. sglang-0.5.4.post1/sglang/srt/models/glm4_moe_nextn.py +158 -0
  293. sglang-0.5.4.post1/sglang/srt/models/glm4v.py +643 -0
  294. sglang-0.5.4.post1/sglang/srt/models/glm4v_moe.py +233 -0
  295. sglang-0.5.4.post1/sglang/srt/models/gpt_oss.py +1181 -0
  296. sglang-0.5.4.post1/sglang/srt/models/grok.py +1119 -0
  297. sglang-0.5.4.post1/sglang/srt/models/hunyuan.py +814 -0
  298. sglang-0.5.4.post1/sglang/srt/models/interns1.py +292 -0
  299. sglang-0.5.4.post1/sglang/srt/models/kimi_vl.py +307 -0
  300. sglang-0.5.4.post1/sglang/srt/models/kimi_vl_moonvit.py +641 -0
  301. sglang-0.5.4.post1/sglang/srt/models/llama.py +753 -0
  302. sglang-0.5.4.post1/sglang/srt/models/llama_eagle3.py +266 -0
  303. sglang-0.5.4.post1/sglang/srt/models/longcat_flash.py +1009 -0
  304. sglang-0.5.4.post1/sglang/srt/models/longcat_flash_nextn.py +688 -0
  305. sglang-0.5.4.post1/sglang/srt/models/mimo.py +160 -0
  306. sglang-0.5.4.post1/sglang/srt/models/mimo_mtp.py +203 -0
  307. sglang-0.5.4.post1/sglang/srt/models/minicpmo.py +1916 -0
  308. sglang-0.5.4.post1/sglang/srt/models/minimax_m2.py +922 -0
  309. sglang-0.5.4.post1/sglang/srt/models/mixtral.py +477 -0
  310. sglang-0.5.4.post1/sglang/srt/models/mllama.py +1062 -0
  311. sglang-0.5.4.post1/sglang/srt/models/mllama4.py +1011 -0
  312. sglang-0.5.4.post1/sglang/srt/models/nemotron_h.py +511 -0
  313. sglang-0.5.4.post1/sglang/srt/models/nvila.py +355 -0
  314. sglang-0.5.4.post1/sglang/srt/models/nvila_lite.py +184 -0
  315. sglang-0.5.4.post1/sglang/srt/models/olmo2.py +440 -0
  316. sglang-0.5.4.post1/sglang/srt/models/opt.py +637 -0
  317. sglang-0.5.4.post1/sglang/srt/models/phi.py +321 -0
  318. sglang-0.5.4.post1/sglang/srt/models/phi4mm.py +538 -0
  319. sglang-0.5.4.post1/sglang/srt/models/phimoe.py +559 -0
  320. sglang-0.5.4.post1/sglang/srt/models/pixtral.py +460 -0
  321. sglang-0.5.4.post1/sglang/srt/models/points_v15_chat.py +186 -0
  322. sglang-0.5.4.post1/sglang/srt/models/qwen.py +355 -0
  323. sglang-0.5.4.post1/sglang/srt/models/qwen2.py +667 -0
  324. sglang-0.5.4.post1/sglang/srt/models/qwen2_5_vl.py +671 -0
  325. sglang-0.5.4.post1/sglang/srt/models/qwen2_audio.py +188 -0
  326. sglang-0.5.4.post1/sglang/srt/models/qwen2_moe.py +842 -0
  327. sglang-0.5.4.post1/sglang/srt/models/qwen2_vl.py +612 -0
  328. sglang-0.5.4.post1/sglang/srt/models/qwen3.py +568 -0
  329. sglang-0.5.4.post1/sglang/srt/models/qwen3_moe.py +906 -0
  330. sglang-0.5.4.post1/sglang/srt/models/qwen3_next.py +1064 -0
  331. sglang-0.5.4.post1/sglang/srt/models/qwen3_next_mtp.py +111 -0
  332. sglang-0.5.4.post1/sglang/srt/models/qwen3_omni_moe.py +661 -0
  333. sglang-0.5.4.post1/sglang/srt/models/qwen3_vl.py +791 -0
  334. sglang-0.5.4.post1/sglang/srt/models/qwen3_vl_moe.py +343 -0
  335. sglang-0.5.4.post1/sglang/srt/models/roberta.py +338 -0
  336. sglang-0.5.4.post1/sglang/srt/models/sarashina2_vision.py +268 -0
  337. sglang-0.5.4.post1/sglang/srt/models/step3_vl.py +1003 -0
  338. sglang-0.5.4.post1/sglang/srt/models/utils.py +61 -0
  339. sglang-0.5.4.post1/sglang/srt/multimodal/processors/base_processor.py +666 -0
  340. sglang-0.5.4.post1/sglang/srt/multimodal/processors/deepseek_ocr.py +37 -0
  341. sglang-0.5.4.post1/sglang/srt/multimodal/processors/deepseek_vl_v2.py +62 -0
  342. sglang-0.5.4.post1/sglang/srt/multimodal/processors/dots_vlm.py +97 -0
  343. sglang-0.5.4.post1/sglang/srt/multimodal/processors/glm4v.py +128 -0
  344. sglang-0.5.4.post1/sglang/srt/multimodal/processors/internvl.py +277 -0
  345. sglang-0.5.4.post1/sglang/srt/multimodal/processors/janus_pro.py +44 -0
  346. sglang-0.5.4.post1/sglang/srt/multimodal/processors/mllama4.py +49 -0
  347. sglang-0.5.4.post1/sglang/srt/multimodal/processors/nvila.py +77 -0
  348. sglang-0.5.4.post1/sglang/srt/multimodal/processors/phi4mm.py +100 -0
  349. sglang-0.5.4.post1/sglang/srt/multimodal/processors/points_v15_chat.py +52 -0
  350. sglang-0.5.4.post1/sglang/srt/multimodal/processors/qwen_vl.py +357 -0
  351. sglang-0.5.4.post1/sglang/srt/multimodal/processors/step3_vl.py +517 -0
  352. sglang-0.5.4.post1/sglang/srt/parser/conversation.py +1081 -0
  353. sglang-0.5.4.post1/sglang/srt/parser/reasoning_parser.py +335 -0
  354. sglang-0.5.4.post1/sglang/srt/sampling/custom_logit_processor.py +128 -0
  355. sglang-0.5.4.post1/sglang/srt/sampling/sampling_batch_info.py +405 -0
  356. sglang-0.5.4.post1/sglang/srt/sampling/sampling_params.py +240 -0
  357. sglang-0.5.4.post1/sglang/srt/server_args.py +4012 -0
  358. sglang-0.5.4.post1/sglang/srt/server_args_config_parser.py +146 -0
  359. sglang-0.5.4.post1/sglang/srt/single_batch_overlap.py +156 -0
  360. sglang-0.5.4.post1/sglang/srt/speculative/base_spec_worker.py +34 -0
  361. sglang-0.5.4.post1/sglang/srt/speculative/draft_utils.py +226 -0
  362. sglang-0.5.4.post1/sglang/srt/speculative/eagle_draft_cuda_graph_runner.py +373 -0
  363. sglang-0.5.4.post1/sglang/srt/speculative/eagle_draft_extend_cuda_graph_runner.py +414 -0
  364. sglang-0.5.4.post1/sglang/srt/speculative/eagle_info.py +786 -0
  365. sglang-0.5.4.post1/sglang/srt/speculative/eagle_info_v2.py +458 -0
  366. sglang-0.5.4.post1/sglang/srt/speculative/eagle_utils.py +138 -0
  367. sglang-0.5.4.post1/sglang/srt/speculative/eagle_worker.py +986 -0
  368. sglang-0.5.4.post1/sglang/srt/speculative/eagle_worker_v2.py +702 -0
  369. sglang-0.5.4.post1/sglang/srt/speculative/ngram_info.py +433 -0
  370. sglang-0.5.4.post1/sglang/srt/speculative/ngram_worker.py +246 -0
  371. sglang-0.5.4.post1/sglang/srt/speculative/spec_info.py +81 -0
  372. sglang-0.5.4.post1/sglang/srt/speculative/spec_utils.py +641 -0
  373. sglang-0.5.4.post1/sglang/srt/speculative/standalone_worker.py +99 -0
  374. sglang-0.5.4.post1/sglang/srt/tokenizer/tiktoken_tokenizer.py +166 -0
  375. sglang-0.5.4.post1/sglang/srt/two_batch_overlap.py +1006 -0
  376. sglang-0.5.4.post1/sglang/srt/utils/__init__.py +2 -0
  377. sglang-0.5.4.post1/sglang/srt/utils/bench_utils.py +139 -0
  378. sglang-0.5.4.post1/sglang/srt/utils/common.py +3575 -0
  379. sglang-0.5.4.post1/sglang/srt/utils/hf_transformers_utils.py +515 -0
  380. sglang-0.5.4.post1/sglang/srt/utils/host_shared_memory.py +82 -0
  381. sglang-0.5.4.post1/sglang/srt/utils/offloader.py +572 -0
  382. sglang-0.5.4.post1/sglang/srt/utils/profile_merger.py +199 -0
  383. sglang-0.5.4.post1/sglang/test/attention/test_flashattn_backend.py +350 -0
  384. sglang-0.5.4.post1/sglang/test/attention/test_flashattn_mla_backend.py +284 -0
  385. sglang-0.5.4.post1/sglang/test/attention/test_prefix_chunk_info.py +224 -0
  386. sglang-0.5.4.post1/sglang/test/attention/test_trtllm_mla_backend.py +1436 -0
  387. sglang-0.5.4.post1/sglang/test/few_shot_gsm8k_engine.py +142 -0
  388. sglang-0.5.4.post1/sglang/test/kit_matched_stop.py +157 -0
  389. sglang-0.5.4.post1/sglang/test/longbench_v2/__init__.py +1 -0
  390. sglang-0.5.4.post1/sglang/test/longbench_v2/test_longbench_v2_eval.py +238 -0
  391. sglang-0.5.4.post1/sglang/test/longbench_v2/validate_longbench_v2.py +337 -0
  392. sglang-0.5.4.post1/sglang/test/longbench_v2/validate_longbench_v2_standalone.py +306 -0
  393. sglang-0.5.4.post1/sglang/test/run_eval.py +238 -0
  394. sglang-0.5.4.post1/sglang/test/runners.py +876 -0
  395. sglang-0.5.4.post1/sglang/test/send_one.py +193 -0
  396. sglang-0.5.4.post1/sglang/test/simple_eval_common.py +478 -0
  397. sglang-0.5.4.post1/sglang/test/simple_eval_gpqa.py +94 -0
  398. sglang-0.5.4.post1/sglang/test/simple_eval_humaneval.py +130 -0
  399. sglang-0.5.4.post1/sglang/test/simple_eval_longbench_v2.py +344 -0
  400. sglang-0.5.4.post1/sglang/test/test_block_fp8.py +660 -0
  401. sglang-0.5.4.post1/sglang/test/test_block_fp8_deep_gemm_blackwell.py +251 -0
  402. sglang-0.5.4.post1/sglang/test/test_cutlass_moe.py +298 -0
  403. sglang-0.5.4.post1/sglang/test/test_cutlass_w4a8_moe.py +285 -0
  404. sglang-0.5.4.post1/sglang/test/test_deterministic.py +653 -0
  405. sglang-0.5.4.post1/sglang/test/test_deterministic_utils.py +74 -0
  406. sglang-0.5.4.post1/sglang/test/test_disaggregation_utils.py +158 -0
  407. sglang-0.5.4.post1/sglang/test/test_marlin_moe.py +285 -0
  408. sglang-0.5.4.post1/sglang/test/test_utils.py +1849 -0
  409. sglang-0.5.4.post1/sglang/version.py +1 -0
  410. sglang-0.5.4.post1/sglang.egg-info/PKG-INFO +391 -0
  411. sglang-0.5.4.post1/sglang.egg-info/SOURCES.txt +1082 -0
  412. sglang-0.5.4.post1/sglang.egg-info/requires.txt +103 -0
  413. sglang-0.5.3rc2/PKG-INFO +0 -378
  414. sglang-0.5.3rc2/README.md +0 -78
  415. sglang-0.5.3rc2/pyproject.toml +0 -140
  416. sglang-0.5.3rc2/sglang/bench_one_batch.py +0 -663
  417. sglang-0.5.3rc2/sglang/bench_one_batch_server.py +0 -729
  418. sglang-0.5.3rc2/sglang/bench_serving.py +0 -2413
  419. sglang-0.5.3rc2/sglang/check_env.py +0 -305
  420. sglang-0.5.3rc2/sglang/compile_deep_gemm.py +0 -184
  421. sglang-0.5.3rc2/sglang/global_config.py +0 -53
  422. sglang-0.5.3rc2/sglang/lang/api.py +0 -286
  423. sglang-0.5.3rc2/sglang/lang/interpreter.py +0 -1060
  424. sglang-0.5.3rc2/sglang/lang/ir.py +0 -635
  425. sglang-0.5.3rc2/sglang/launch_server.py +0 -30
  426. sglang-0.5.3rc2/sglang/profiler.py +0 -166
  427. sglang-0.5.3rc2/sglang/srt/_custom_ops.py +0 -177
  428. sglang-0.5.3rc2/sglang/srt/batch_invariant_ops/batch_invariant_ops.py +0 -549
  429. sglang-0.5.3rc2/sglang/srt/bench_utils.py +0 -137
  430. sglang-0.5.3rc2/sglang/srt/configs/__init__.py +0 -35
  431. sglang-0.5.3rc2/sglang/srt/configs/deepseekvl2.py +0 -688
  432. sglang-0.5.3rc2/sglang/srt/configs/dots_vlm.py +0 -139
  433. sglang-0.5.3rc2/sglang/srt/configs/falcon_h1.py +0 -360
  434. sglang-0.5.3rc2/sglang/srt/configs/load_config.py +0 -98
  435. sglang-0.5.3rc2/sglang/srt/configs/model_config.py +0 -893
  436. sglang-0.5.3rc2/sglang/srt/configs/qwen3_next.py +0 -326
  437. sglang-0.5.3rc2/sglang/srt/configs/qwen3_vl.py +0 -586
  438. sglang-0.5.3rc2/sglang/srt/connector/remote_instance.py +0 -82
  439. sglang-0.5.3rc2/sglang/srt/constrained/base_grammar_backend.py +0 -250
  440. sglang-0.5.3rc2/sglang/srt/constrained/llguidance_backend.py +0 -173
  441. sglang-0.5.3rc2/sglang/srt/constrained/outlines_backend.py +0 -190
  442. sglang-0.5.3rc2/sglang/srt/constrained/reasoner_grammar_backend.py +0 -90
  443. sglang-0.5.3rc2/sglang/srt/constrained/xgrammar_backend.py +0 -260
  444. sglang-0.5.3rc2/sglang/srt/disaggregation/ascend/transfer_engine.py +0 -96
  445. sglang-0.5.3rc2/sglang/srt/disaggregation/base/conn.py +0 -134
  446. sglang-0.5.3rc2/sglang/srt/disaggregation/common/conn.py +0 -606
  447. sglang-0.5.3rc2/sglang/srt/disaggregation/decode.py +0 -944
  448. sglang-0.5.3rc2/sglang/srt/disaggregation/decode_kvcache_offload_manager.py +0 -185
  449. sglang-0.5.3rc2/sglang/srt/disaggregation/fake/conn.py +0 -85
  450. sglang-0.5.3rc2/sglang/srt/disaggregation/mooncake/conn.py +0 -1214
  451. sglang-0.5.3rc2/sglang/srt/disaggregation/nixl/conn.py +0 -805
  452. sglang-0.5.3rc2/sglang/srt/disaggregation/prefill.py +0 -884
  453. sglang-0.5.3rc2/sglang/srt/distributed/device_communicators/all_reduce_utils.py +0 -16
  454. sglang-0.5.3rc2/sglang/srt/distributed/device_communicators/custom_all_reduce.py +0 -421
  455. sglang-0.5.3rc2/sglang/srt/distributed/device_communicators/pymscclpp.py +0 -315
  456. sglang-0.5.3rc2/sglang/srt/distributed/device_communicators/pynccl.py +0 -341
  457. sglang-0.5.3rc2/sglang/srt/distributed/device_communicators/pynccl_allocator.py +0 -133
  458. sglang-0.5.3rc2/sglang/srt/distributed/device_communicators/symm_mem.py +0 -164
  459. sglang-0.5.3rc2/sglang/srt/distributed/naive_distributed.py +0 -112
  460. sglang-0.5.3rc2/sglang/srt/distributed/parallel_state.py +0 -1831
  461. sglang-0.5.3rc2/sglang/srt/entrypoints/context.py +0 -246
  462. sglang-0.5.3rc2/sglang/srt/entrypoints/engine.py +0 -900
  463. sglang-0.5.3rc2/sglang/srt/entrypoints/grpc_request_manager.py +0 -855
  464. sglang-0.5.3rc2/sglang/srt/entrypoints/grpc_server.py +0 -810
  465. sglang-0.5.3rc2/sglang/srt/entrypoints/harmony_utils.py +0 -372
  466. sglang-0.5.3rc2/sglang/srt/entrypoints/http_server.py +0 -1488
  467. sglang-0.5.3rc2/sglang/srt/entrypoints/http_server_engine.py +0 -142
  468. sglang-0.5.3rc2/sglang/srt/entrypoints/openai/protocol.py +0 -1037
  469. sglang-0.5.3rc2/sglang/srt/entrypoints/openai/serving_base.py +0 -214
  470. sglang-0.5.3rc2/sglang/srt/entrypoints/openai/serving_chat.py +0 -1217
  471. sglang-0.5.3rc2/sglang/srt/entrypoints/openai/serving_completions.py +0 -462
  472. sglang-0.5.3rc2/sglang/srt/entrypoints/openai/serving_responses.py +0 -1318
  473. sglang-0.5.3rc2/sglang/srt/environ.py +0 -285
  474. sglang-0.5.3rc2/sglang/srt/eplb/eplb_algorithms/__init__.py +0 -63
  475. sglang-0.5.3rc2/sglang/srt/eplb/eplb_algorithms/deepseek.py +0 -223
  476. sglang-0.5.3rc2/sglang/srt/eplb/expert_distribution.py +0 -966
  477. sglang-0.5.3rc2/sglang/srt/eplb/expert_location_dispatch.py +0 -109
  478. sglang-0.5.3rc2/sglang/srt/eplb/expert_location_updater.py +0 -575
  479. sglang-0.5.3rc2/sglang/srt/function_call/base_format_detector.py +0 -364
  480. sglang-0.5.3rc2/sglang/srt/function_call/function_call_parser.py +0 -221
  481. sglang-0.5.3rc2/sglang/srt/function_call/glm4_moe_detector.py +0 -164
  482. sglang-0.5.3rc2/sglang/srt/function_call/gpt_oss_detector.py +0 -242
  483. sglang-0.5.3rc2/sglang/srt/function_call/json_array_parser.py +0 -63
  484. sglang-0.5.3rc2/sglang/srt/function_call/utils.py +0 -143
  485. sglang-0.5.3rc2/sglang/srt/grpc/compile_proto.py +0 -245
  486. sglang-0.5.3rc2/sglang/srt/grpc/sglang_scheduler_pb2.py +0 -111
  487. sglang-0.5.3rc2/sglang/srt/grpc/sglang_scheduler_pb2.pyi +0 -434
  488. sglang-0.5.3rc2/sglang/srt/grpc/sglang_scheduler_pb2_grpc.py +0 -239
  489. sglang-0.5.3rc2/sglang/srt/host_shared_memory.py +0 -83
  490. sglang-0.5.3rc2/sglang/srt/layers/activation.py +0 -383
  491. sglang-0.5.3rc2/sglang/srt/layers/attention/aiter_backend.py +0 -1178
  492. sglang-0.5.3rc2/sglang/srt/layers/attention/ascend_backend.py +0 -676
  493. sglang-0.5.3rc2/sglang/srt/layers/attention/attention_registry.py +0 -206
  494. sglang-0.5.3rc2/sglang/srt/layers/attention/base_attn_backend.py +0 -126
  495. sglang-0.5.3rc2/sglang/srt/layers/attention/double_sparsity_backend.py +0 -257
  496. sglang-0.5.3rc2/sglang/srt/layers/attention/fla/chunk.py +0 -242
  497. sglang-0.5.3rc2/sglang/srt/layers/attention/fla/chunk_o.py +0 -178
  498. sglang-0.5.3rc2/sglang/srt/layers/attention/fla/index.py +0 -37
  499. sglang-0.5.3rc2/sglang/srt/layers/attention/fla/layernorm_gated.py +0 -326
  500. sglang-0.5.3rc2/sglang/srt/layers/attention/fla/utils.py +0 -331
  501. sglang-0.5.3rc2/sglang/srt/layers/attention/fla/wy_fast.py +0 -158
  502. sglang-0.5.3rc2/sglang/srt/layers/attention/flashattention_backend.py +0 -2398
  503. sglang-0.5.3rc2/sglang/srt/layers/attention/flashinfer_backend.py +0 -1359
  504. sglang-0.5.3rc2/sglang/srt/layers/attention/flashinfer_mla_backend.py +0 -1075
  505. sglang-0.5.3rc2/sglang/srt/layers/attention/flashmla_backend.py +0 -543
  506. sglang-0.5.3rc2/sglang/srt/layers/attention/hybrid_attn_backend.py +0 -147
  507. sglang-0.5.3rc2/sglang/srt/layers/attention/hybrid_linear_attn_backend.py +0 -602
  508. sglang-0.5.3rc2/sglang/srt/layers/attention/intel_amx_backend.py +0 -131
  509. sglang-0.5.3rc2/sglang/srt/layers/attention/mamba/causal_conv1d.py +0 -129
  510. sglang-0.5.3rc2/sglang/srt/layers/attention/mamba/causal_conv1d_triton.py +0 -969
  511. sglang-0.5.3rc2/sglang/srt/layers/attention/mamba/mamba.py +0 -629
  512. sglang-0.5.3rc2/sglang/srt/layers/attention/mamba/mamba_utils.py +0 -81
  513. sglang-0.5.3rc2/sglang/srt/layers/attention/mamba/ops/ssd_bmm.py +0 -264
  514. sglang-0.5.3rc2/sglang/srt/layers/attention/mamba/ops/ssd_chunk_scan.py +0 -622
  515. sglang-0.5.3rc2/sglang/srt/layers/attention/mamba/ops/ssd_chunk_state.py +0 -757
  516. sglang-0.5.3rc2/sglang/srt/layers/attention/mamba/ops/ssd_combined.py +0 -262
  517. sglang-0.5.3rc2/sglang/srt/layers/attention/mamba/ops/ssd_state_passing.py +0 -275
  518. sglang-0.5.3rc2/sglang/srt/layers/attention/npu_ops/mla_preprocess.py +0 -393
  519. sglang-0.5.3rc2/sglang/srt/layers/attention/nsa/nsa_indexer.py +0 -761
  520. sglang-0.5.3rc2/sglang/srt/layers/attention/nsa/utils.py +0 -24
  521. sglang-0.5.3rc2/sglang/srt/layers/attention/nsa_backend.py +0 -887
  522. sglang-0.5.3rc2/sglang/srt/layers/attention/triton_backend.py +0 -1140
  523. sglang-0.5.3rc2/sglang/srt/layers/attention/triton_ops/double_sparsity_attention.py +0 -1106
  524. sglang-0.5.3rc2/sglang/srt/layers/attention/triton_ops/extend_attention.py +0 -550
  525. sglang-0.5.3rc2/sglang/srt/layers/attention/trtllm_mha_backend.py +0 -692
  526. sglang-0.5.3rc2/sglang/srt/layers/attention/trtllm_mla_backend.py +0 -751
  527. sglang-0.5.3rc2/sglang/srt/layers/attention/utils.py +0 -99
  528. sglang-0.5.3rc2/sglang/srt/layers/attention/vision.py +0 -688
  529. sglang-0.5.3rc2/sglang/srt/layers/communicator.py +0 -684
  530. sglang-0.5.3rc2/sglang/srt/layers/dp_attention.py +0 -528
  531. sglang-0.5.3rc2/sglang/srt/layers/layernorm.py +0 -338
  532. sglang-0.5.3rc2/sglang/srt/layers/linear.py +0 -1386
  533. sglang-0.5.3rc2/sglang/srt/layers/logits_processor.py +0 -677
  534. sglang-0.5.3rc2/sglang/srt/layers/moe/cutlass_moe.py +0 -365
  535. sglang-0.5.3rc2/sglang/srt/layers/moe/cutlass_w4a8_moe.py +0 -206
  536. sglang-0.5.3rc2/sglang/srt/layers/moe/ep_moe/kernels.py +0 -1438
  537. sglang-0.5.3rc2/sglang/srt/layers/moe/ep_moe/layer.py +0 -1002
  538. sglang-0.5.3rc2/sglang/srt/layers/moe/flashinfer_cutedsl_moe.py +0 -183
  539. sglang-0.5.3rc2/sglang/srt/layers/moe/fused_moe_triton/fused_moe_triton_config.py +0 -216
  540. sglang-0.5.3rc2/sglang/srt/layers/moe/fused_moe_triton/layer.py +0 -1071
  541. sglang-0.5.3rc2/sglang/srt/layers/moe/fused_moe_triton/triton_kernels_moe.py +0 -335
  542. sglang-0.5.3rc2/sglang/srt/layers/moe/moe_runner/runner.py +0 -80
  543. sglang-0.5.3rc2/sglang/srt/layers/moe/moe_runner/triton.py +0 -448
  544. sglang-0.5.3rc2/sglang/srt/layers/moe/rocm_moe_utils.py +0 -141
  545. sglang-0.5.3rc2/sglang/srt/layers/moe/router.py +0 -392
  546. sglang-0.5.3rc2/sglang/srt/layers/moe/token_dispatcher/__init__.py +0 -41
  547. sglang-0.5.3rc2/sglang/srt/layers/moe/token_dispatcher/base.py +0 -150
  548. sglang-0.5.3rc2/sglang/srt/layers/moe/token_dispatcher/deepep.py +0 -791
  549. sglang-0.5.3rc2/sglang/srt/layers/moe/token_dispatcher/standard.py +0 -61
  550. sglang-0.5.3rc2/sglang/srt/layers/moe/topk.py +0 -889
  551. sglang-0.5.3rc2/sglang/srt/layers/moe/utils.py +0 -215
  552. sglang-0.5.3rc2/sglang/srt/layers/quantization/__init__.py +0 -224
  553. sglang-0.5.3rc2/sglang/srt/layers/quantization/awq.py +0 -782
  554. sglang-0.5.3rc2/sglang/srt/layers/quantization/awq_triton.py +0 -339
  555. sglang-0.5.3rc2/sglang/srt/layers/quantization/base_config.py +0 -216
  556. sglang-0.5.3rc2/sglang/srt/layers/quantization/compressed_tensors/compressed_tensors.py +0 -667
  557. sglang-0.5.3rc2/sglang/srt/layers/quantization/compressed_tensors/compressed_tensors_moe.py +0 -692
  558. sglang-0.5.3rc2/sglang/srt/layers/quantization/compressed_tensors/schemes/__init__.py +0 -13
  559. sglang-0.5.3rc2/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_w8a16_fp8.py +0 -153
  560. sglang-0.5.3rc2/sglang/srt/layers/quantization/deep_gemm_wrapper/compile_utils.py +0 -241
  561. sglang-0.5.3rc2/sglang/srt/layers/quantization/deep_gemm_wrapper/configurer.py +0 -24
  562. sglang-0.5.3rc2/sglang/srt/layers/quantization/deep_gemm_wrapper/entrypoint.py +0 -119
  563. sglang-0.5.3rc2/sglang/srt/layers/quantization/fp8.py +0 -1240
  564. sglang-0.5.3rc2/sglang/srt/layers/quantization/fp8_kernel.py +0 -1806
  565. sglang-0.5.3rc2/sglang/srt/layers/quantization/fp8_utils.py +0 -834
  566. sglang-0.5.3rc2/sglang/srt/layers/quantization/fpgemm_fp8.py +0 -203
  567. sglang-0.5.3rc2/sglang/srt/layers/quantization/gptq.py +0 -1097
  568. sglang-0.5.3rc2/sglang/srt/layers/quantization/int8_kernel.py +0 -425
  569. sglang-0.5.3rc2/sglang/srt/layers/quantization/marlin_utils.py +0 -808
  570. sglang-0.5.3rc2/sglang/srt/layers/quantization/modelopt_quant.py +0 -1510
  571. sglang-0.5.3rc2/sglang/srt/layers/quantization/mxfp4.py +0 -870
  572. sglang-0.5.3rc2/sglang/srt/layers/quantization/petit.py +0 -252
  573. sglang-0.5.3rc2/sglang/srt/layers/quantization/quark/quark.py +0 -390
  574. sglang-0.5.3rc2/sglang/srt/layers/quantization/quark/quark_moe.py +0 -215
  575. sglang-0.5.3rc2/sglang/srt/layers/quantization/quark/schemes/quark_w4a4_mxfp4.py +0 -137
  576. sglang-0.5.3rc2/sglang/srt/layers/quantization/unquant.py +0 -468
  577. sglang-0.5.3rc2/sglang/srt/layers/quantization/utils.py +0 -564
  578. sglang-0.5.3rc2/sglang/srt/layers/quantization/w4afp8.py +0 -342
  579. sglang-0.5.3rc2/sglang/srt/layers/quantization/w8a8_int8.py +0 -1046
  580. sglang-0.5.3rc2/sglang/srt/layers/radix_attention.py +0 -116
  581. sglang-0.5.3rc2/sglang/srt/layers/rotary_embedding.py +0 -2064
  582. sglang-0.5.3rc2/sglang/srt/layers/sampler.py +0 -486
  583. sglang-0.5.3rc2/sglang/srt/layers/utils.py +0 -59
  584. sglang-0.5.3rc2/sglang/srt/layers/vocab_parallel_embedding.py +0 -571
  585. sglang-0.5.3rc2/sglang/srt/lora/backend/triton_backend.py +0 -182
  586. sglang-0.5.3rc2/sglang/srt/lora/lora_manager.py +0 -451
  587. sglang-0.5.3rc2/sglang/srt/lora/lora_registry.py +0 -207
  588. sglang-0.5.3rc2/sglang/srt/lora/mem_pool.py +0 -309
  589. sglang-0.5.3rc2/sglang/srt/lora/triton_ops/chunked_sgmv_expand.py +0 -214
  590. sglang-0.5.3rc2/sglang/srt/lora/triton_ops/chunked_sgmv_shrink.py +0 -174
  591. sglang-0.5.3rc2/sglang/srt/managers/cache_controller.py +0 -789
  592. sglang-0.5.3rc2/sglang/srt/managers/data_parallel_controller.py +0 -410
  593. sglang-0.5.3rc2/sglang/srt/managers/detokenizer_manager.py +0 -303
  594. sglang-0.5.3rc2/sglang/srt/managers/io_struct.py +0 -1441
  595. sglang-0.5.3rc2/sglang/srt/managers/mm_utils.py +0 -812
  596. sglang-0.5.3rc2/sglang/srt/managers/multi_tokenizer_mixin.py +0 -583
  597. sglang-0.5.3rc2/sglang/srt/managers/overlap_utils.py +0 -53
  598. sglang-0.5.3rc2/sglang/srt/managers/schedule_batch.py +0 -2136
  599. sglang-0.5.3rc2/sglang/srt/managers/schedule_policy.py +0 -697
  600. sglang-0.5.3rc2/sglang/srt/managers/scheduler.py +0 -2890
  601. sglang-0.5.3rc2/sglang/srt/managers/scheduler_metrics_mixin.py +0 -323
  602. sglang-0.5.3rc2/sglang/srt/managers/scheduler_output_processor_mixin.py +0 -777
  603. sglang-0.5.3rc2/sglang/srt/managers/scheduler_profiler_mixin.py +0 -299
  604. sglang-0.5.3rc2/sglang/srt/managers/scheduler_update_weights_mixin.py +0 -162
  605. sglang-0.5.3rc2/sglang/srt/managers/tokenizer_communicator_mixin.py +0 -675
  606. sglang-0.5.3rc2/sglang/srt/managers/tokenizer_manager.py +0 -1887
  607. sglang-0.5.3rc2/sglang/srt/managers/tp_worker.py +0 -376
  608. sglang-0.5.3rc2/sglang/srt/managers/tp_worker_overlap_thread.py +0 -311
  609. sglang-0.5.3rc2/sglang/srt/managers/utils.py +0 -98
  610. sglang-0.5.3rc2/sglang/srt/mem_cache/allocator.py +0 -575
  611. sglang-0.5.3rc2/sglang/srt/mem_cache/allocator_ascend.py +0 -161
  612. sglang-0.5.3rc2/sglang/srt/mem_cache/base_prefix_cache.py +0 -109
  613. sglang-0.5.3rc2/sglang/srt/mem_cache/chunk_cache.py +0 -107
  614. sglang-0.5.3rc2/sglang/srt/mem_cache/evict_policy.py +0 -23
  615. sglang-0.5.3rc2/sglang/srt/mem_cache/hicache_storage.py +0 -265
  616. sglang-0.5.3rc2/sglang/srt/mem_cache/hiradix_cache.py +0 -936
  617. sglang-0.5.3rc2/sglang/srt/mem_cache/memory_pool.py +0 -1621
  618. sglang-0.5.3rc2/sglang/srt/mem_cache/memory_pool_host.py +0 -756
  619. sglang-0.5.3rc2/sglang/srt/mem_cache/multimodal_cache.py +0 -68
  620. sglang-0.5.3rc2/sglang/srt/mem_cache/radix_cache.py +0 -723
  621. sglang-0.5.3rc2/sglang/srt/mem_cache/radix_cache_cpp.py +0 -232
  622. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/aibrix_kvcache/aibrix_kvcache_storage.py +0 -151
  623. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/aibrix_kvcache/unit_test.py +0 -109
  624. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/backend_factory.py +0 -223
  625. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/eic/eic_storage.py +0 -778
  626. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/hf3fs/hf3fs_client.py +0 -164
  627. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/hf3fs/mini_3fs_metadata_server.py +0 -470
  628. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/hf3fs/storage_hf3fs.py +0 -638
  629. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/lmcache/lmc_radix_cache.py +0 -284
  630. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/mooncake_store/mooncake_store.py +0 -438
  631. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/nixl/hicache_nixl.py +0 -257
  632. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/nixl/nixl_utils.py +0 -204
  633. sglang-0.5.3rc2/sglang/srt/mem_cache/storage/nixl/test_hicache_nixl_storage.py +0 -255
  634. sglang-0.5.3rc2/sglang/srt/mem_cache/swa_radix_cache.py +0 -1014
  635. sglang-0.5.3rc2/sglang/srt/metrics/collector.py +0 -940
  636. sglang-0.5.3rc2/sglang/srt/metrics/func_timer.py +0 -101
  637. sglang-0.5.3rc2/sglang/srt/model_executor/cuda_graph_runner.py +0 -875
  638. sglang-0.5.3rc2/sglang/srt/model_executor/forward_batch_info.py +0 -1081
  639. sglang-0.5.3rc2/sglang/srt/model_executor/model_runner.py +0 -2188
  640. sglang-0.5.3rc2/sglang/srt/model_executor/npu_graph_runner.py +0 -101
  641. sglang-0.5.3rc2/sglang/srt/model_loader/__init__.py +0 -40
  642. sglang-0.5.3rc2/sglang/srt/model_loader/loader.py +0 -1698
  643. sglang-0.5.3rc2/sglang/srt/model_loader/utils.py +0 -119
  644. sglang-0.5.3rc2/sglang/srt/model_loader/weight_utils.py +0 -1184
  645. sglang-0.5.3rc2/sglang/srt/models/apertus.py +0 -686
  646. sglang-0.5.3rc2/sglang/srt/models/arcee.py +0 -532
  647. sglang-0.5.3rc2/sglang/srt/models/bailing_moe.py +0 -1028
  648. sglang-0.5.3rc2/sglang/srt/models/bailing_moe_nextn.py +0 -168
  649. sglang-0.5.3rc2/sglang/srt/models/bert.py +0 -498
  650. sglang-0.5.3rc2/sglang/srt/models/deepseek_nextn.py +0 -175
  651. sglang-0.5.3rc2/sglang/srt/models/deepseek_v2.py +0 -3421
  652. sglang-0.5.3rc2/sglang/srt/models/dots_ocr.py +0 -173
  653. sglang-0.5.3rc2/sglang/srt/models/dots_vlm.py +0 -174
  654. sglang-0.5.3rc2/sglang/srt/models/dots_vlm_vit.py +0 -337
  655. sglang-0.5.3rc2/sglang/srt/models/falcon_h1.py +0 -576
  656. sglang-0.5.3rc2/sglang/srt/models/gemma3_mm.py +0 -444
  657. sglang-0.5.3rc2/sglang/srt/models/gemma3n_mm.py +0 -534
  658. sglang-0.5.3rc2/sglang/srt/models/glm4_moe.py +0 -1083
  659. sglang-0.5.3rc2/sglang/srt/models/glm4_moe_nextn.py +0 -168
  660. sglang-0.5.3rc2/sglang/srt/models/glm4v.py +0 -642
  661. sglang-0.5.3rc2/sglang/srt/models/glm4v_moe.py +0 -400
  662. sglang-0.5.3rc2/sglang/srt/models/gpt_oss.py +0 -1181
  663. sglang-0.5.3rc2/sglang/srt/models/grok.py +0 -1132
  664. sglang-0.5.3rc2/sglang/srt/models/hunyuan.py +0 -819
  665. sglang-0.5.3rc2/sglang/srt/models/interns1.py +0 -293
  666. sglang-0.5.3rc2/sglang/srt/models/kimi_vl.py +0 -313
  667. sglang-0.5.3rc2/sglang/srt/models/kimi_vl_moonvit.py +0 -639
  668. sglang-0.5.3rc2/sglang/srt/models/llama.py +0 -753
  669. sglang-0.5.3rc2/sglang/srt/models/llama_eagle3.py +0 -266
  670. sglang-0.5.3rc2/sglang/srt/models/longcat_flash.py +0 -1026
  671. sglang-0.5.3rc2/sglang/srt/models/longcat_flash_nextn.py +0 -699
  672. sglang-0.5.3rc2/sglang/srt/models/mimo.py +0 -171
  673. sglang-0.5.3rc2/sglang/srt/models/mimo_mtp.py +0 -204
  674. sglang-0.5.3rc2/sglang/srt/models/minicpmo.py +0 -1914
  675. sglang-0.5.3rc2/sglang/srt/models/mixtral.py +0 -480
  676. sglang-0.5.3rc2/sglang/srt/models/mllama.py +0 -1062
  677. sglang-0.5.3rc2/sglang/srt/models/mllama4.py +0 -1001
  678. sglang-0.5.3rc2/sglang/srt/models/olmo2.py +0 -413
  679. sglang-0.5.3rc2/sglang/srt/models/opt.py +0 -637
  680. sglang-0.5.3rc2/sglang/srt/models/phi.py +0 -321
  681. sglang-0.5.3rc2/sglang/srt/models/phi4mm.py +0 -538
  682. sglang-0.5.3rc2/sglang/srt/models/phimoe.py +0 -560
  683. sglang-0.5.3rc2/sglang/srt/models/pixtral.py +0 -463
  684. sglang-0.5.3rc2/sglang/srt/models/qwen.py +0 -356
  685. sglang-0.5.3rc2/sglang/srt/models/qwen2.py +0 -646
  686. sglang-0.5.3rc2/sglang/srt/models/qwen2_5_vl.py +0 -671
  687. sglang-0.5.3rc2/sglang/srt/models/qwen2_audio.py +0 -201
  688. sglang-0.5.3rc2/sglang/srt/models/qwen2_moe.py +0 -839
  689. sglang-0.5.3rc2/sglang/srt/models/qwen2_vl.py +0 -609
  690. sglang-0.5.3rc2/sglang/srt/models/qwen3.py +0 -538
  691. sglang-0.5.3rc2/sglang/srt/models/qwen3_moe.py +0 -924
  692. sglang-0.5.3rc2/sglang/srt/models/qwen3_next.py +0 -1069
  693. sglang-0.5.3rc2/sglang/srt/models/qwen3_next_mtp.py +0 -112
  694. sglang-0.5.3rc2/sglang/srt/models/qwen3_vl.py +0 -787
  695. sglang-0.5.3rc2/sglang/srt/models/qwen3_vl_moe.py +0 -471
  696. sglang-0.5.3rc2/sglang/srt/models/roberta.py +0 -286
  697. sglang-0.5.3rc2/sglang/srt/models/sarashina2_vision.py +0 -269
  698. sglang-0.5.3rc2/sglang/srt/models/step3_vl.py +0 -1005
  699. sglang-0.5.3rc2/sglang/srt/models/utils.py +0 -51
  700. sglang-0.5.3rc2/sglang/srt/models/vila.py +0 -306
  701. sglang-0.5.3rc2/sglang/srt/multimodal/processors/base_processor.py +0 -661
  702. sglang-0.5.3rc2/sglang/srt/multimodal/processors/deepseek_vl_v2.py +0 -65
  703. sglang-0.5.3rc2/sglang/srt/multimodal/processors/dots_vlm.py +0 -98
  704. sglang-0.5.3rc2/sglang/srt/multimodal/processors/glm4v.py +0 -132
  705. sglang-0.5.3rc2/sglang/srt/multimodal/processors/internvl.py +0 -279
  706. sglang-0.5.3rc2/sglang/srt/multimodal/processors/janus_pro.py +0 -45
  707. sglang-0.5.3rc2/sglang/srt/multimodal/processors/mllama4.py +0 -57
  708. sglang-0.5.3rc2/sglang/srt/multimodal/processors/phi4mm.py +0 -101
  709. sglang-0.5.3rc2/sglang/srt/multimodal/processors/qwen_vl.py +0 -298
  710. sglang-0.5.3rc2/sglang/srt/multimodal/processors/step3_vl.py +0 -517
  711. sglang-0.5.3rc2/sglang/srt/multimodal/processors/vila.py +0 -69
  712. sglang-0.5.3rc2/sglang/srt/offloader.py +0 -572
  713. sglang-0.5.3rc2/sglang/srt/parser/conversation.py +0 -1040
  714. sglang-0.5.3rc2/sglang/srt/parser/reasoning_parser.py +0 -309
  715. sglang-0.5.3rc2/sglang/srt/sampling/custom_logit_processor.py +0 -53
  716. sglang-0.5.3rc2/sglang/srt/sampling/sampling_batch_info.py +0 -410
  717. sglang-0.5.3rc2/sglang/srt/sampling/sampling_params.py +0 -172
  718. sglang-0.5.3rc2/sglang/srt/server_args.py +0 -3329
  719. sglang-0.5.3rc2/sglang/srt/server_args_config_parser.py +0 -146
  720. sglang-0.5.3rc2/sglang/srt/single_batch_overlap.py +0 -151
  721. sglang-0.5.3rc2/sglang/srt/speculative/build_eagle_tree.py +0 -427
  722. sglang-0.5.3rc2/sglang/srt/speculative/eagle_draft_cuda_graph_runner.py +0 -356
  723. sglang-0.5.3rc2/sglang/srt/speculative/eagle_draft_extend_cuda_graph_runner.py +0 -393
  724. sglang-0.5.3rc2/sglang/srt/speculative/eagle_info.py +0 -747
  725. sglang-0.5.3rc2/sglang/srt/speculative/eagle_worker.py +0 -1183
  726. sglang-0.5.3rc2/sglang/srt/speculative/ngram_utils.py +0 -428
  727. sglang-0.5.3rc2/sglang/srt/speculative/ngram_worker.py +0 -245
  728. sglang-0.5.3rc2/sglang/srt/speculative/spec_info.py +0 -79
  729. sglang-0.5.3rc2/sglang/srt/speculative/spec_utils.py +0 -606
  730. sglang-0.5.3rc2/sglang/srt/speculative/standalone_worker.py +0 -109
  731. sglang-0.5.3rc2/sglang/srt/tokenizer/tiktoken_tokenizer.py +0 -166
  732. sglang-0.5.3rc2/sglang/srt/two_batch_overlap.py +0 -992
  733. sglang-0.5.3rc2/sglang/srt/utils/__init__.py +0 -2
  734. sglang-0.5.3rc2/sglang/srt/utils/common.py +0 -3385
  735. sglang-0.5.3rc2/sglang/srt/utils/hf_transformers_utils.py +0 -488
  736. sglang-0.5.3rc2/sglang/test/attention/__init__.py +0 -0
  737. sglang-0.5.3rc2/sglang/test/attention/test_flashattn_backend.py +0 -350
  738. sglang-0.5.3rc2/sglang/test/attention/test_flashattn_mla_backend.py +0 -285
  739. sglang-0.5.3rc2/sglang/test/attention/test_prefix_chunk_info.py +0 -226
  740. sglang-0.5.3rc2/sglang/test/attention/test_trtllm_mla_backend.py +0 -1268
  741. sglang-0.5.3rc2/sglang/test/few_shot_gsm8k_engine.py +0 -144
  742. sglang-0.5.3rc2/sglang/test/run_eval.py +0 -197
  743. sglang-0.5.3rc2/sglang/test/runners.py +0 -874
  744. sglang-0.5.3rc2/sglang/test/send_one.py +0 -158
  745. sglang-0.5.3rc2/sglang/test/simple_eval_common.py +0 -475
  746. sglang-0.5.3rc2/sglang/test/simple_eval_gpqa.py +0 -95
  747. sglang-0.5.3rc2/sglang/test/simple_eval_humaneval.py +0 -133
  748. sglang-0.5.3rc2/sglang/test/test_block_fp8.py +0 -661
  749. sglang-0.5.3rc2/sglang/test/test_block_fp8_deep_gemm_blackwell.py +0 -252
  750. sglang-0.5.3rc2/sglang/test/test_block_fp8_ep.py +0 -358
  751. sglang-0.5.3rc2/sglang/test/test_cutlass_moe.py +0 -299
  752. sglang-0.5.3rc2/sglang/test/test_cutlass_w4a8_moe.py +0 -295
  753. sglang-0.5.3rc2/sglang/test/test_deterministic.py +0 -297
  754. sglang-0.5.3rc2/sglang/test/test_disaggregation_utils.py +0 -77
  755. sglang-0.5.3rc2/sglang/test/test_marlin_moe.py +0 -286
  756. sglang-0.5.3rc2/sglang/test/test_utils.py +0 -1784
  757. sglang-0.5.3rc2/sglang/version.py +0 -1
  758. sglang-0.5.3rc2/sglang.egg-info/PKG-INFO +0 -378
  759. sglang-0.5.3rc2/sglang.egg-info/SOURCES.txt +0 -1018
  760. sglang-0.5.3rc2/sglang.egg-info/requires.txt +0 -93
  761. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/LICENSE +0 -0
  762. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/setup.cfg +0 -0
  763. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/__init__.py +0 -0
  764. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/bench_offline_throughput.py +0 -0
  765. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/eval/llama3_eval.py +0 -0
  766. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/eval/loogle_eval.py +0 -0
  767. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/backend/anthropic.py +0 -0
  768. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/backend/base_backend.py +0 -0
  769. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/backend/litellm.py +0 -0
  770. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/backend/openai.py +0 -0
  771. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/backend/runtime_endpoint.py +0 -0
  772. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/backend/vertexai.py +0 -0
  773. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/chat_template.py +0 -0
  774. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/choices.py +0 -0
  775. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/compiler.py +0 -0
  776. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/lang/tracer.py +0 -0
  777. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/batch_invariant_ops/__init__.py +0 -0
  778. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/chatglm.py +0 -0
  779. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/dbrx.py +0 -0
  780. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/device_config.py +0 -0
  781. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/dots_ocr.py +0 -0
  782. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/exaone.py +0 -0
  783. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/internvl.py +0 -0
  784. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/janus_pro.py +0 -0
  785. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/kimi_vl.py +0 -0
  786. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/kimi_vl_moonvit.py +0 -0
  787. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/longcat_flash.py +0 -0
  788. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/step3_vl.py +0 -0
  789. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/update_config.py +0 -0
  790. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/configs/utils.py +0 -0
  791. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/connector/__init__.py +0 -0
  792. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/connector/base_connector.py +0 -0
  793. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/connector/redis.py +0 -0
  794. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/connector/s3.py +0 -0
  795. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/connector/serde/__init__.py +0 -0
  796. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/connector/serde/safe_serde.py +0 -0
  797. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/connector/serde/serde.py +0 -0
  798. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/connector/utils.py +0 -0
  799. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/constants.py +0 -0
  800. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/constrained/outlines_jump_forward.py +0 -0
  801. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/constrained/triton_ops/bitmask_ops.py +0 -0
  802. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/custom_op.py +0 -0
  803. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/debug_utils/__init__.py +0 -0
  804. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/debug_utils/dump_comparator.py +0 -0
  805. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/debug_utils/dump_loader.py +0 -0
  806. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/debug_utils/dumper.py +0 -0
  807. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/debug_utils/text_comparator.py +0 -0
  808. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/ascend/__init__.py +0 -0
  809. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/ascend/conn.py +0 -0
  810. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/base/__init__.py +0 -0
  811. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/common/__init__.py +0 -0
  812. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/common/utils.py +0 -0
  813. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/decode_schedule_batch_mixin.py +0 -0
  814. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/fake/__init__.py +0 -0
  815. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/kv_events.py +0 -0
  816. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/mini_lb.py +0 -0
  817. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/mooncake/__init__.py +0 -0
  818. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/mooncake/transfer_engine.py +0 -0
  819. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/nixl/__init__.py +0 -0
  820. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/disaggregation/utils.py +0 -0
  821. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/__init__.py +0 -0
  822. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/communication_op.py +0 -0
  823. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/device_communicators/cuda_wrapper.py +0 -0
  824. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/device_communicators/custom_all_reduce_utils.py +0 -0
  825. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/device_communicators/hpu_communicator.py +0 -0
  826. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/device_communicators/npu_communicator.py +0 -0
  827. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/device_communicators/pynccl_wrapper.py +0 -0
  828. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/device_communicators/quick_all_reduce.py +0 -0
  829. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/device_communicators/shm_broadcast.py +0 -0
  830. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/device_communicators/xpu_communicator.py +0 -0
  831. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/distributed/utils.py +0 -0
  832. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/entrypoints/EngineBase.py +0 -0
  833. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/entrypoints/openai/__init__.py +0 -0
  834. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/entrypoints/openai/serving_embedding.py +0 -0
  835. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/entrypoints/openai/serving_rerank.py +0 -0
  836. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/entrypoints/openai/serving_score.py +0 -0
  837. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/entrypoints/openai/tool_server.py +0 -0
  838. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/entrypoints/openai/usage_processor.py +0 -0
  839. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/entrypoints/openai/utils.py +0 -0
  840. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/entrypoints/tool.py +0 -0
  841. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/eplb/__init__.py +0 -0
  842. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/eplb/eplb_algorithms/deepseek_vec.py +0 -0
  843. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/eplb/eplb_manager.py +0 -0
  844. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/eplb/eplb_simulator/__init__.py +0 -0
  845. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/eplb/eplb_simulator/reader.py +0 -0
  846. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/eplb/expert_location.py +0 -0
  847. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/core_types.py +0 -0
  848. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/deepseekv31_detector.py +0 -0
  849. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/deepseekv3_detector.py +0 -0
  850. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/ebnf_composer.py +0 -0
  851. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/kimik2_detector.py +0 -0
  852. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/llama32_detector.py +0 -0
  853. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/mistral_detector.py +0 -0
  854. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/pythonic_detector.py +0 -0
  855. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/qwen25_detector.py +0 -0
  856. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/qwen3_coder_detector.py +0 -0
  857. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/function_call/step3_detector.py +0 -0
  858. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/grpc/__init__.py +0 -0
  859. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/amx_utils.py +0 -0
  860. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/cutlass_mla_backend.py +0 -0
  861. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/dual_chunk_flashattention_backend.py +0 -0
  862. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/fla/chunk_delta_h.py +0 -0
  863. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/fla/chunk_scaled_dot_kkt.py +0 -0
  864. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/fla/cumsum.py +0 -0
  865. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/fla/fused_recurrent.py +0 -0
  866. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/fla/fused_sigmoid_gating_recurrent.py +0 -0
  867. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/fla/l2norm.py +0 -0
  868. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/fla/op.py +0 -0
  869. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/fla/solve_tril.py +0 -0
  870. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/mamba/ops/__init__.py +0 -0
  871. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/mamba/ops/layernorm_gated.py +0 -0
  872. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/mamba/ops/mamba_ssm.py +0 -0
  873. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/merge_state.py +0 -0
  874. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/nsa/dequant_k_cache.py +0 -0
  875. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/nsa/index_buf_accessor.py +0 -0
  876. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/nsa/quant_k_cache.py +0 -0
  877. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/nsa/tilelang_kernel.py +0 -0
  878. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/nsa/transform_index.py +0 -0
  879. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/tbo_backend.py +0 -0
  880. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/torch_flex_backend.py +0 -0
  881. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/torch_native_backend.py +0 -0
  882. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/triton_ops/decode_attention.py +0 -0
  883. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/triton_ops/merge_state.py +0 -0
  884. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/triton_ops/prefill_attention.py +0 -0
  885. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/triton_ops/rocm_mla_decode_rope.py +0 -0
  886. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/vision_utils.py +0 -0
  887. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/wave_backend.py +0 -0
  888. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/wave_ops/decode_attention.py +0 -0
  889. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/wave_ops/extend_attention.py +0 -0
  890. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/attention/wave_ops/prefill_attention.py +0 -0
  891. {sglang-0.5.3rc2/sglang/srt/layers/quantization → sglang-0.5.4.post1/sglang/srt/layers}/deep_gemm_wrapper/__init__.py +0 -0
  892. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/elementwise.py +0 -0
  893. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/flashinfer_comm_fusion.py +0 -0
  894. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/model_parallel.py +0 -0
  895. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/__init__.py +0 -0
  896. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/cutlass_moe_params.py +0 -0
  897. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/ep_moe/__init__.py +0 -0
  898. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_native.py +0 -0
  899. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/__init__.py +0 -0
  900. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=14336,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  901. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=14336,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  902. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=1792,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  903. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=1792,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  904. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=3072,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  905. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=3072,device_name=NVIDIA_H100_80GB_HBM3,dtype=int8_w8a16.json +0 -0
  906. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=3072,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  907. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=3584,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  908. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=3584,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  909. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=7168,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  910. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=1,N=7168,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  911. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=144,N=512,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  912. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=1024,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  913. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=1024,device_name=NVIDIA_H200.json +0 -0
  914. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=1344,device_name=NVIDIA_A100-SXM4-40GB.json +0 -0
  915. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=1344,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  916. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=1344,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  917. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=14336,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  918. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=14336,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  919. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=1792,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  920. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=1792,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  921. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=2048,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  922. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=2688,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  923. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=2688,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  924. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=3072,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  925. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=3072,device_name=NVIDIA_H100_80GB_HBM3,dtype=int8_w8a16.json +0 -0
  926. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=3200,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  927. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=3584,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  928. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=3584,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  929. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=6400,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  930. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=7168,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a16.json +0 -0
  931. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=7168,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  932. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=int8_w8a16.json +0 -0
  933. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=800,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  934. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=160,N=192,device_name=NVIDIA_A800-SXM4-80GB.json +0 -0
  935. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=20,N=2048,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  936. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=24,N=1024,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  937. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=128,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  938. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=128,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8.json +0 -0
  939. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=128,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  940. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=128,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8.json +0 -0
  941. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=128,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  942. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=128,device_name=NVIDIA_H20,block_shape=[128, 128].json +0 -0
  943. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=128,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  944. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=128,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  945. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=256,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  946. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=256,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  947. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=256,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  948. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=256,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  949. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=256,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  950. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=256,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  951. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=64,device_name=NVIDIA_A800-SXM4-80GB.json +0 -0
  952. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=64,device_name=NVIDIA_L20,dtype=int8_w8a8.json +0 -0
  953. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=256,N=64,device_name=NVIDIA_L40S,dtype=int8_w8a8.json +0 -0
  954. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=1024,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  955. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=1280,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  956. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=1280,device_name=NVIDIA_A800-SXM4-80GB.json +0 -0
  957. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=1280,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  958. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=1280,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  959. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=1280,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  960. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=1280,device_name=NVIDIA_H200.json +0 -0
  961. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=2560,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  962. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=2560,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  963. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=2560,device_name=NVIDIA_H200.json +0 -0
  964. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=320,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  965. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=320,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  966. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=320,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  967. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=320,device_name=NVIDIA_H200.json +0 -0
  968. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=512,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  969. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=640,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  970. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=640,device_name=NVIDIA_A800-SXM4-80GB.json +0 -0
  971. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=640,device_name=NVIDIA_GeForce_RTX_4090,dtype=fp8_w8a8.json +0 -0
  972. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=640,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  973. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=640,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  974. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=640,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  975. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=640,device_name=NVIDIA_H200.json +0 -0
  976. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=AMD_Instinct_MI300X.json +0 -0
  977. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=AMD_Instinct_MI325X.json +0 -0
  978. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=AMD_Radeon_Graphics.json +0 -0
  979. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  980. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  981. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=NVIDIA_H200.json +0 -0
  982. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=AMD_Instinct_MI300X.json +0 -0
  983. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=AMD_Instinct_MI325X.json +0 -0
  984. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=AMD_Radeon_Graphics.json +0 -0
  985. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=NVIDIA_A100-SXM4-40GB.json +0 -0
  986. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  987. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  988. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  989. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=NVIDIA_H200.json +0 -0
  990. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=2048,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  991. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=2048,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  992. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=2048,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  993. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=2048,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  994. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=2048,device_name=NVIDIA_H200.json +0 -0
  995. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=AMD_Instinct_MI300X.json +0 -0
  996. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=AMD_Instinct_MI325X.json +0 -0
  997. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=AMD_Radeon_Graphics.json +0 -0
  998. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_A100-SXM4-40GB.json +0 -0
  999. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  1000. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_GeForce_RTX_4090,dtype=fp8_w8a8.json +0 -0
  1001. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  1002. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1003. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  1004. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_H200.json +0 -0
  1005. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_L40S.json +0 -0
  1006. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=4096,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8.json +0 -0
  1007. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=4096,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8.json +0 -0
  1008. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=4096,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8.json +0 -0
  1009. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=4096,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  1010. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=4096,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  1011. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=4096,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1012. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=4096,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  1013. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=4096,device_name=NVIDIA_H200.json +0 -0
  1014. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=AMD_Instinct_MI300X.json +0 -0
  1015. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=AMD_Instinct_MI325X.json +0 -0
  1016. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=AMD_Radeon_Graphics.json +0 -0
  1017. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  1018. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  1019. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1020. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  1021. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=NVIDIA_H200.json +0 -0
  1022. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=8192,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8.json +0 -0
  1023. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=8192,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8.json +0 -0
  1024. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=8192,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8.json +0 -0
  1025. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=8192,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8.json +0 -0
  1026. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=8192,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  1027. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=192,device_name=NVIDIA_A800-SXM4-80GB.json +0 -0
  1028. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=192,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1029. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=192,device_name=NVIDIA_H20.json +0 -0
  1030. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=192,device_name=NVIDIA_H200.json +0 -0
  1031. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=384,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1032. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=384,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1033. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=384,device_name=NVIDIA_H20.json +0 -0
  1034. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=384,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1035. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=384,device_name=NVIDIA_H200.json +0 -0
  1036. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=512,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1037. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=768,device_name=NVIDIA_A800-SXM4-80GB.json +0 -0
  1038. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=768,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1039. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=768,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1040. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=768,device_name=NVIDIA_H20.json +0 -0
  1041. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=768,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1042. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=768,device_name=NVIDIA_H200.json +0 -0
  1043. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=96,device_name=NVIDIA_H20.json +0 -0
  1044. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=129,N=352,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8.json +0 -0
  1045. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=160,N=320,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8.json +0 -0
  1046. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=161,N=192,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8.json +0 -0
  1047. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=257,N=128,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1048. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=257,N=128,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1049. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=257,N=256,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1050. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=257,N=256,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1051. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=257,N=256,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1052. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=264,N=128,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8.json +0 -0
  1053. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=264,N=256,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1054. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=264,N=256,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1055. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=264,N=256,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1056. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=272,N=128,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8.json +0 -0
  1057. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=272,N=128,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1058. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=272,N=128,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1059. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=272,N=64,device_name=NVIDIA_A800-SXM4-80GB.json +0 -0
  1060. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=288,N=64,device_name=NVIDIA_A800-SXM4-80GB.json +0 -0
  1061. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=8,N=7168,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1062. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_0/E=16,N=1024,device_name=NVIDIA_B200.json +0 -0
  1063. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=128,N=352,device_name=NVIDIA_RTX_6000_Ada_Generation,dtype=fp8_w8a8.json +0 -0
  1064. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=128,N=384,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1065. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=128,N=384,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1066. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=128,N=768,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1067. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=128,N=768,device_name=NVIDIA_H20.json +0 -0
  1068. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=160,N=192,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  1069. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=160,N=320,device_name=NVIDIA_H20-3e.json +0 -0
  1070. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=160,N=384,device_name=NVIDIA_H200,dtype=fp8_w8a8.json +0 -0
  1071. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=160,N=640,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1072. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=257,N=128,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1073. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=257,N=128,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1074. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=257,N=256,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1075. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=257,N=256,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1076. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=257,N=256,device_name=NVIDIA_H20-3e,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1077. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=257,N=256,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1078. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=384,N=128,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1079. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=384,N=128,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1080. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=384,N=256,device_name=NVIDIA_H20-3e,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1081. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=385,N=128,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1082. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=385,N=128,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1083. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=8,N=7168,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1084. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=128,N=352,device_name=NVIDIA_RTX_5880_Ada_Generation,dtype=fp8_w8a8.json +0 -0
  1085. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=128,N=384,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1086. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=129,N=352,device_name=NVIDIA_B200,dtype=fp8_w8a8.json +0 -0
  1087. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=129,N=352,device_name=NVIDIA_RTX_PRO_6000_Blackwell_Max-Q_Workstation_Edition,dtype=fp8_w8a8.json +0 -0
  1088. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=129,N=704,device_name=NVIDIA_B200,dtype=fp8_w8a8.json +0 -0
  1089. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=161,N=384,device_name=NVIDIA_RTX_PRO_6000_Blackwell_Max-Q_Workstation_Edition,dtype=fp8_w8a8.json +0 -0
  1090. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=256,N=256,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1091. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=256,N=256,device_name=NVIDIA_H800,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1092. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=256,N=512,device_name=NVIDIA_H20.json +0 -0
  1093. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=257,N=128,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1094. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=257,N=64,device_name=NVIDIA_A100-SXM4-80GB.json +0 -0
  1095. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=384,N=256,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1096. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=128,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1097. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=128,device_name=NVIDIA_H20-3e.json +0 -0
  1098. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=128,device_name=NVIDIA_H200.json +0 -0
  1099. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=128,device_name=NVIDIA_H800,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1100. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=256,device_name=NVIDIA_B200.json +0 -0
  1101. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=256,device_name=NVIDIA_H20-3e.json +0 -0
  1102. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=256,device_name=NVIDIA_H200.json +0 -0
  1103. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=64,device_name=NVIDIA_H100_80GB_HBM3.json +0 -0
  1104. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=64,device_name=NVIDIA_H200.json +0 -0
  1105. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/fused_moe.py +0 -0
  1106. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/fused_moe_triton_kernels.py +0 -0
  1107. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/fused_moe_triton/moe_align_block_size.py +0 -0
  1108. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/moe_runner/__init__.py +0 -0
  1109. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/moe/moe_runner/base.py +0 -0
  1110. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/multimodal.py +0 -0
  1111. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/parameter.py +0 -0
  1112. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/pooler.py +0 -0
  1113. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/blockwise_int8.py +0 -0
  1114. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_scheme.py +0 -0
  1115. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_w8a8_fp8.py +0 -0
  1116. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_w8a8_int8.py +0 -0
  1117. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/compressed_tensors/utils.py +0 -0
  1118. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=1536,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1119. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=1536,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1120. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=1536,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1121. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=1536,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1122. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=1536,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1123. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1124. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1125. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1126. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1127. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1128. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1129. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1130. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1131. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1132. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2048,K=512,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1133. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2048,K=512,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1134. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2048,K=512,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1135. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2048,K=512,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1136. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2048,K=512,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1137. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2048,K=512,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1138. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2304,K=7168,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1139. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2304,K=7168,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1140. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2304,K=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1141. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2304,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1142. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2304,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1143. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=2304,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1144. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=1536,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1145. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=1536,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1146. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=1536,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1147. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1148. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1149. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1150. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1151. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1152. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1153. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1154. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1155. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=256,K=7168,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1156. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=256,K=7168,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1157. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=256,K=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1158. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=256,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1159. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=256,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1160. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1161. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1162. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1163. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1164. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1165. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1166. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1167. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1168. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1169. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=3072,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1170. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1171. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1172. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1173. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1174. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1175. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1176. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1177. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1178. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1179. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1180. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1181. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=36864,K=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1182. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=36864,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1183. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1184. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1185. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1186. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1187. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1188. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1189. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1190. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1191. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1192. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1193. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1194. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1195. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1196. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1197. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1198. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1199. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1200. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1201. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1202. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1203. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1204. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1205. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1206. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1207. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1208. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1209. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1210. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1211. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1212. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1213. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1214. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1024,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1215. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1024,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1216. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1024,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1217. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1024,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1218. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1024,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1219. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1024,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1220. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1152,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1221. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1152,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1222. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1152,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1223. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1152,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1224. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1152,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1225. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=1152,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1226. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=128,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1227. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=128,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1228. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=128,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1229. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=128,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1230. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=128,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1231. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1232. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1233. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1234. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1235. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1236. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1237. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1238. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1239. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1240. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1241. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1242. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_A100-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1243. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_A800-SXM4-80GB,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1244. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1245. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1246. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1247. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1248. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1249. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1250. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1251. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1252. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1253. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1254. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1255. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1256. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1257. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1258. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1259. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1260. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1261. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=NVIDIA_H100_80GB_HBM3,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1262. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1263. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1264. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1265. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1266. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1267. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1268. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
  1269. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
  1270. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/int8_utils.py +0 -0
  1271. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/kv_cache.py +0 -0
  1272. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/marlin_utils_fp8.py +0 -0
  1273. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/moe_wna16.py +0 -0
  1274. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/mxfp4_tensor.py +0 -0
  1275. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/petit_utils.py +0 -0
  1276. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/qoq.py +0 -0
  1277. {sglang-0.5.3rc2/sglang/srt/layers/quantization/compressed_tensors → sglang-0.5.4.post1/sglang/srt/layers/quantization/quark}/__init__.py +0 -0
  1278. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/quark/schemes/__init__.py +0 -0
  1279. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/quark/schemes/quark_scheme.py +0 -0
  1280. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/quark/utils.py +0 -0
  1281. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/rocm_mxfp4_utils.py +0 -0
  1282. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/quantization/w8a8_fp8.py +0 -0
  1283. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/rocm_linear_utils.py +0 -0
  1284. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/layers/torchao_utils.py +0 -0
  1285. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/backend/base_backend.py +0 -0
  1286. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/backend/chunked_backend.py +0 -0
  1287. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/layers.py +0 -0
  1288. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/lora.py +0 -0
  1289. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/lora_config.py +0 -0
  1290. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/triton_ops/__init__.py +0 -0
  1291. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/triton_ops/gate_up_lora_b.py +0 -0
  1292. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/triton_ops/qkv_lora_b.py +0 -0
  1293. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/triton_ops/sgemm_lora_a.py +0 -0
  1294. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/triton_ops/sgemm_lora_b.py +0 -0
  1295. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/lora/utils.py +0 -0
  1296. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/managers/async_dynamic_batch_tokenizer.py +0 -0
  1297. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/managers/configure_logging.py +0 -0
  1298. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/managers/disagg_service.py +0 -0
  1299. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/managers/multimodal_processor.py +0 -0
  1300. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/managers/scheduler_input_blocker.py +0 -0
  1301. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/managers/scheduler_recv_skipper.py +0 -0
  1302. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/managers/session_controller.py +0 -0
  1303. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/managers/template_manager.py +0 -0
  1304. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/mem_cache/cpp_radix_tree/radix_tree.py +0 -0
  1305. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/mem_cache/flush_cache.py +0 -0
  1306. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/mem_cache/storage/__init__.py +0 -0
  1307. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/mem_cache/storage/eic/test_unit.py +0 -0
  1308. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/mem_cache/storage/hf3fs/hf3fs_usrbio_client.py +0 -0
  1309. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/mem_cache/storage/hf3fs/hf3fs_utils.cpp +0 -0
  1310. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/mem_cache/storage/hf3fs/test_hf3fs_utils.py +0 -0
  1311. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/mem_cache/storage/lmcache/unit_test.py +0 -0
  1312. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/mem_cache/storage/mooncake_store/test_mooncake_store.py +0 -0
  1313. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/metrics/startup_func_log_and_timer.py +0 -0
  1314. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/metrics/utils.py +0 -0
  1315. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/model_executor/cpu_graph_runner.py +0 -0
  1316. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/model_loader/remote_instance_weight_loader_utils.py +0 -0
  1317. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/baichuan.py +0 -0
  1318. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/chatglm.py +0 -0
  1319. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/clip.py +0 -0
  1320. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/commandr.py +0 -0
  1321. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/dbrx.py +0 -0
  1322. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/deepseek.py +0 -0
  1323. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/deepseek_janus_pro.py +0 -0
  1324. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/deepseek_vl2.py +0 -0
  1325. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/ernie4.py +0 -0
  1326. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/ernie4_eagle.py +0 -0
  1327. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/exaone.py +0 -0
  1328. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/gemma.py +0 -0
  1329. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/gemma2.py +0 -0
  1330. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/gemma2_reward.py +0 -0
  1331. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/gemma3_causal.py +0 -0
  1332. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/gemma3n_audio.py +0 -0
  1333. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/gemma3n_causal.py +0 -0
  1334. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/glm4.py +0 -0
  1335. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/gpt2.py +0 -0
  1336. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/gpt_bigcode.py +0 -0
  1337. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/granite.py +0 -0
  1338. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/granitemoe.py +0 -0
  1339. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/idefics2.py +0 -0
  1340. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/internlm2.py +0 -0
  1341. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/internlm2_reward.py +0 -0
  1342. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/internvl.py +0 -0
  1343. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/llama4.py +0 -0
  1344. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/llama_classification.py +0 -0
  1345. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/llama_eagle.py +0 -0
  1346. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/llama_embedding.py +0 -0
  1347. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/llama_reward.py +0 -0
  1348. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/llava.py +0 -0
  1349. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/llavavid.py +0 -0
  1350. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/minicpm.py +0 -0
  1351. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/minicpm3.py +0 -0
  1352. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/minicpmv.py +0 -0
  1353. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/mistral.py +0 -0
  1354. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/mixtral_quant.py +0 -0
  1355. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/nemotron_nas.py +0 -0
  1356. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/olmo.py +0 -0
  1357. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/olmoe.py +0 -0
  1358. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/persimmon.py +0 -0
  1359. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/phi3_small.py +0 -0
  1360. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/phi4mm_audio.py +0 -0
  1361. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/phi4mm_utils.py +0 -0
  1362. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/qwen2_classification.py +0 -0
  1363. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/qwen2_eagle.py +0 -0
  1364. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/qwen2_rm.py +0 -0
  1365. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/qwen3_classification.py +0 -0
  1366. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/registry.py +0 -0
  1367. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/siglip.py +0 -0
  1368. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/solar.py +0 -0
  1369. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/stablelm.py +0 -0
  1370. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/starcoder2.py +0 -0
  1371. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/torch_native_llama.py +0 -0
  1372. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/transformers.py +0 -0
  1373. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/xverse.py +0 -0
  1374. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/xverse_moe.py +0 -0
  1375. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/models/yivl.py +0 -0
  1376. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/mm_utils.py +0 -0
  1377. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/clip.py +0 -0
  1378. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/gemma3.py +0 -0
  1379. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/gemma3n.py +0 -0
  1380. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/kimi_vl.py +0 -0
  1381. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/llava.py +0 -0
  1382. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/minicpm.py +0 -0
  1383. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/mlama.py +0 -0
  1384. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/pixtral.py +0 -0
  1385. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/qwen_audio.py +0 -0
  1386. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/multimodal/processors/sarashina2_vision.py +0 -0
  1387. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/operations.py +0 -0
  1388. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/operations_strategy.py +0 -0
  1389. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/parser/code_completion_parser.py +0 -0
  1390. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/parser/harmony_parser.py +0 -0
  1391. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/parser/jinja_template_utils.py +0 -0
  1392. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/sampling/penaltylib/__init__.py +0 -0
  1393. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/sampling/penaltylib/frequency_penalty.py +0 -0
  1394. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/sampling/penaltylib/min_new_tokens.py +0 -0
  1395. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/sampling/penaltylib/orchestrator.py +0 -0
  1396. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/sampling/penaltylib/presence_penalty.py +0 -0
  1397. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/speculative/cpp_ngram/ngram.cpp +0 -0
  1398. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/speculative/cpp_ngram/ngram.h +0 -0
  1399. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/speculative/cpp_ngram/ngram_cache.py +0 -0
  1400. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/speculative/cpp_ngram/ngram_cache_binding.cpp +0 -0
  1401. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/speculative/cpp_ngram/param.h +0 -0
  1402. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/speculative/cpp_ngram/queue.h +0 -0
  1403. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/tracing/trace.py +0 -0
  1404. {sglang-0.5.3rc2/sglang/srt → sglang-0.5.4.post1/sglang/srt/utils}/aio_rwlock.py +0 -0
  1405. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/utils/patch_torch.py +0 -0
  1406. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/utils/poll_based_barrier.py +0 -0
  1407. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/utils/rpd_utils.py +0 -0
  1408. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/utils/slow_rank_detector.py +0 -0
  1409. {sglang-0.5.3rc2/sglang/srt → sglang-0.5.4.post1/sglang/srt/utils}/torch_memory_saver_adapter.py +0 -0
  1410. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/warmup.py +0 -0
  1411. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/weight_sync/tensor_bucket.py +0 -0
  1412. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/srt/weight_sync/utils.py +0 -0
  1413. {sglang-0.5.3rc2/sglang/srt/layers/quantization/quark → sglang-0.5.4.post1/sglang/test}/__init__.py +0 -0
  1414. {sglang-0.5.3rc2/sglang/test → sglang-0.5.4.post1/sglang/test/attention}/__init__.py +0 -0
  1415. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/doc_patch.py +0 -0
  1416. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/few_shot_gsm8k.py +0 -0
  1417. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/get_logits_ut.py +0 -0
  1418. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/simple_eval_math.py +0 -0
  1419. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/simple_eval_mgsm.py +0 -0
  1420. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/simple_eval_mmlu.py +0 -0
  1421. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/simple_eval_mmmu_vlm.py +0 -0
  1422. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/test_activation.py +0 -0
  1423. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/test_custom_ops.py +0 -0
  1424. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/test_deepep_utils.py +0 -0
  1425. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/test_dynamic_grad_mode.py +0 -0
  1426. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/test_fp4_moe.py +0 -0
  1427. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/test_layernorm.py +0 -0
  1428. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/test_marlin_utils.py +0 -0
  1429. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/test/test_programs.py +0 -0
  1430. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang/utils.py +0 -0
  1431. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang.egg-info/dependency_links.txt +0 -0
  1432. {sglang-0.5.3rc2 → sglang-0.5.4.post1}/sglang.egg-info/top_level.txt +0 -0
@@ -0,0 +1,391 @@
1
+ Metadata-Version: 2.4
2
+ Name: sglang
3
+ Version: 0.5.4.post1
4
+ Summary: SGLang is a fast serving framework for large language models and vision language models.
5
+ License: Apache License
6
+ Version 2.0, January 2004
7
+ http://www.apache.org/licenses/
8
+
9
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
10
+
11
+ 1. Definitions.
12
+
13
+ "License" shall mean the terms and conditions for use, reproduction,
14
+ and distribution as defined by Sections 1 through 9 of this document.
15
+
16
+ "Licensor" shall mean the copyright owner or entity authorized by
17
+ the copyright owner that is granting the License.
18
+
19
+ "Legal Entity" shall mean the union of the acting entity and all
20
+ other entities that control, are controlled by, or are under common
21
+ control with that entity. For the purposes of this definition,
22
+ "control" means (i) the power, direct or indirect, to cause the
23
+ direction or management of such entity, whether by contract or
24
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
25
+ outstanding shares, or (iii) beneficial ownership of such entity.
26
+
27
+ "You" (or "Your") shall mean an individual or Legal Entity
28
+ exercising permissions granted by this License.
29
+
30
+ "Source" form shall mean the preferred form for making modifications,
31
+ including but not limited to software source code, documentation
32
+ source, and configuration files.
33
+
34
+ "Object" form shall mean any form resulting from mechanical
35
+ transformation or translation of a Source form, including but
36
+ not limited to compiled object code, generated documentation,
37
+ and conversions to other media types.
38
+
39
+ "Work" shall mean the work of authorship, whether in Source or
40
+ Object form, made available under the License, as indicated by a
41
+ copyright notice that is included in or attached to the work
42
+ (an example is provided in the Appendix below).
43
+
44
+ "Derivative Works" shall mean any work, whether in Source or Object
45
+ form, that is based on (or derived from) the Work and for which the
46
+ editorial revisions, annotations, elaborations, or other modifications
47
+ represent, as a whole, an original work of authorship. For the purposes
48
+ of this License, Derivative Works shall not include works that remain
49
+ separable from, or merely link (or bind by name) to the interfaces of,
50
+ the Work and Derivative Works thereof.
51
+
52
+ "Contribution" shall mean any work of authorship, including
53
+ the original version of the Work and any modifications or additions
54
+ to that Work or Derivative Works thereof, that is intentionally
55
+ submitted to Licensor for inclusion in the Work by the copyright owner
56
+ or by an individual or Legal Entity authorized to submit on behalf of
57
+ the copyright owner. For the purposes of this definition, "submitted"
58
+ means any form of electronic, verbal, or written communication sent
59
+ to the Licensor or its representatives, including but not limited to
60
+ communication on electronic mailing lists, source code control systems,
61
+ and issue tracking systems that are managed by, or on behalf of, the
62
+ Licensor for the purpose of discussing and improving the Work, but
63
+ excluding communication that is conspicuously marked or otherwise
64
+ designated in writing by the copyright owner as "Not a Contribution."
65
+
66
+ "Contributor" shall mean Licensor and any individual or Legal Entity
67
+ on behalf of whom a Contribution has been received by Licensor and
68
+ subsequently incorporated within the Work.
69
+
70
+ 2. Grant of Copyright License. Subject to the terms and conditions of
71
+ this License, each Contributor hereby grants to You a perpetual,
72
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
73
+ copyright license to reproduce, prepare Derivative Works of,
74
+ publicly display, publicly perform, sublicense, and distribute the
75
+ Work and such Derivative Works in Source or Object form.
76
+
77
+ 3. Grant of Patent License. Subject to the terms and conditions of
78
+ this License, each Contributor hereby grants to You a perpetual,
79
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
80
+ (except as stated in this section) patent license to make, have made,
81
+ use, offer to sell, sell, import, and otherwise transfer the Work,
82
+ where such license applies only to those patent claims licensable
83
+ by such Contributor that are necessarily infringed by their
84
+ Contribution(s) alone or by combination of their Contribution(s)
85
+ with the Work to which such Contribution(s) was submitted. If You
86
+ institute patent litigation against any entity (including a
87
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
88
+ or a Contribution incorporated within the Work constitutes direct
89
+ or contributory patent infringement, then any patent licenses
90
+ granted to You under this License for that Work shall terminate
91
+ as of the date such litigation is filed.
92
+
93
+ 4. Redistribution. You may reproduce and distribute copies of the
94
+ Work or Derivative Works thereof in any medium, with or without
95
+ modifications, and in Source or Object form, provided that You
96
+ meet the following conditions:
97
+
98
+ (a) You must give any other recipients of the Work or
99
+ Derivative Works a copy of this License; and
100
+
101
+ (b) You must cause any modified files to carry prominent notices
102
+ stating that You changed the files; and
103
+
104
+ (c) You must retain, in the Source form of any Derivative Works
105
+ that You distribute, all copyright, patent, trademark, and
106
+ attribution notices from the Source form of the Work,
107
+ excluding those notices that do not pertain to any part of
108
+ the Derivative Works; and
109
+
110
+ (d) If the Work includes a "NOTICE" text file as part of its
111
+ distribution, then any Derivative Works that You distribute must
112
+ include a readable copy of the attribution notices contained
113
+ within such NOTICE file, excluding those notices that do not
114
+ pertain to any part of the Derivative Works, in at least one
115
+ of the following places: within a NOTICE text file distributed
116
+ as part of the Derivative Works; within the Source form or
117
+ documentation, if provided along with the Derivative Works; or,
118
+ within a display generated by the Derivative Works, if and
119
+ wherever such third-party notices normally appear. The contents
120
+ of the NOTICE file are for informational purposes only and
121
+ do not modify the License. You may add Your own attribution
122
+ notices within Derivative Works that You distribute, alongside
123
+ or as an addendum to the NOTICE text from the Work, provided
124
+ that such additional attribution notices cannot be construed
125
+ as modifying the License.
126
+
127
+ You may add Your own copyright statement to Your modifications and
128
+ may provide additional or different license terms and conditions
129
+ for use, reproduction, or distribution of Your modifications, or
130
+ for any such Derivative Works as a whole, provided Your use,
131
+ reproduction, and distribution of the Work otherwise complies with
132
+ the conditions stated in this License.
133
+
134
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
135
+ any Contribution intentionally submitted for inclusion in the Work
136
+ by You to the Licensor shall be under the terms and conditions of
137
+ this License, without any additional terms or conditions.
138
+ Notwithstanding the above, nothing herein shall supersede or modify
139
+ the terms of any separate license agreement you may have executed
140
+ with Licensor regarding such Contributions.
141
+
142
+ 6. Trademarks. This License does not grant permission to use the trade
143
+ names, trademarks, service marks, or product names of the Licensor,
144
+ except as required for reasonable and customary use in describing the
145
+ origin of the Work and reproducing the content of the NOTICE file.
146
+
147
+ 7. Disclaimer of Warranty. Unless required by applicable law or
148
+ agreed to in writing, Licensor provides the Work (and each
149
+ Contributor provides its Contributions) on an "AS IS" BASIS,
150
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
151
+ implied, including, without limitation, any warranties or conditions
152
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
153
+ PARTICULAR PURPOSE. You are solely responsible for determining the
154
+ appropriateness of using or redistributing the Work and assume any
155
+ risks associated with Your exercise of permissions under this License.
156
+
157
+ 8. Limitation of Liability. In no event and under no legal theory,
158
+ whether in tort (including negligence), contract, or otherwise,
159
+ unless required by applicable law (such as deliberate and grossly
160
+ negligent acts) or agreed to in writing, shall any Contributor be
161
+ liable to You for damages, including any direct, indirect, special,
162
+ incidental, or consequential damages of any character arising as a
163
+ result of this License or out of the use or inability to use the
164
+ Work (including but not limited to damages for loss of goodwill,
165
+ work stoppage, computer failure or malfunction, or any and all
166
+ other commercial damages or losses), even if such Contributor
167
+ has been advised of the possibility of such damages.
168
+
169
+ 9. Accepting Warranty or Additional Liability. While redistributing
170
+ the Work or Derivative Works thereof, You may choose to offer,
171
+ and charge a fee for, acceptance of support, warranty, indemnity,
172
+ or other liability obligations and/or rights consistent with this
173
+ License. However, in accepting such obligations, You may act only
174
+ on Your own behalf and on Your sole responsibility, not on behalf
175
+ of any other Contributor, and only if You agree to indemnify,
176
+ defend, and hold each Contributor harmless for any liability
177
+ incurred by, or claims asserted against, such Contributor by reason
178
+ of your accepting any such warranty or additional liability.
179
+
180
+ END OF TERMS AND CONDITIONS
181
+
182
+ APPENDIX: How to apply the Apache License to your work.
183
+
184
+ To apply the Apache License to your work, attach the following
185
+ boilerplate notice, with the fields enclosed by brackets "[]"
186
+ replaced with your own identifying information. (Don't include
187
+ the brackets!) The text should be enclosed in the appropriate
188
+ comment syntax for the file format. We also recommend that a
189
+ file or class name and description of purpose be included on the
190
+ same "printed page" as the copyright notice for easier
191
+ identification within third-party archives.
192
+
193
+ Copyright 2023-2024 SGLang Team
194
+
195
+ Licensed under the Apache License, Version 2.0 (the "License");
196
+ you may not use this file except in compliance with the License.
197
+ You may obtain a copy of the License at
198
+
199
+ http://www.apache.org/licenses/LICENSE-2.0
200
+
201
+ Unless required by applicable law or agreed to in writing, software
202
+ distributed under the License is distributed on an "AS IS" BASIS,
203
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
204
+ See the License for the specific language governing permissions and
205
+ limitations under the License.
206
+
207
+ Project-URL: Homepage, https://github.com/sgl-project/sglang
208
+ Project-URL: Bug Tracker, https://github.com/sgl-project/sglang/issues
209
+ Classifier: Programming Language :: Python :: 3
210
+ Classifier: License :: OSI Approved :: Apache Software License
211
+ Requires-Python: >=3.10
212
+ Description-Content-Type: text/markdown
213
+ License-File: LICENSE
214
+ Requires-Dist: IPython
215
+ Requires-Dist: aiohttp
216
+ Requires-Dist: anthropic>=0.20.0
217
+ Requires-Dist: blobfile==3.0.0
218
+ Requires-Dist: build
219
+ Requires-Dist: compressed-tensors
220
+ Requires-Dist: cuda-python
221
+ Requires-Dist: decord2
222
+ Requires-Dist: datasets
223
+ Requires-Dist: einops
224
+ Requires-Dist: fastapi
225
+ Requires-Dist: flashinfer_python==0.4.1
226
+ Requires-Dist: gguf
227
+ Requires-Dist: hf_transfer
228
+ Requires-Dist: huggingface_hub
229
+ Requires-Dist: interegular
230
+ Requires-Dist: llguidance<0.8.0,>=0.7.11
231
+ Requires-Dist: modelscope
232
+ Requires-Dist: msgspec
233
+ Requires-Dist: ninja
234
+ Requires-Dist: numpy
235
+ Requires-Dist: nvidia-cutlass-dsl==4.2.1
236
+ Requires-Dist: openai-harmony==0.0.4
237
+ Requires-Dist: openai==1.99.1
238
+ Requires-Dist: orjson
239
+ Requires-Dist: outlines==0.1.11
240
+ Requires-Dist: packaging
241
+ Requires-Dist: partial_json_parser
242
+ Requires-Dist: pillow
243
+ Requires-Dist: prometheus-client>=0.20.0
244
+ Requires-Dist: psutil
245
+ Requires-Dist: py-spy
246
+ Requires-Dist: pybase64
247
+ Requires-Dist: pydantic
248
+ Requires-Dist: nvidia-ml-py
249
+ Requires-Dist: python-multipart
250
+ Requires-Dist: pyzmq>=25.1.2
251
+ Requires-Dist: requests
252
+ Requires-Dist: scipy
253
+ Requires-Dist: sentencepiece
254
+ Requires-Dist: setproctitle
255
+ Requires-Dist: sgl-kernel==0.3.16.post4
256
+ Requires-Dist: soundfile==0.13.1
257
+ Requires-Dist: tiktoken
258
+ Requires-Dist: timm==1.0.16
259
+ Requires-Dist: torch==2.8.0
260
+ Requires-Dist: torch_memory_saver==0.0.9
261
+ Requires-Dist: torchao==0.9.0
262
+ Requires-Dist: torchaudio==2.8.0
263
+ Requires-Dist: torchvision
264
+ Requires-Dist: tqdm
265
+ Requires-Dist: transformers==4.57.1
266
+ Requires-Dist: uvicorn
267
+ Requires-Dist: uvloop
268
+ Requires-Dist: xgrammar==0.1.25
269
+ Requires-Dist: grpcio==1.75.1
270
+ Requires-Dist: grpcio-tools==1.75.1
271
+ Requires-Dist: grpcio-reflection==1.75.1
272
+ Requires-Dist: grpcio-health-checking==1.75.1
273
+ Provides-Extra: modelopt
274
+ Requires-Dist: nvidia-modelopt; extra == "modelopt"
275
+ Provides-Extra: test
276
+ Requires-Dist: accelerate; extra == "test"
277
+ Requires-Dist: expecttest; extra == "test"
278
+ Requires-Dist: jsonlines; extra == "test"
279
+ Requires-Dist: matplotlib; extra == "test"
280
+ Requires-Dist: pandas; extra == "test"
281
+ Requires-Dist: peft; extra == "test"
282
+ Requires-Dist: pytest; extra == "test"
283
+ Requires-Dist: sentence_transformers; extra == "test"
284
+ Requires-Dist: tabulate; extra == "test"
285
+ Provides-Extra: checkpoint-engine
286
+ Requires-Dist: checkpoint-engine==0.1.2; extra == "checkpoint-engine"
287
+ Provides-Extra: all
288
+ Provides-Extra: dev
289
+ Requires-Dist: sglang[test]; extra == "dev"
290
+ Provides-Extra: cu130
291
+ Requires-Dist: torch==2.9.0; extra == "cu130"
292
+ Requires-Dist: torchaudio==2.9.0; extra == "cu130"
293
+ Requires-Dist: torchvision==0.24.0; extra == "cu130"
294
+ Provides-Extra: cu130-all
295
+ Requires-Dist: sglang[test]; extra == "cu130-all"
296
+ Requires-Dist: sglang[decord]; extra == "cu130-all"
297
+ Requires-Dist: sglang[cu130]; extra == "cu130-all"
298
+ Provides-Extra: tracing
299
+ Requires-Dist: opentelemetry-api; extra == "tracing"
300
+ Requires-Dist: opentelemetry-exporter-otlp; extra == "tracing"
301
+ Requires-Dist: opentelemetry-exporter-otlp-proto-grpc; extra == "tracing"
302
+ Requires-Dist: opentelemetry-sdk; extra == "tracing"
303
+ Provides-Extra: blackwell
304
+ Requires-Dist: sglang[dev]; extra == "blackwell"
305
+ Provides-Extra: blackwell-aarch64
306
+ Requires-Dist: sglang[dev]; extra == "blackwell-aarch64"
307
+ Dynamic: license-file
308
+
309
+ <div align="center" id="sglangtop">
310
+ <img src="https://raw.githubusercontent.com/sgl-project/sglang/main/assets/logo.png" alt="logo" width="400" margin="10px"></img>
311
+
312
+ [![PyPI](https://img.shields.io/pypi/v/sglang)](https://pypi.org/project/sglang)
313
+ ![PyPI - Downloads](https://static.pepy.tech/badge/sglang?period=month)
314
+ [![license](https://img.shields.io/github/license/sgl-project/sglang.svg)](https://github.com/sgl-project/sglang/tree/main/LICENSE)
315
+ [![issue resolution](https://img.shields.io/github/issues-closed-raw/sgl-project/sglang)](https://github.com/sgl-project/sglang/issues)
316
+ [![open issues](https://img.shields.io/github/issues-raw/sgl-project/sglang)](https://github.com/sgl-project/sglang/issues)
317
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/sgl-project/sglang)
318
+
319
+ </div>
320
+
321
+ --------------------------------------------------------------------------------
322
+
323
+ | [**Blog**](https://lmsys.org/blog/)
324
+ | [**Documentation**](https://docs.sglang.ai/)
325
+ | [**Join Slack**](https://slack.sglang.ai/)
326
+ | [**Join Bi-Weekly Development Meeting**](https://meeting.sglang.ai/)
327
+ | [**Roadmap**](https://github.com/sgl-project/sglang/issues/7736)
328
+ | [**Slides**](https://github.com/sgl-project/sgl-learning-materials?tab=readme-ov-file#slides) |
329
+
330
+ ## News
331
+ - [2025/10] 🔥 AMD AI Dev Day 2025 SGLang ([slide](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/sglang_amd_ai_devday_2025.pdf)), PyTorch Conference 2025 SGLang ([slide](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/sglang_pytorch_2025.pdf)).
332
+ - [2025/09] 🔥 Deploying DeepSeek on GB200 NVL72 with PD and Large Scale EP (Part II): 3.8x Prefill, 4.8x Decode Throughput ([blog](https://lmsys.org/blog/2025-09-25-gb200-part-2/)).
333
+ - [2025/09] SGLang Day 0 Support for DeepSeek-V3.2 with Sparse Attention ([blog](https://lmsys.org/blog/2025-09-29-deepseek-V32/)).
334
+ - [2025/08] SGLang x AMD SF Meetup on 8/22: Hands-on GPU workshop, tech talks by AMD/xAI/SGLang, and networking ([Roadmap](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_sglang_roadmap.pdf), [Large-scale EP](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_sglang_ep.pdf), [Highlights](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_highlights.pdf), [AITER/MoRI](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_aiter_mori.pdf), [Wave](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_wave.pdf)).
335
+ - [2025/08] SGLang provides day-0 support for OpenAI gpt-oss model ([instructions](https://github.com/sgl-project/sglang/issues/8833))
336
+ - [2025/05] Deploying DeepSeek with PD Disaggregation and Large-scale Expert Parallelism on 96 H100 GPUs ([blog](https://lmsys.org/blog/2025-05-05-large-scale-ep/)).
337
+ - [2025/03] SGLang Joins PyTorch Ecosystem: Efficient LLM Serving Engine ([PyTorch blog](https://pytorch.org/blog/sglang-joins-pytorch/))
338
+ - [2024/12] v0.4 Release: Zero-Overhead Batch Scheduler, Cache-Aware Load Balancer, Faster Structured Outputs ([blog](https://lmsys.org/blog/2024-12-04-sglang-v0-4/)).
339
+
340
+ <details>
341
+ <summary>More</summary>
342
+
343
+ - [2025/06] SGLang, the high-performance serving infrastructure powering trillions of tokens daily, has been awarded the third batch of the Open Source AI Grant by a16z ([a16z blog](https://a16z.com/advancing-open-source-ai-through-benchmarks-and-bold-experimentation/)).
344
+ - [2025/06] Deploying DeepSeek on GB200 NVL72 with PD and Large Scale EP (Part I): 2.7x Higher Decoding Throughput ([blog](https://lmsys.org/blog/2025-06-16-gb200-part-1/)).
345
+ - [2025/03] Supercharge DeepSeek-R1 Inference on AMD Instinct MI300X ([AMD blog](https://rocm.blogs.amd.com/artificial-intelligence/DeepSeekR1-Part2/README.html))
346
+ - [2025/02] Unlock DeepSeek-R1 Inference Performance on AMD Instinct™ MI300X GPU ([AMD blog](https://rocm.blogs.amd.com/artificial-intelligence/DeepSeekR1_Perf/README.html))
347
+ - [2025/01] SGLang provides day one support for DeepSeek V3/R1 models on NVIDIA and AMD GPUs with DeepSeek-specific optimizations. ([instructions](https://github.com/sgl-project/sglang/tree/main/benchmark/deepseek_v3), [AMD blog](https://www.amd.com/en/developer/resources/technical-articles/amd-instinct-gpus-power-deepseek-v3-revolutionizing-ai-development-with-sglang.html), [10+ other companies](https://x.com/lmsysorg/status/1887262321636221412))
348
+ - [2024/10] The First SGLang Online Meetup ([slides](https://github.com/sgl-project/sgl-learning-materials?tab=readme-ov-file#the-first-sglang-online-meetup)).
349
+ - [2024/09] v0.3 Release: 7x Faster DeepSeek MLA, 1.5x Faster torch.compile, Multi-Image/Video LLaVA-OneVision ([blog](https://lmsys.org/blog/2024-09-04-sglang-v0-3/)).
350
+ - [2024/07] v0.2 Release: Faster Llama3 Serving with SGLang Runtime (vs. TensorRT-LLM, vLLM) ([blog](https://lmsys.org/blog/2024-07-25-sglang-llama3/)).
351
+ - [2024/02] SGLang enables **3x faster JSON decoding** with compressed finite state machine ([blog](https://lmsys.org/blog/2024-02-05-compressed-fsm/)).
352
+ - [2024/01] SGLang provides up to **5x faster inference** with RadixAttention ([blog](https://lmsys.org/blog/2024-01-17-sglang/)).
353
+ - [2024/01] SGLang powers the serving of the official **LLaVA v1.6** release demo ([usage](https://github.com/haotian-liu/LLaVA?tab=readme-ov-file#demo)).
354
+
355
+ </details>
356
+
357
+ ## About
358
+ SGLang is a high-performance serving framework for large language models and vision-language models.
359
+ It is designed to deliver low-latency and high-throughput inference across a wide range of setups, from a single GPU to large distributed clusters.
360
+ Its core features include:
361
+
362
+ - **Fast Backend Runtime**: Provides efficient serving with RadixAttention for prefix caching, a zero-overhead CPU scheduler, prefill-decode disaggregation, speculative decoding, continuous batching, paged attention, tensor/pipeline/expert/data parallelism, structured outputs, chunked prefill, quantization (FP4/FP8/INT4/AWQ/GPTQ), and multi-LoRA batching.
363
+ - **Extensive Model Support**: Supports a wide range of generative models (Llama, Qwen, DeepSeek, Kimi, GLM, GPT, Gemma, Mistral, etc.), embedding models (e5-mistral, gte, mcdse), and reward models (Skywork), with easy extensibility for integrating new models. Compatible with most Hugging Face models and OpenAI APIs.
364
+ - **Extensive Hardware Support**: Runs on NVIDIA GPUs (GB200/B300/H100/A100/Spark), AMD GPUs (MI355/MI300), Intel Xeon CPUs, Google TPUs, Ascend NPUs, and more.
365
+ - **Flexible Frontend Language**: Offers an intuitive interface for programming LLM applications, supporting chained generation calls, advanced prompting, control flow, multi-modal inputs, parallelism, and external interactions.
366
+ - **Active Community**: SGLang is open-source and supported by a vibrant community with widespread industry adoption, powering over 300,000 GPUs worldwide.
367
+
368
+ ## Getting Started
369
+ - [Install SGLang](https://docs.sglang.ai/get_started/install.html)
370
+ - [Quick Start](https://docs.sglang.ai/basic_usage/send_request.html)
371
+ - [Backend Tutorial](https://docs.sglang.ai/basic_usage/openai_api_completions.html)
372
+ - [Frontend Tutorial](https://docs.sglang.ai/references/frontend/frontend_tutorial.html)
373
+ - [Contribution Guide](https://docs.sglang.ai/developer_guide/contribution_guide.html)
374
+
375
+ ## Benchmark and Performance
376
+ Learn more in the release blogs: [v0.2 blog](https://lmsys.org/blog/2024-07-25-sglang-llama3/), [v0.3 blog](https://lmsys.org/blog/2024-09-04-sglang-v0-3/), [v0.4 blog](https://lmsys.org/blog/2024-12-04-sglang-v0-4/), [Large-scale expert parallelism](https://lmsys.org/blog/2025-05-05-large-scale-ep/).
377
+
378
+ ## Roadmap
379
+ [Development Roadmap (2025 H2)](https://github.com/sgl-project/sglang/issues/7736)
380
+
381
+ ## Adoption and Sponsorship
382
+ SGLang has been deployed at large scale, generating trillions of tokens in production each day. It is trusted and adopted by a wide range of leading enterprises and institutions, including xAI, AMD, NVIDIA, Intel, LinkedIn, Cursor, Oracle Cloud, Google Cloud, Microsoft Azure, AWS, Atlas Cloud, Voltage Park, Nebius, DataCrunch, Novita, InnoMatrix, MIT, UCLA, the University of Washington, Stanford, UC Berkeley, Tsinghua University, Jam & Tea Studios, Baseten, and other major technology organizations across North America and Asia. As an open-source LLM inference engine, SGLang has become the de facto industry standard, with deployments running on over 300,000 GPUs worldwide.
383
+ SGLang is currently hosted under the non-profit open-source organization [LMSYS](https://lmsys.org/about/).
384
+
385
+ <img src="https://raw.githubusercontent.com/sgl-project/sgl-learning-materials/refs/heads/main/slides/adoption.png" alt="logo" width="800" margin="10px"></img>
386
+
387
+ ## Contact Us
388
+ For enterprises interested in adopting or deploying SGLang at scale, including technical consulting, sponsorship opportunities, or partnership inquiries, please contact us at contact@sglang.ai.
389
+
390
+ ## Acknowledgment
391
+ We learned the design and reused code from the following projects: [Guidance](https://github.com/guidance-ai/guidance), [vLLM](https://github.com/vllm-project/vllm), [LightLLM](https://github.com/ModelTC/lightllm), [FlashInfer](https://github.com/flashinfer-ai/flashinfer), [Outlines](https://github.com/outlines-dev/outlines), and [LMQL](https://github.com/eth-sri/lmql).
@@ -0,0 +1,83 @@
1
+ <div align="center" id="sglangtop">
2
+ <img src="https://raw.githubusercontent.com/sgl-project/sglang/main/assets/logo.png" alt="logo" width="400" margin="10px"></img>
3
+
4
+ [![PyPI](https://img.shields.io/pypi/v/sglang)](https://pypi.org/project/sglang)
5
+ ![PyPI - Downloads](https://static.pepy.tech/badge/sglang?period=month)
6
+ [![license](https://img.shields.io/github/license/sgl-project/sglang.svg)](https://github.com/sgl-project/sglang/tree/main/LICENSE)
7
+ [![issue resolution](https://img.shields.io/github/issues-closed-raw/sgl-project/sglang)](https://github.com/sgl-project/sglang/issues)
8
+ [![open issues](https://img.shields.io/github/issues-raw/sgl-project/sglang)](https://github.com/sgl-project/sglang/issues)
9
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/sgl-project/sglang)
10
+
11
+ </div>
12
+
13
+ --------------------------------------------------------------------------------
14
+
15
+ | [**Blog**](https://lmsys.org/blog/)
16
+ | [**Documentation**](https://docs.sglang.ai/)
17
+ | [**Join Slack**](https://slack.sglang.ai/)
18
+ | [**Join Bi-Weekly Development Meeting**](https://meeting.sglang.ai/)
19
+ | [**Roadmap**](https://github.com/sgl-project/sglang/issues/7736)
20
+ | [**Slides**](https://github.com/sgl-project/sgl-learning-materials?tab=readme-ov-file#slides) |
21
+
22
+ ## News
23
+ - [2025/10] 🔥 AMD AI Dev Day 2025 SGLang ([slide](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/sglang_amd_ai_devday_2025.pdf)), PyTorch Conference 2025 SGLang ([slide](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/sglang_pytorch_2025.pdf)).
24
+ - [2025/09] 🔥 Deploying DeepSeek on GB200 NVL72 with PD and Large Scale EP (Part II): 3.8x Prefill, 4.8x Decode Throughput ([blog](https://lmsys.org/blog/2025-09-25-gb200-part-2/)).
25
+ - [2025/09] SGLang Day 0 Support for DeepSeek-V3.2 with Sparse Attention ([blog](https://lmsys.org/blog/2025-09-29-deepseek-V32/)).
26
+ - [2025/08] SGLang x AMD SF Meetup on 8/22: Hands-on GPU workshop, tech talks by AMD/xAI/SGLang, and networking ([Roadmap](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_sglang_roadmap.pdf), [Large-scale EP](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_sglang_ep.pdf), [Highlights](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_highlights.pdf), [AITER/MoRI](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_aiter_mori.pdf), [Wave](https://github.com/sgl-project/sgl-learning-materials/blob/main/slides/amd_meetup_wave.pdf)).
27
+ - [2025/08] SGLang provides day-0 support for OpenAI gpt-oss model ([instructions](https://github.com/sgl-project/sglang/issues/8833))
28
+ - [2025/05] Deploying DeepSeek with PD Disaggregation and Large-scale Expert Parallelism on 96 H100 GPUs ([blog](https://lmsys.org/blog/2025-05-05-large-scale-ep/)).
29
+ - [2025/03] SGLang Joins PyTorch Ecosystem: Efficient LLM Serving Engine ([PyTorch blog](https://pytorch.org/blog/sglang-joins-pytorch/))
30
+ - [2024/12] v0.4 Release: Zero-Overhead Batch Scheduler, Cache-Aware Load Balancer, Faster Structured Outputs ([blog](https://lmsys.org/blog/2024-12-04-sglang-v0-4/)).
31
+
32
+ <details>
33
+ <summary>More</summary>
34
+
35
+ - [2025/06] SGLang, the high-performance serving infrastructure powering trillions of tokens daily, has been awarded the third batch of the Open Source AI Grant by a16z ([a16z blog](https://a16z.com/advancing-open-source-ai-through-benchmarks-and-bold-experimentation/)).
36
+ - [2025/06] Deploying DeepSeek on GB200 NVL72 with PD and Large Scale EP (Part I): 2.7x Higher Decoding Throughput ([blog](https://lmsys.org/blog/2025-06-16-gb200-part-1/)).
37
+ - [2025/03] Supercharge DeepSeek-R1 Inference on AMD Instinct MI300X ([AMD blog](https://rocm.blogs.amd.com/artificial-intelligence/DeepSeekR1-Part2/README.html))
38
+ - [2025/02] Unlock DeepSeek-R1 Inference Performance on AMD Instinct™ MI300X GPU ([AMD blog](https://rocm.blogs.amd.com/artificial-intelligence/DeepSeekR1_Perf/README.html))
39
+ - [2025/01] SGLang provides day one support for DeepSeek V3/R1 models on NVIDIA and AMD GPUs with DeepSeek-specific optimizations. ([instructions](https://github.com/sgl-project/sglang/tree/main/benchmark/deepseek_v3), [AMD blog](https://www.amd.com/en/developer/resources/technical-articles/amd-instinct-gpus-power-deepseek-v3-revolutionizing-ai-development-with-sglang.html), [10+ other companies](https://x.com/lmsysorg/status/1887262321636221412))
40
+ - [2024/10] The First SGLang Online Meetup ([slides](https://github.com/sgl-project/sgl-learning-materials?tab=readme-ov-file#the-first-sglang-online-meetup)).
41
+ - [2024/09] v0.3 Release: 7x Faster DeepSeek MLA, 1.5x Faster torch.compile, Multi-Image/Video LLaVA-OneVision ([blog](https://lmsys.org/blog/2024-09-04-sglang-v0-3/)).
42
+ - [2024/07] v0.2 Release: Faster Llama3 Serving with SGLang Runtime (vs. TensorRT-LLM, vLLM) ([blog](https://lmsys.org/blog/2024-07-25-sglang-llama3/)).
43
+ - [2024/02] SGLang enables **3x faster JSON decoding** with compressed finite state machine ([blog](https://lmsys.org/blog/2024-02-05-compressed-fsm/)).
44
+ - [2024/01] SGLang provides up to **5x faster inference** with RadixAttention ([blog](https://lmsys.org/blog/2024-01-17-sglang/)).
45
+ - [2024/01] SGLang powers the serving of the official **LLaVA v1.6** release demo ([usage](https://github.com/haotian-liu/LLaVA?tab=readme-ov-file#demo)).
46
+
47
+ </details>
48
+
49
+ ## About
50
+ SGLang is a high-performance serving framework for large language models and vision-language models.
51
+ It is designed to deliver low-latency and high-throughput inference across a wide range of setups, from a single GPU to large distributed clusters.
52
+ Its core features include:
53
+
54
+ - **Fast Backend Runtime**: Provides efficient serving with RadixAttention for prefix caching, a zero-overhead CPU scheduler, prefill-decode disaggregation, speculative decoding, continuous batching, paged attention, tensor/pipeline/expert/data parallelism, structured outputs, chunked prefill, quantization (FP4/FP8/INT4/AWQ/GPTQ), and multi-LoRA batching.
55
+ - **Extensive Model Support**: Supports a wide range of generative models (Llama, Qwen, DeepSeek, Kimi, GLM, GPT, Gemma, Mistral, etc.), embedding models (e5-mistral, gte, mcdse), and reward models (Skywork), with easy extensibility for integrating new models. Compatible with most Hugging Face models and OpenAI APIs.
56
+ - **Extensive Hardware Support**: Runs on NVIDIA GPUs (GB200/B300/H100/A100/Spark), AMD GPUs (MI355/MI300), Intel Xeon CPUs, Google TPUs, Ascend NPUs, and more.
57
+ - **Flexible Frontend Language**: Offers an intuitive interface for programming LLM applications, supporting chained generation calls, advanced prompting, control flow, multi-modal inputs, parallelism, and external interactions.
58
+ - **Active Community**: SGLang is open-source and supported by a vibrant community with widespread industry adoption, powering over 300,000 GPUs worldwide.
59
+
60
+ ## Getting Started
61
+ - [Install SGLang](https://docs.sglang.ai/get_started/install.html)
62
+ - [Quick Start](https://docs.sglang.ai/basic_usage/send_request.html)
63
+ - [Backend Tutorial](https://docs.sglang.ai/basic_usage/openai_api_completions.html)
64
+ - [Frontend Tutorial](https://docs.sglang.ai/references/frontend/frontend_tutorial.html)
65
+ - [Contribution Guide](https://docs.sglang.ai/developer_guide/contribution_guide.html)
66
+
67
+ ## Benchmark and Performance
68
+ Learn more in the release blogs: [v0.2 blog](https://lmsys.org/blog/2024-07-25-sglang-llama3/), [v0.3 blog](https://lmsys.org/blog/2024-09-04-sglang-v0-3/), [v0.4 blog](https://lmsys.org/blog/2024-12-04-sglang-v0-4/), [Large-scale expert parallelism](https://lmsys.org/blog/2025-05-05-large-scale-ep/).
69
+
70
+ ## Roadmap
71
+ [Development Roadmap (2025 H2)](https://github.com/sgl-project/sglang/issues/7736)
72
+
73
+ ## Adoption and Sponsorship
74
+ SGLang has been deployed at large scale, generating trillions of tokens in production each day. It is trusted and adopted by a wide range of leading enterprises and institutions, including xAI, AMD, NVIDIA, Intel, LinkedIn, Cursor, Oracle Cloud, Google Cloud, Microsoft Azure, AWS, Atlas Cloud, Voltage Park, Nebius, DataCrunch, Novita, InnoMatrix, MIT, UCLA, the University of Washington, Stanford, UC Berkeley, Tsinghua University, Jam & Tea Studios, Baseten, and other major technology organizations across North America and Asia. As an open-source LLM inference engine, SGLang has become the de facto industry standard, with deployments running on over 300,000 GPUs worldwide.
75
+ SGLang is currently hosted under the non-profit open-source organization [LMSYS](https://lmsys.org/about/).
76
+
77
+ <img src="https://raw.githubusercontent.com/sgl-project/sgl-learning-materials/refs/heads/main/slides/adoption.png" alt="logo" width="800" margin="10px"></img>
78
+
79
+ ## Contact Us
80
+ For enterprises interested in adopting or deploying SGLang at scale, including technical consulting, sponsorship opportunities, or partnership inquiries, please contact us at contact@sglang.ai.
81
+
82
+ ## Acknowledgment
83
+ We learned the design and reused code from the following projects: [Guidance](https://github.com/guidance-ai/guidance), [vLLM](https://github.com/vllm-project/vllm), [LightLLM](https://github.com/ModelTC/lightllm), [FlashInfer](https://github.com/flashinfer-ai/flashinfer), [Outlines](https://github.com/outlines-dev/outlines), and [LMQL](https://github.com/eth-sri/lmql).
@@ -0,0 +1,155 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "sglang"
7
+ version = "0.5.4.post1"
8
+ description = "SGLang is a fast serving framework for large language models and vision language models."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { file = "LICENSE" }
12
+ classifiers = [
13
+ "Programming Language :: Python :: 3",
14
+ "License :: OSI Approved :: Apache Software License",
15
+ ]
16
+
17
+ dependencies = [
18
+ "IPython",
19
+ "aiohttp",
20
+ "anthropic>=0.20.0",
21
+ "blobfile==3.0.0",
22
+ "build",
23
+ "compressed-tensors",
24
+ "cuda-python",
25
+ "decord2",
26
+ "datasets",
27
+ "einops",
28
+ "fastapi",
29
+ "flashinfer_python==0.4.1",
30
+ "gguf",
31
+ "hf_transfer",
32
+ "huggingface_hub",
33
+ "interegular",
34
+ "llguidance>=0.7.11,<0.8.0",
35
+ "modelscope",
36
+ "msgspec",
37
+ "ninja",
38
+ "numpy",
39
+ "nvidia-cutlass-dsl==4.2.1",
40
+ "openai-harmony==0.0.4",
41
+ "openai==1.99.1",
42
+ "orjson",
43
+ "outlines==0.1.11",
44
+ "packaging",
45
+ "partial_json_parser",
46
+ "pillow",
47
+ "prometheus-client>=0.20.0",
48
+ "psutil",
49
+ "py-spy",
50
+ "pybase64",
51
+ "pydantic",
52
+ "nvidia-ml-py",
53
+ "python-multipart",
54
+ "pyzmq>=25.1.2",
55
+ "requests",
56
+ "scipy",
57
+ "sentencepiece",
58
+ "setproctitle",
59
+ "sgl-kernel==0.3.16.post4",
60
+ "soundfile==0.13.1",
61
+ "tiktoken",
62
+ "timm==1.0.16",
63
+ "torch==2.8.0",
64
+ "torch_memory_saver==0.0.9",
65
+ "torchao==0.9.0",
66
+ "torchaudio==2.8.0",
67
+ "torchvision",
68
+ "tqdm",
69
+ "transformers==4.57.1",
70
+ "uvicorn",
71
+ "uvloop",
72
+ "xgrammar==0.1.25",
73
+ "grpcio==1.75.1", # keep it align with compile_proto.py
74
+ "grpcio-tools==1.75.1", # keep it align with compile_proto.py
75
+ "grpcio-reflection==1.75.1", # required by srt/entrypoints/grpc_server.py
76
+ "grpcio-health-checking==1.75.1", # required for Kubernetes gRPC health probes
77
+ ]
78
+
79
+ [project.optional-dependencies]
80
+ modelopt = ["nvidia-modelopt"]
81
+ test = [
82
+ "accelerate",
83
+ "expecttest",
84
+ "jsonlines",
85
+ "matplotlib",
86
+ "pandas",
87
+ "peft",
88
+ "pytest",
89
+ "sentence_transformers",
90
+ "tabulate",
91
+ ]
92
+ checkpoint-engine = ["checkpoint-engine==0.1.2"]
93
+ all = []
94
+ dev = ["sglang[test]"]
95
+
96
+ # Temporary tags
97
+ cu130 = [
98
+ "torch==2.9.0",
99
+ "torchaudio==2.9.0",
100
+ "torchvision==0.24.0",
101
+ ]
102
+ cu130_all = [
103
+ "sglang[test]",
104
+ "sglang[decord]",
105
+ "sglang[cu130]"
106
+ ]
107
+ tracing = [
108
+ "opentelemetry-api",
109
+ "opentelemetry-exporter-otlp",
110
+ "opentelemetry-exporter-otlp-proto-grpc",
111
+ "opentelemetry-sdk",
112
+ ]
113
+
114
+ # To be deprecated in 2 weeks
115
+ blackwell = ["sglang[dev]"]
116
+ blackwell_aarch64 = ["sglang[dev]"]
117
+
118
+ [project.urls]
119
+ "Homepage" = "https://github.com/sgl-project/sglang"
120
+ "Bug Tracker" = "https://github.com/sgl-project/sglang/issues"
121
+
122
+ [tool.setuptools.package-data]
123
+ "sglang" = [
124
+ "srt/layers/moe/fused_moe_triton/configs/*/*.json",
125
+ "srt/layers/quantization/configs/*.json",
126
+ "srt/mem_cache/storage/hf3fs/hf3fs_utils.cpp",
127
+ "srt/speculative/cpp_ngram/*.cpp",
128
+ "srt/speculative/cpp_ngram/*.h",
129
+ ]
130
+
131
+ [tool.setuptools.packages.find]
132
+ exclude = [
133
+ "assets*",
134
+ "benchmark*",
135
+ "docs*",
136
+ "dist*",
137
+ "playground*",
138
+ "scripts*",
139
+ "tests*",
140
+ ]
141
+
142
+ [tool.wheel]
143
+ exclude = [
144
+ "assets*",
145
+ "benchmark*",
146
+ "docs*",
147
+ "dist*",
148
+ "playground*",
149
+ "scripts*",
150
+ "tests*",
151
+ ]
152
+
153
+ [tool.codespell]
154
+ ignore-words-list = "ans, als, hel, boostrap, childs, te, vas, hsa, ment"
155
+ skip = "*.json,*.jsonl,*.patch,*.txt"