sglang 0.5.1.post3__tar.gz → 0.5.2__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.
- sglang-0.5.2/PKG-INFO +435 -0
- sglang-0.5.2/pyproject.toml +167 -0
- sglang-0.5.2/sglang/bench_one_batch.py +665 -0
- sglang-0.5.2/sglang/bench_one_batch_server.py +439 -0
- sglang-0.5.2/sglang/bench_serving.py +2403 -0
- sglang-0.5.2/sglang/lang/interpreter.py +1060 -0
- sglang-0.5.2/sglang/srt/configs/__init__.py +29 -0
- sglang-0.5.2/sglang/srt/configs/internvl.py +706 -0
- sglang-0.5.2/sglang/srt/configs/longcat_flash.py +104 -0
- sglang-0.5.2/sglang/srt/configs/model_config.py +811 -0
- sglang-0.5.2/sglang/srt/configs/qwen3_next.py +326 -0
- sglang-0.5.2/sglang/srt/connector/__init__.py +51 -0
- sglang-0.5.2/sglang/srt/connector/base_connector.py +111 -0
- sglang-0.5.2/sglang/srt/connector/redis.py +85 -0
- sglang-0.5.2/sglang/srt/connector/serde/__init__.py +31 -0
- sglang-0.5.2/sglang/srt/connector/serde/safe_serde.py +30 -0
- sglang-0.5.2/sglang/srt/custom_op.py +102 -0
- sglang-0.5.2/sglang/srt/debug_utils/dump_comparator.py +168 -0
- sglang-0.5.2/sglang/srt/debug_utils/dump_loader.py +97 -0
- sglang-0.5.2/sglang/srt/debug_utils/dumper.py +116 -0
- sglang-0.5.2/sglang/srt/debug_utils/text_comparator.py +234 -0
- sglang-0.5.2/sglang/srt/disaggregation/ascend/conn.py +117 -0
- sglang-0.5.2/sglang/srt/disaggregation/base/conn.py +134 -0
- sglang-0.5.2/sglang/srt/disaggregation/common/conn.py +438 -0
- sglang-0.5.2/sglang/srt/disaggregation/decode.py +894 -0
- sglang-0.5.2/sglang/srt/disaggregation/fake/conn.py +85 -0
- sglang-0.5.2/sglang/srt/disaggregation/mini_lb.py +6 -0
- sglang-0.5.2/sglang/srt/disaggregation/mooncake/conn.py +1704 -0
- sglang-0.5.2/sglang/srt/disaggregation/nixl/conn.py +696 -0
- sglang-0.5.2/sglang/srt/disaggregation/prefill.py +867 -0
- sglang-0.5.2/sglang/srt/disaggregation/utils.py +329 -0
- sglang-0.5.2/sglang/srt/distributed/parallel_state.py +1776 -0
- sglang-0.5.2/sglang/srt/entrypoints/engine.py +872 -0
- sglang-0.5.2/sglang/srt/entrypoints/http_server.py +1398 -0
- sglang-0.5.2/sglang/srt/entrypoints/openai/protocol.py +929 -0
- sglang-0.5.2/sglang/srt/entrypoints/openai/serving_base.py +156 -0
- sglang-0.5.2/sglang/srt/entrypoints/openai/serving_chat.py +1083 -0
- sglang-0.5.2/sglang/srt/entrypoints/openai/serving_completions.py +455 -0
- sglang-0.5.2/sglang/srt/entrypoints/openai/serving_embedding.py +174 -0
- sglang-0.5.2/sglang/srt/entrypoints/openai/serving_responses.py +1276 -0
- sglang-0.5.2/sglang/srt/eplb/eplb_manager.py +118 -0
- sglang-0.5.2/sglang/srt/eplb/expert_distribution.py +966 -0
- sglang-0.5.2/sglang/srt/eplb/expert_location.py +468 -0
- sglang-0.5.2/sglang/srt/eplb/expert_location_updater.py +575 -0
- sglang-0.5.2/sglang/srt/function_call/ebnf_composer.py +344 -0
- sglang-0.5.2/sglang/srt/function_call/glm4_moe_detector.py +164 -0
- sglang-0.5.2/sglang/srt/function_call/gpt_oss_detector.py +219 -0
- sglang-0.5.2/sglang/srt/function_call/qwen3_coder_detector.py +362 -0
- sglang-0.5.2/sglang/srt/hf_transformers_utils.py +442 -0
- sglang-0.5.2/sglang/srt/layers/activation.py +272 -0
- sglang-0.5.2/sglang/srt/layers/attention/aiter_backend.py +1179 -0
- sglang-0.5.2/sglang/srt/layers/attention/ascend_backend.py +577 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/chunk.py +242 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/chunk_delta_h.py +314 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/chunk_o.py +178 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/chunk_scaled_dot_kkt.py +151 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/cumsum.py +300 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/fused_recurrent.py +640 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/fused_sigmoid_gating_recurrent.py +232 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/index.py +37 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/l2norm.py +150 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/layernorm_gated.py +326 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/op.py +66 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/solve_tril.py +465 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/utils.py +331 -0
- sglang-0.5.2/sglang/srt/layers/attention/fla/wy_fast.py +158 -0
- sglang-0.5.2/sglang/srt/layers/attention/flashinfer_backend.py +1441 -0
- sglang-0.5.2/sglang/srt/layers/attention/flashinfer_mla_backend.py +1079 -0
- sglang-0.5.2/sglang/srt/layers/attention/hybrid_attn_backend.py +139 -0
- sglang-0.5.2/sglang/srt/layers/attention/hybrid_linear_attn_backend.py +584 -0
- sglang-0.5.2/sglang/srt/layers/attention/intel_amx_backend.py +131 -0
- sglang-0.5.2/sglang/srt/layers/attention/mamba/causal_conv1d.py +128 -0
- sglang-0.5.2/sglang/srt/layers/attention/mamba/causal_conv1d_triton.py +1052 -0
- sglang-0.5.2/sglang/srt/layers/attention/mamba/mamba.py +64 -0
- sglang-0.5.2/sglang/srt/layers/attention/torch_native_backend.py +276 -0
- sglang-0.5.2/sglang/srt/layers/attention/trtllm_mla_backend.py +589 -0
- sglang-0.5.2/sglang/srt/layers/attention/wave_ops/decode_attention.py +184 -0
- sglang-0.5.2/sglang/srt/layers/attention/wave_ops/extend_attention.py +147 -0
- sglang-0.5.2/sglang/srt/layers/communicator.py +676 -0
- sglang-0.5.2/sglang/srt/layers/layernorm.py +336 -0
- sglang-0.5.2/sglang/srt/layers/logits_processor.py +652 -0
- sglang-0.5.2/sglang/srt/layers/moe/__init__.py +32 -0
- sglang-0.5.2/sglang/srt/layers/moe/cutlass_w4a8_moe.py +206 -0
- sglang-0.5.2/sglang/srt/layers/moe/ep_moe/kernels.py +1438 -0
- sglang-0.5.2/sglang/srt/layers/moe/ep_moe/layer.py +869 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_native.py +101 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/__init__.py +42 -0
- sglang-0.5.2/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 +146 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=129,N=352,device_name=NVIDIA_B200,dtype=fp8_w8a8.json +146 -0
- sglang-0.5.2/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 +146 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=128,device_name=NVIDIA_H100_80GB_HBM3.json +146 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=128,device_name=NVIDIA_H20-3e.json +146 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=256,device_name=NVIDIA_H20-3e.json +146 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=512,N=64,device_name=NVIDIA_H100_80GB_HBM3.json +146 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/fused_moe.py +687 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/fused_moe_triton_config.py +212 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/fused_moe_triton_kernels.py +799 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/layer.py +1078 -0
- sglang-0.5.2/sglang/srt/layers/moe/fused_moe_triton/moe_align_block_size.py +87 -0
- sglang-0.5.2/sglang/srt/layers/moe/moe_runner/__init__.py +4 -0
- sglang-0.5.2/sglang/srt/layers/moe/moe_runner/base.py +286 -0
- sglang-0.5.2/sglang/srt/layers/moe/moe_runner/runner.py +80 -0
- sglang-0.5.2/sglang/srt/layers/moe/moe_runner/triton.py +448 -0
- sglang-0.5.2/sglang/srt/layers/moe/token_dispatcher/__init__.py +41 -0
- sglang-0.5.2/sglang/srt/layers/moe/token_dispatcher/base.py +150 -0
- sglang-0.5.2/sglang/srt/layers/moe/token_dispatcher/deepep.py +732 -0
- sglang-0.5.2/sglang/srt/layers/moe/token_dispatcher/standard.py +61 -0
- sglang-0.5.2/sglang/srt/layers/moe/topk.py +876 -0
- sglang-0.5.2/sglang/srt/layers/moe/utils.py +201 -0
- sglang-0.5.2/sglang/srt/layers/quantization/awq.py +782 -0
- sglang-0.5.2/sglang/srt/layers/quantization/base_config.py +216 -0
- sglang-0.5.2/sglang/srt/layers/quantization/blockwise_int8.py +380 -0
- sglang-0.5.2/sglang/srt/layers/quantization/compressed_tensors/compressed_tensors_moe.py +692 -0
- sglang-0.5.2/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_w8a8_fp8.py +172 -0
- sglang-0.5.2/sglang/srt/layers/quantization/deep_gemm_wrapper/compile_utils.py +241 -0
- sglang-0.5.2/sglang/srt/layers/quantization/deep_gemm_wrapper/configurer.py +32 -0
- sglang-0.5.2/sglang/srt/layers/quantization/deep_gemm_wrapper/entrypoint.py +119 -0
- sglang-0.5.2/sglang/srt/layers/quantization/fp8.py +1240 -0
- sglang-0.5.2/sglang/srt/layers/quantization/fp8_utils.py +829 -0
- sglang-0.5.2/sglang/srt/layers/quantization/gptq.py +1097 -0
- sglang-0.5.2/sglang/srt/layers/quantization/modelopt_quant.py +1402 -0
- sglang-0.5.2/sglang/srt/layers/quantization/moe_wna16.py +501 -0
- sglang-0.5.2/sglang/srt/layers/quantization/mxfp4.py +862 -0
- sglang-0.5.2/sglang/srt/layers/quantization/quark/quark_moe.py +202 -0
- sglang-0.5.2/sglang/srt/layers/quantization/quark/schemes/quark_w4a4_mxfp4.py +137 -0
- sglang-0.5.2/sglang/srt/layers/quantization/quark/utils.py +204 -0
- sglang-0.5.2/sglang/srt/layers/quantization/rocm_mxfp4_utils.py +13 -0
- sglang-0.5.2/sglang/srt/layers/quantization/unquant.py +468 -0
- sglang-0.5.2/sglang/srt/layers/quantization/utils.py +564 -0
- sglang-0.5.2/sglang/srt/layers/quantization/w4afp8.py +346 -0
- sglang-0.5.2/sglang/srt/layers/quantization/w8a8_fp8.py +305 -0
- sglang-0.5.2/sglang/srt/layers/quantization/w8a8_int8.py +1034 -0
- sglang-0.5.2/sglang/srt/layers/rocm_linear_utils.py +44 -0
- sglang-0.5.2/sglang/srt/layers/rotary_embedding.py +2017 -0
- sglang-0.5.2/sglang/srt/layers/sampler.py +294 -0
- sglang-0.5.2/sglang/srt/lora/backend/base_backend.py +155 -0
- sglang-0.5.2/sglang/srt/lora/backend/triton_backend.py +176 -0
- sglang-0.5.2/sglang/srt/lora/layers.py +352 -0
- sglang-0.5.2/sglang/srt/lora/lora.py +178 -0
- sglang-0.5.2/sglang/srt/lora/lora_manager.py +440 -0
- sglang-0.5.2/sglang/srt/lora/mem_pool.py +309 -0
- sglang-0.5.2/sglang/srt/lora/utils.py +143 -0
- sglang-0.5.2/sglang/srt/managers/cache_controller.py +886 -0
- sglang-0.5.2/sglang/srt/managers/data_parallel_controller.py +390 -0
- sglang-0.5.2/sglang/srt/managers/detokenizer_manager.py +303 -0
- sglang-0.5.2/sglang/srt/managers/disagg_service.py +46 -0
- sglang-0.5.2/sglang/srt/managers/io_struct.py +1332 -0
- sglang-0.5.2/sglang/srt/managers/mm_utils.py +775 -0
- sglang-0.5.2/sglang/srt/managers/multi_tokenizer_mixin.py +579 -0
- sglang-0.5.2/sglang/srt/managers/schedule_batch.py +2017 -0
- sglang-0.5.2/sglang/srt/managers/schedule_policy.py +570 -0
- sglang-0.5.2/sglang/srt/managers/scheduler.py +2631 -0
- sglang-0.5.2/sglang/srt/managers/scheduler_metrics_mixin.py +350 -0
- sglang-0.5.2/sglang/srt/managers/scheduler_output_processor_mixin.py +732 -0
- sglang-0.5.2/sglang/srt/managers/scheduler_profiler_mixin.py +299 -0
- sglang-0.5.2/sglang/srt/managers/scheduler_update_weights_mixin.py +155 -0
- sglang-0.5.2/sglang/srt/managers/template_manager.py +308 -0
- sglang-0.5.2/sglang/srt/managers/tokenizer_communicator_mixin.py +491 -0
- sglang-0.5.2/sglang/srt/managers/tokenizer_manager.py +1715 -0
- sglang-0.5.2/sglang/srt/managers/tp_worker.py +329 -0
- sglang-0.5.2/sglang/srt/managers/tp_worker_overlap_thread.py +294 -0
- sglang-0.5.2/sglang/srt/mem_cache/allocator.py +581 -0
- sglang-0.5.2/sglang/srt/mem_cache/chunk_cache.py +100 -0
- sglang-0.5.2/sglang/srt/mem_cache/hicache_storage.py +226 -0
- sglang-0.5.2/sglang/srt/mem_cache/hiradix_cache.py +849 -0
- sglang-0.5.2/sglang/srt/mem_cache/lora_radix_cache.py +421 -0
- sglang-0.5.2/sglang/srt/mem_cache/memory_pool.py +1423 -0
- sglang-0.5.2/sglang/srt/mem_cache/memory_pool_host.py +747 -0
- sglang-0.5.2/sglang/srt/mem_cache/radix_cache.py +572 -0
- sglang-0.5.2/sglang/srt/mem_cache/radix_cache_cpp.py +229 -0
- sglang-0.5.2/sglang/srt/mem_cache/storage/hf3fs/hf3fs_client.py +164 -0
- sglang-0.5.2/sglang/srt/mem_cache/storage/hf3fs/hf3fs_usrbio_client.py +187 -0
- sglang-0.5.2/sglang/srt/mem_cache/storage/hf3fs/mini_3fs_metadata_server.py +470 -0
- sglang-0.5.2/sglang/srt/mem_cache/storage/hf3fs/storage_hf3fs.py +523 -0
- sglang-0.5.2/sglang/srt/mem_cache/storage/lmcache/lmc_radix_cache.py +280 -0
- sglang-0.5.2/sglang/srt/mem_cache/storage/lmcache/unit_test.py +121 -0
- sglang-0.5.2/sglang/srt/mem_cache/storage/mooncake_store/mooncake_store.py +324 -0
- sglang-0.5.2/sglang/srt/mem_cache/storage/mooncake_store/test_mooncake_store.py +161 -0
- sglang-0.5.2/sglang/srt/mem_cache/swa_radix_cache.py +1023 -0
- sglang-0.5.2/sglang/srt/metrics/collector.py +974 -0
- sglang-0.5.2/sglang/srt/metrics/startup_func_log_and_timer.py +150 -0
- sglang-0.5.2/sglang/srt/metrics/utils.py +48 -0
- sglang-0.5.2/sglang/srt/model_executor/cpu_graph_runner.py +640 -0
- sglang-0.5.2/sglang/srt/model_executor/cuda_graph_runner.py +868 -0
- sglang-0.5.2/sglang/srt/model_executor/forward_batch_info.py +1094 -0
- sglang-0.5.2/sglang/srt/model_executor/model_runner.py +2070 -0
- sglang-0.5.2/sglang/srt/model_loader/__init__.py +40 -0
- sglang-0.5.2/sglang/srt/model_loader/loader.py +1584 -0
- sglang-0.5.2/sglang/srt/model_loader/utils.py +119 -0
- sglang-0.5.2/sglang/srt/model_loader/weight_utils.py +1030 -0
- sglang-0.5.2/sglang/srt/models/deepseek_v2.py +2980 -0
- sglang-0.5.2/sglang/srt/models/gemma3n_mm.py +534 -0
- sglang-0.5.2/sglang/srt/models/glm4_moe.py +1083 -0
- sglang-0.5.2/sglang/srt/models/glm4v.py +642 -0
- sglang-0.5.2/sglang/srt/models/gpt_oss.py +1204 -0
- sglang-0.5.2/sglang/srt/models/internvl.py +699 -0
- sglang-0.5.2/sglang/srt/models/llama4.py +561 -0
- sglang-0.5.2/sglang/srt/models/llama_eagle3.py +266 -0
- sglang-0.5.2/sglang/srt/models/longcat_flash.py +1026 -0
- sglang-0.5.2/sglang/srt/models/longcat_flash_nextn.py +699 -0
- sglang-0.5.2/sglang/srt/models/minicpmv.py +1046 -0
- sglang-0.5.2/sglang/srt/models/mllama4.py +990 -0
- sglang-0.5.2/sglang/srt/models/opt.py +637 -0
- sglang-0.5.2/sglang/srt/models/qwen2.py +653 -0
- sglang-0.5.2/sglang/srt/models/qwen2_5_vl.py +671 -0
- sglang-0.5.2/sglang/srt/models/qwen2_moe.py +774 -0
- sglang-0.5.2/sglang/srt/models/qwen3.py +523 -0
- sglang-0.5.2/sglang/srt/models/qwen3_moe.py +896 -0
- sglang-0.5.2/sglang/srt/models/qwen3_next.py +1039 -0
- sglang-0.5.2/sglang/srt/models/qwen3_next_mtp.py +109 -0
- sglang-0.5.2/sglang/srt/models/torch_native_llama.py +500 -0
- sglang-0.5.2/sglang/srt/models/transformers.py +288 -0
- sglang-0.5.2/sglang/srt/multimodal/processors/base_processor.py +653 -0
- sglang-0.5.2/sglang/srt/multimodal/processors/glm4v.py +132 -0
- sglang-0.5.2/sglang/srt/multimodal/processors/internvl.py +267 -0
- sglang-0.5.2/sglang/srt/parser/reasoning_parser.py +309 -0
- sglang-0.5.2/sglang/srt/sampling/penaltylib/orchestrator.py +209 -0
- sglang-0.5.2/sglang/srt/sampling/sampling_batch_info.py +392 -0
- sglang-0.5.2/sglang/srt/server_args.py +2714 -0
- sglang-0.5.2/sglang/srt/speculative/eagle_draft_cuda_graph_runner.py +355 -0
- sglang-0.5.2/sglang/srt/speculative/eagle_draft_extend_cuda_graph_runner.py +391 -0
- sglang-0.5.2/sglang/srt/speculative/eagle_worker.py +1142 -0
- sglang-0.5.2/sglang/srt/speculative/spec_info.py +32 -0
- sglang-0.5.2/sglang/srt/speculative/standalone_worker.py +109 -0
- sglang-0.5.2/sglang/srt/utils.py +3048 -0
- sglang-0.5.2/sglang/srt/weight_sync/utils.py +119 -0
- sglang-0.5.2/sglang/test/attention/test_trtllm_mla_backend.py +1268 -0
- sglang-0.5.2/sglang/test/few_shot_gsm8k.py +149 -0
- sglang-0.5.2/sglang/test/runners.py +874 -0
- sglang-0.5.2/sglang/test/test_cutlass_moe.py +299 -0
- sglang-0.5.2/sglang/test/test_cutlass_w4a8_moe.py +295 -0
- sglang-0.5.2/sglang/test/test_disaggregation_utils.py +66 -0
- sglang-0.5.2/sglang/test/test_utils.py +1430 -0
- sglang-0.5.2/sglang/utils.py +535 -0
- sglang-0.5.2/sglang/version.py +1 -0
- sglang-0.5.2/sglang.egg-info/PKG-INFO +435 -0
- sglang-0.5.2/sglang.egg-info/SOURCES.txt +925 -0
- sglang-0.5.2/sglang.egg-info/requires.txt +167 -0
- sglang-0.5.1.post3/PKG-INFO +0 -433
- sglang-0.5.1.post3/pyproject.toml +0 -166
- sglang-0.5.1.post3/sglang/bench_one_batch.py +0 -662
- sglang-0.5.1.post3/sglang/bench_one_batch_server.py +0 -430
- sglang-0.5.1.post3/sglang/bench_serving.py +0 -2178
- sglang-0.5.1.post3/sglang/lang/interpreter.py +0 -1060
- sglang-0.5.1.post3/sglang/srt/configs/__init__.py +0 -25
- sglang-0.5.1.post3/sglang/srt/configs/internvl.py +0 -700
- sglang-0.5.1.post3/sglang/srt/configs/model_config.py +0 -781
- sglang-0.5.1.post3/sglang/srt/connector/__init__.py +0 -51
- sglang-0.5.1.post3/sglang/srt/connector/base_connector.py +0 -112
- sglang-0.5.1.post3/sglang/srt/connector/redis.py +0 -85
- sglang-0.5.1.post3/sglang/srt/connector/serde/__init__.py +0 -31
- sglang-0.5.1.post3/sglang/srt/connector/serde/safe_serde.py +0 -29
- sglang-0.5.1.post3/sglang/srt/custom_op.py +0 -92
- sglang-0.5.1.post3/sglang/srt/debug_utils/dump_comparator.py +0 -131
- sglang-0.5.1.post3/sglang/srt/debug_utils/dumper.py +0 -108
- sglang-0.5.1.post3/sglang/srt/debug_utils/text_comparator.py +0 -172
- sglang-0.5.1.post3/sglang/srt/disaggregation/ascend/conn.py +0 -42
- sglang-0.5.1.post3/sglang/srt/disaggregation/base/conn.py +0 -134
- sglang-0.5.1.post3/sglang/srt/disaggregation/common/conn.py +0 -435
- sglang-0.5.1.post3/sglang/srt/disaggregation/decode.py +0 -892
- sglang-0.5.1.post3/sglang/srt/disaggregation/fake/conn.py +0 -85
- sglang-0.5.1.post3/sglang/srt/disaggregation/launch_lb.py +0 -131
- sglang-0.5.1.post3/sglang/srt/disaggregation/mini_lb.py +0 -420
- sglang-0.5.1.post3/sglang/srt/disaggregation/mooncake/conn.py +0 -1696
- sglang-0.5.1.post3/sglang/srt/disaggregation/nixl/conn.py +0 -532
- sglang-0.5.1.post3/sglang/srt/disaggregation/prefill.py +0 -865
- sglang-0.5.1.post3/sglang/srt/disaggregation/utils.py +0 -374
- sglang-0.5.1.post3/sglang/srt/distributed/parallel_state.py +0 -1740
- sglang-0.5.1.post3/sglang/srt/entrypoints/engine.py +0 -852
- sglang-0.5.1.post3/sglang/srt/entrypoints/http_server.py +0 -1273
- sglang-0.5.1.post3/sglang/srt/entrypoints/openai/protocol.py +0 -869
- sglang-0.5.1.post3/sglang/srt/entrypoints/openai/serving_base.py +0 -152
- sglang-0.5.1.post3/sglang/srt/entrypoints/openai/serving_chat.py +0 -1068
- sglang-0.5.1.post3/sglang/srt/entrypoints/openai/serving_completions.py +0 -449
- sglang-0.5.1.post3/sglang/srt/entrypoints/openai/serving_embedding.py +0 -170
- sglang-0.5.1.post3/sglang/srt/entrypoints/openai/serving_responses.py +0 -1273
- sglang-0.5.1.post3/sglang/srt/eplb/eplb_manager.py +0 -94
- sglang-0.5.1.post3/sglang/srt/eplb/expert_distribution.py +0 -926
- sglang-0.5.1.post3/sglang/srt/eplb/expert_location.py +0 -463
- sglang-0.5.1.post3/sglang/srt/eplb/expert_location_updater.py +0 -575
- sglang-0.5.1.post3/sglang/srt/function_call/ebnf_composer.py +0 -342
- sglang-0.5.1.post3/sglang/srt/function_call/glm4_moe_detector.py +0 -164
- sglang-0.5.1.post3/sglang/srt/function_call/gpt_oss_detector.py +0 -219
- sglang-0.5.1.post3/sglang/srt/function_call/qwen3_coder_detector.py +0 -362
- sglang-0.5.1.post3/sglang/srt/hf_transformers_utils.py +0 -430
- sglang-0.5.1.post3/sglang/srt/layers/activation.py +0 -237
- sglang-0.5.1.post3/sglang/srt/layers/attention/aiter_backend.py +0 -1154
- sglang-0.5.1.post3/sglang/srt/layers/attention/ascend_backend.py +0 -439
- sglang-0.5.1.post3/sglang/srt/layers/attention/flashinfer_backend.py +0 -1439
- sglang-0.5.1.post3/sglang/srt/layers/attention/flashinfer_mla_backend.py +0 -1075
- sglang-0.5.1.post3/sglang/srt/layers/attention/hybrid_attn_backend.py +0 -100
- sglang-0.5.1.post3/sglang/srt/layers/attention/intel_amx_backend.py +0 -128
- sglang-0.5.1.post3/sglang/srt/layers/attention/torch_native_backend.py +0 -270
- sglang-0.5.1.post3/sglang/srt/layers/attention/trtllm_mla_backend.py +0 -499
- sglang-0.5.1.post3/sglang/srt/layers/attention/wave_ops/decode_attention.py +0 -186
- sglang-0.5.1.post3/sglang/srt/layers/attention/wave_ops/extend_attention.py +0 -149
- sglang-0.5.1.post3/sglang/srt/layers/communicator.py +0 -638
- sglang-0.5.1.post3/sglang/srt/layers/layernorm.py +0 -294
- sglang-0.5.1.post3/sglang/srt/layers/logits_processor.py +0 -645
- sglang-0.5.1.post3/sglang/srt/layers/moe/__init__.py +0 -31
- sglang-0.5.1.post3/sglang/srt/layers/moe/cutlass_w4a8_moe.py +0 -214
- sglang-0.5.1.post3/sglang/srt/layers/moe/ep_moe/kernels.py +0 -1364
- sglang-0.5.1.post3/sglang/srt/layers/moe/ep_moe/layer.py +0 -808
- sglang-0.5.1.post3/sglang/srt/layers/moe/fused_moe_native.py +0 -99
- sglang-0.5.1.post3/sglang/srt/layers/moe/fused_moe_triton/__init__.py +0 -40
- sglang-0.5.1.post3/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_4_0/E=128,N=768,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -146
- sglang-0.5.1.post3/sglang/srt/layers/moe/fused_moe_triton/fused_moe.py +0 -1727
- sglang-0.5.1.post3/sglang/srt/layers/moe/fused_moe_triton/layer.py +0 -1067
- sglang-0.5.1.post3/sglang/srt/layers/moe/moe_runner/__init__.py +0 -3
- sglang-0.5.1.post3/sglang/srt/layers/moe/moe_runner/base.py +0 -13
- sglang-0.5.1.post3/sglang/srt/layers/moe/token_dispatcher/__init__.py +0 -29
- sglang-0.5.1.post3/sglang/srt/layers/moe/token_dispatcher/base_dispatcher.py +0 -100
- sglang-0.5.1.post3/sglang/srt/layers/moe/token_dispatcher/deepep.py +0 -729
- sglang-0.5.1.post3/sglang/srt/layers/moe/token_dispatcher/standard.py +0 -19
- sglang-0.5.1.post3/sglang/srt/layers/moe/topk.py +0 -845
- sglang-0.5.1.post3/sglang/srt/layers/moe/utils.py +0 -200
- sglang-0.5.1.post3/sglang/srt/layers/quantization/awq.py +0 -770
- sglang-0.5.1.post3/sglang/srt/layers/quantization/base_config.py +0 -211
- sglang-0.5.1.post3/sglang/srt/layers/quantization/blockwise_int8.py +0 -369
- sglang-0.5.1.post3/sglang/srt/layers/quantization/compressed_tensors/compressed_tensors_moe.py +0 -672
- sglang-0.5.1.post3/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_w8a8_fp8.py +0 -160
- sglang-0.5.1.post3/sglang/srt/layers/quantization/deep_gemm_wrapper/compile_utils.py +0 -233
- sglang-0.5.1.post3/sglang/srt/layers/quantization/deep_gemm_wrapper/configurer.py +0 -35
- sglang-0.5.1.post3/sglang/srt/layers/quantization/deep_gemm_wrapper/entrypoint.py +0 -92
- sglang-0.5.1.post3/sglang/srt/layers/quantization/fp8.py +0 -1211
- sglang-0.5.1.post3/sglang/srt/layers/quantization/fp8_utils.py +0 -815
- sglang-0.5.1.post3/sglang/srt/layers/quantization/gptq.py +0 -1089
- sglang-0.5.1.post3/sglang/srt/layers/quantization/modelopt_quant.py +0 -1335
- sglang-0.5.1.post3/sglang/srt/layers/quantization/moe_wna16.py +0 -498
- sglang-0.5.1.post3/sglang/srt/layers/quantization/mxfp4.py +0 -830
- sglang-0.5.1.post3/sglang/srt/layers/quantization/quark/quark_moe.py +0 -197
- sglang-0.5.1.post3/sglang/srt/layers/quantization/quark/schemes/quark_w4a4_mxfp4.py +0 -118
- sglang-0.5.1.post3/sglang/srt/layers/quantization/quark/utils.py +0 -107
- sglang-0.5.1.post3/sglang/srt/layers/quantization/unquant.py +0 -380
- sglang-0.5.1.post3/sglang/srt/layers/quantization/utils.py +0 -551
- sglang-0.5.1.post3/sglang/srt/layers/quantization/w4afp8.py +0 -328
- sglang-0.5.1.post3/sglang/srt/layers/quantization/w8a8_fp8.py +0 -290
- sglang-0.5.1.post3/sglang/srt/layers/quantization/w8a8_int8.py +0 -992
- sglang-0.5.1.post3/sglang/srt/layers/rotary_embedding.py +0 -2008
- sglang-0.5.1.post3/sglang/srt/layers/sampler.py +0 -270
- sglang-0.5.1.post3/sglang/srt/lora/backend/base_backend.py +0 -113
- sglang-0.5.1.post3/sglang/srt/lora/backend/triton_backend.py +0 -88
- sglang-0.5.1.post3/sglang/srt/lora/layers.py +0 -320
- sglang-0.5.1.post3/sglang/srt/lora/lora.py +0 -175
- sglang-0.5.1.post3/sglang/srt/lora/lora_manager.py +0 -517
- sglang-0.5.1.post3/sglang/srt/lora/mem_pool.py +0 -295
- sglang-0.5.1.post3/sglang/srt/lora/utils.py +0 -134
- sglang-0.5.1.post3/sglang/srt/managers/cache_controller.py +0 -922
- sglang-0.5.1.post3/sglang/srt/managers/data_parallel_controller.py +0 -375
- sglang-0.5.1.post3/sglang/srt/managers/detokenizer_manager.py +0 -292
- sglang-0.5.1.post3/sglang/srt/managers/io_struct.py +0 -1183
- sglang-0.5.1.post3/sglang/srt/managers/mm_utils.py +0 -770
- sglang-0.5.1.post3/sglang/srt/managers/schedule_batch.py +0 -2034
- sglang-0.5.1.post3/sglang/srt/managers/schedule_policy.py +0 -569
- sglang-0.5.1.post3/sglang/srt/managers/scheduler.py +0 -2656
- sglang-0.5.1.post3/sglang/srt/managers/scheduler_metrics_mixin.py +0 -244
- sglang-0.5.1.post3/sglang/srt/managers/scheduler_output_processor_mixin.py +0 -722
- sglang-0.5.1.post3/sglang/srt/managers/scheduler_profiler_mixin.py +0 -299
- sglang-0.5.1.post3/sglang/srt/managers/scheduler_update_weights_mixin.py +0 -148
- sglang-0.5.1.post3/sglang/srt/managers/template_manager.py +0 -308
- sglang-0.5.1.post3/sglang/srt/managers/tokenizer_manager.py +0 -2151
- sglang-0.5.1.post3/sglang/srt/managers/tp_worker.py +0 -317
- sglang-0.5.1.post3/sglang/srt/managers/tp_worker_overlap_thread.py +0 -296
- sglang-0.5.1.post3/sglang/srt/mem_cache/allocator.py +0 -581
- sglang-0.5.1.post3/sglang/srt/mem_cache/chunk_cache.py +0 -100
- sglang-0.5.1.post3/sglang/srt/mem_cache/hicache_storage.py +0 -224
- sglang-0.5.1.post3/sglang/srt/mem_cache/hiradix_cache.py +0 -766
- sglang-0.5.1.post3/sglang/srt/mem_cache/lora_radix_cache.py +0 -421
- sglang-0.5.1.post3/sglang/srt/mem_cache/memory_pool.py +0 -1140
- sglang-0.5.1.post3/sglang/srt/mem_cache/memory_pool_host.py +0 -740
- sglang-0.5.1.post3/sglang/srt/mem_cache/radix_cache.py +0 -573
- sglang-0.5.1.post3/sglang/srt/mem_cache/radix_cache_cpp.py +0 -229
- sglang-0.5.1.post3/sglang/srt/mem_cache/storage/hf3fs/client_hf3fs.py +0 -183
- sglang-0.5.1.post3/sglang/srt/mem_cache/storage/hf3fs/mini_3fs_metadata_server.py +0 -443
- sglang-0.5.1.post3/sglang/srt/mem_cache/storage/hf3fs/storage_hf3fs.py +0 -386
- sglang-0.5.1.post3/sglang/srt/mem_cache/storage/mooncake_store/mooncake_store.py +0 -269
- sglang-0.5.1.post3/sglang/srt/mem_cache/storage/mooncake_store/unit_test.py +0 -40
- sglang-0.5.1.post3/sglang/srt/mem_cache/swa_radix_cache.py +0 -1025
- sglang-0.5.1.post3/sglang/srt/metrics/collector.py +0 -553
- sglang-0.5.1.post3/sglang/srt/model_executor/cuda_graph_runner.py +0 -860
- sglang-0.5.1.post3/sglang/srt/model_executor/forward_batch_info.py +0 -1040
- sglang-0.5.1.post3/sglang/srt/model_executor/model_runner.py +0 -1912
- sglang-0.5.1.post3/sglang/srt/model_loader/__init__.py +0 -34
- sglang-0.5.1.post3/sglang/srt/model_loader/loader.py +0 -1579
- sglang-0.5.1.post3/sglang/srt/model_loader/utils.py +0 -107
- sglang-0.5.1.post3/sglang/srt/model_loader/weight_utils.py +0 -1029
- sglang-0.5.1.post3/sglang/srt/models/deepseek_v2.py +0 -2719
- sglang-0.5.1.post3/sglang/srt/models/gemma3n_mm.py +0 -534
- sglang-0.5.1.post3/sglang/srt/models/glm4_moe.py +0 -1074
- sglang-0.5.1.post3/sglang/srt/models/glm4v.py +0 -640
- sglang-0.5.1.post3/sglang/srt/models/gpt_oss.py +0 -1217
- sglang-0.5.1.post3/sglang/srt/models/internvl.py +0 -671
- sglang-0.5.1.post3/sglang/srt/models/llama4.py +0 -552
- sglang-0.5.1.post3/sglang/srt/models/llama_eagle3.py +0 -249
- sglang-0.5.1.post3/sglang/srt/models/minicpmv.py +0 -884
- sglang-0.5.1.post3/sglang/srt/models/mllama4.py +0 -965
- sglang-0.5.1.post3/sglang/srt/models/qwen2.py +0 -623
- sglang-0.5.1.post3/sglang/srt/models/qwen2_5_vl.py +0 -623
- sglang-0.5.1.post3/sglang/srt/models/qwen2_moe.py +0 -709
- sglang-0.5.1.post3/sglang/srt/models/qwen3.py +0 -517
- sglang-0.5.1.post3/sglang/srt/models/qwen3_moe.py +0 -865
- sglang-0.5.1.post3/sglang/srt/models/torch_native_llama.py +0 -500
- sglang-0.5.1.post3/sglang/srt/models/transformers.py +0 -288
- sglang-0.5.1.post3/sglang/srt/multimodal/processors/base_processor.py +0 -651
- sglang-0.5.1.post3/sglang/srt/multimodal/processors/glm4v.py +0 -132
- sglang-0.5.1.post3/sglang/srt/multimodal/processors/internvl.py +0 -255
- sglang-0.5.1.post3/sglang/srt/reasoning_parser.py +0 -309
- sglang-0.5.1.post3/sglang/srt/sampling/penaltylib/orchestrator.py +0 -197
- sglang-0.5.1.post3/sglang/srt/sampling/sampling_batch_info.py +0 -389
- sglang-0.5.1.post3/sglang/srt/server_args.py +0 -2496
- sglang-0.5.1.post3/sglang/srt/speculative/eagle_draft_cuda_graph_runner.py +0 -350
- sglang-0.5.1.post3/sglang/srt/speculative/eagle_draft_extend_cuda_graph_runner.py +0 -382
- sglang-0.5.1.post3/sglang/srt/speculative/eagle_worker.py +0 -1046
- sglang-0.5.1.post3/sglang/srt/speculative/spec_info.py +0 -27
- sglang-0.5.1.post3/sglang/srt/utils.py +0 -3013
- sglang-0.5.1.post3/sglang/srt/weight_sync/utils.py +0 -119
- sglang-0.5.1.post3/sglang/test/attention/test_trtllm_mla_backend.py +0 -1095
- sglang-0.5.1.post3/sglang/test/few_shot_gsm8k.py +0 -148
- sglang-0.5.1.post3/sglang/test/runners.py +0 -870
- sglang-0.5.1.post3/sglang/test/test_cutlass_moe.py +0 -281
- sglang-0.5.1.post3/sglang/test/test_cutlass_w4a8_moe.py +0 -280
- sglang-0.5.1.post3/sglang/test/test_utils.py +0 -1406
- sglang-0.5.1.post3/sglang/utils.py +0 -530
- sglang-0.5.1.post3/sglang/version.py +0 -1
- sglang-0.5.1.post3/sglang.egg-info/PKG-INFO +0 -433
- sglang-0.5.1.post3/sglang.egg-info/SOURCES.txt +0 -876
- sglang-0.5.1.post3/sglang.egg-info/requires.txt +0 -165
- {sglang-0.5.1.post3 → sglang-0.5.2}/LICENSE +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/README.md +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/setup.cfg +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/bench_offline_throughput.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/check_env.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/compile_deep_gemm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/eval/llama3_eval.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/eval/loogle_eval.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/global_config.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/api.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/backend/anthropic.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/backend/base_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/backend/litellm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/backend/openai.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/backend/runtime_endpoint.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/backend/vertexai.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/chat_template.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/choices.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/compiler.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/ir.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/lang/tracer.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/launch_server.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/profiler.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/_custom_ops.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/aio_rwlock.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/bench_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/chatglm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/dbrx.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/deepseekvl2.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/device_config.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/exaone.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/janus_pro.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/kimi_vl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/kimi_vl_moonvit.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/load_config.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/step3_vl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/update_config.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/configs/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/connector/s3.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/connector/serde/serde.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/connector/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/constants.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/constrained/base_grammar_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/constrained/llguidance_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/constrained/outlines_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/constrained/outlines_jump_forward.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/constrained/reasoner_grammar_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/constrained/triton_ops/bitmask_ops.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/constrained/xgrammar_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/debug_utils/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/ascend/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/ascend/transfer_engine.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/base/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/common/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/common/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/decode_schedule_batch_mixin.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/fake/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/kv_events.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/mooncake/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/mooncake/transfer_engine.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/disaggregation/nixl/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/communication_op.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/cuda_wrapper.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/custom_all_reduce.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/custom_all_reduce_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/hpu_communicator.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/npu_communicator.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/pymscclpp.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/pynccl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/pynccl_allocator.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/pynccl_wrapper.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/quick_all_reduce.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/shm_broadcast.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/device_communicators/xpu_communicator.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/naive_distributed.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/distributed/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/EngineBase.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/context.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/harmony_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/http_server_engine.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/openai/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/openai/serving_rerank.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/openai/serving_score.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/openai/tool_server.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/openai/usage_processor.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/openai/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/entrypoints/tool.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/eplb/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/eplb/eplb_algorithms/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/eplb/eplb_algorithms/deepseek.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/eplb/eplb_algorithms/deepseek_vec.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/eplb/eplb_simulator/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/eplb/eplb_simulator/reader.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/eplb/expert_location_dispatch.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/base_format_detector.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/core_types.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/deepseekv31_detector.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/deepseekv3_detector.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/function_call_parser.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/kimik2_detector.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/llama32_detector.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/mistral_detector.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/pythonic_detector.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/qwen25_detector.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/step3_detector.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/function_call/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/host_shared_memory.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/amx_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/base_attn_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/cutlass_mla_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/double_sparsity_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/dual_chunk_flashattention_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/flashattention_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/flashmla_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/merge_state.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/tbo_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/triton_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/triton_ops/decode_attention.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/triton_ops/double_sparsity_attention.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/triton_ops/extend_attention.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/triton_ops/merge_state.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/triton_ops/prefill_attention.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/triton_ops/rocm_mla_decode_rope.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/trtllm_mha_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/vision.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/vision_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/wave_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/attention/wave_ops/prefill_attention.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/dp_attention.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/elementwise.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/flashinfer_comm_fusion.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/linear.py +0 -0
- {sglang-0.5.1.post3/sglang/srt → sglang-0.5.2/sglang/srt/layers}/model_parallel.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/cutlass_moe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/cutlass_moe_params.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/ep_moe/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=16,N=1024,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=1280,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=2560,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=320,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=64,N=640,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=AMD_Instinct_MI300X.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=AMD_Instinct_MI325X.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=AMD_Radeon_Graphics.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=14336,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=AMD_Instinct_MI300X.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=AMD_Instinct_MI325X.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=AMD_Radeon_Graphics.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=1792,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=2048,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=AMD_Instinct_MI300X.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=AMD_Instinct_MI325X.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=AMD_Radeon_Graphics.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=3584,device_name=NVIDIA_L40S.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=4096,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=AMD_Instinct_MI300X.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=AMD_Instinct_MI325X.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=AMD_Radeon_Graphics.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_1_0/E=8,N=7168,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=192,device_name=NVIDIA_H20.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=192,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=384,device_name=NVIDIA_H20.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=384,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=768,device_name=NVIDIA_H20.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=768,device_name=NVIDIA_H200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_2_0/E=128,N=96,device_name=NVIDIA_H20.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_0/E=16,N=1024,device_name=NVIDIA_B200.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=128,N=768,device_name=NVIDIA_H20.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/configs/triton_3_3_1/E=160,N=320,device_name=NVIDIA_H20-3e.json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/fused_moe_triton/triton_kernels_moe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/rocm_moe_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/moe/router.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/multimodal.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/parameter.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/pooler.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/awq_triton.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/compressed_tensors/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/compressed_tensors/compressed_tensors.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/compressed_tensors/schemes/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_scheme.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/compressed_tensors/schemes/compressed_tensors_w8a16_fp8.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/compressed_tensors/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=1536,K=1536,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=1536,K=1536,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=1536,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=2048,K=512,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=2048,K=512,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=2048,K=512,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=2304,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=2304,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=2304,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=24576,K=1536,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=24576,K=1536,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=24576,K=1536,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=24576,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=256,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=256,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=3072,K=1536,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=3072,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=3072,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=3072,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=32768,K=512,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=36864,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4096,K=512,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=4608,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=512,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=576,K=7168,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=1024,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=1024,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=1024,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=1152,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=1152,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=1152,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=128,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=128,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=16384,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_H20,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=18432,device_name=NVIDIA_L20Y,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2048,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/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
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=2304,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=AMD_Instinct_MI300X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=AMD_Instinct_MI325X,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=AMD_Radeon_Graphics,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=NVIDIA_B200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=NVIDIA_H20,dtype=int8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/configs/N=7168,K=256,device_name=NVIDIA_H200,dtype=fp8_w8a8,block_shape=[128, 128].json +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/deep_gemm_wrapper/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/fp8_kernel.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/fpgemm_fp8.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/int8_kernel.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/int8_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/kv_cache.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/marlin_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/marlin_utils_fp8.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/mxfp4_tensor.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/petit.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/petit_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/qoq.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/quark/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/quark/quark.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/quark/schemes/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/quantization/quark/schemes/quark_scheme.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/radix_attention.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/torchao_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/layers/vocab_parallel_embedding.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/lora/lora_config.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/lora/lora_registry.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/lora/triton_ops/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/lora/triton_ops/gate_up_lora_b.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/lora/triton_ops/qkv_lora_b.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/lora/triton_ops/sgemm_lora_a.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/lora/triton_ops/sgemm_lora_b.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/managers/configure_logging.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/managers/multimodal_processor.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/managers/scheduler_input_blocker.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/managers/scheduler_recv_skipper.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/managers/session_controller.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/managers/utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/allocator_ascend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/base_prefix_cache.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/cpp_radix_tree/radix_tree.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/flush_cache.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/multimodal_cache.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/storage/hf3fs/hf3fs_utils.cpp +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/storage/hf3fs/test_hf3fs_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/storage/nixl/hicache_nixl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/storage/nixl/nixl_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/mem_cache/storage/nixl/test_hicache_nixl_storage.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/metrics/func_timer.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/model_executor/npu_graph_runner.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/arcee.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/baichuan.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/bailing_moe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/bert.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/chatglm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/clip.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/commandr.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/dbrx.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/deepseek.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/deepseek_janus_pro.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/deepseek_nextn.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/deepseek_vl2.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/ernie4.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/ernie4_eagle.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/exaone.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/gemma.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/gemma2.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/gemma2_reward.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/gemma3_causal.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/gemma3_mm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/gemma3n_audio.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/gemma3n_causal.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/glm4.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/glm4_moe_nextn.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/glm4v_moe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/gpt2.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/gpt_bigcode.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/granite.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/granitemoe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/grok.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/hunyuan.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/idefics2.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/internlm2.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/internlm2_reward.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/interns1.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/kimi_vl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/kimi_vl_moonvit.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/llama.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/llama_classification.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/llama_eagle.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/llama_embedding.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/llama_reward.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/llava.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/llavavid.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/mimo.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/mimo_mtp.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/minicpm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/minicpm3.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/minicpmo.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/mistral.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/mixtral.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/mixtral_quant.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/mllama.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/nemotron_nas.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/olmo.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/olmo2.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/olmoe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/persimmon.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/phi.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/phi3_small.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/phi4mm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/phi4mm_audio.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/phi4mm_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/phimoe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/pixtral.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/qwen.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/qwen2_audio.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/qwen2_classification.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/qwen2_eagle.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/qwen2_rm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/qwen2_vl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/qwen3_classification.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/registry.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/roberta.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/siglip.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/stablelm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/step3_vl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/vila.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/xverse.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/xverse_moe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/models/yivl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/mm_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/clip.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/deepseek_vl_v2.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/gemma3.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/gemma3n.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/janus_pro.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/kimi_vl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/llava.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/minicpm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/mlama.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/mllama4.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/phi4mm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/pixtral.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/qwen_audio.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/qwen_vl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/step3_vl.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/multimodal/processors/vila.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/offloader.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/operations.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/operations_strategy.py +0 -0
- {sglang-0.5.1.post3/sglang/srt → sglang-0.5.2/sglang/srt/parser}/code_completion_parser.py +0 -0
- {sglang-0.5.1.post3/sglang/srt → sglang-0.5.2/sglang/srt/parser}/conversation.py +0 -0
- {sglang-0.5.1.post3/sglang/srt → sglang-0.5.2/sglang/srt/parser}/harmony_parser.py +0 -0
- {sglang-0.5.1.post3/sglang/srt → sglang-0.5.2/sglang/srt/parser}/jinja_template_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/patch_torch.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/poll_based_barrier.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/sampling/custom_logit_processor.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/sampling/penaltylib/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/sampling/penaltylib/frequency_penalty.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/sampling/penaltylib/min_new_tokens.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/sampling/penaltylib/presence_penalty.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/sampling/sampling_params.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/speculative/build_eagle_tree.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/speculative/eagle_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/tokenizer/tiktoken_tokenizer.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/torch_memory_saver_adapter.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/two_batch_overlap.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/warmup.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/srt/weight_sync/tensor_bucket.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/attention/__init__.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/attention/test_flashattn_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/attention/test_flashattn_mla_backend.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/attention/test_prefix_chunk_info.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/doc_patch.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/few_shot_gsm8k_engine.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/run_eval.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/send_one.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/simple_eval_common.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/simple_eval_gpqa.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/simple_eval_humaneval.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/simple_eval_math.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/simple_eval_mgsm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/simple_eval_mmlu.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_activation.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_block_fp8.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_block_fp8_deep_gemm_blackwell.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_block_fp8_ep.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_custom_ops.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_deepep_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_dynamic_grad_mode.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_fp4_moe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_layernorm.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_marlin_moe.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_marlin_utils.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang/test/test_programs.py +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang.egg-info/dependency_links.txt +0 -0
- {sglang-0.5.1.post3 → sglang-0.5.2}/sglang.egg-info/top_level.txt +0 -0
sglang-0.5.2/PKG-INFO
ADDED
@@ -0,0 +1,435 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: sglang
|
3
|
+
Version: 0.5.2
|
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: aiohttp
|
215
|
+
Requires-Dist: requests
|
216
|
+
Requires-Dist: tqdm
|
217
|
+
Requires-Dist: numpy
|
218
|
+
Requires-Dist: IPython
|
219
|
+
Requires-Dist: setproctitle
|
220
|
+
Provides-Extra: runtime-common
|
221
|
+
Requires-Dist: blobfile==3.0.0; extra == "runtime-common"
|
222
|
+
Requires-Dist: build; extra == "runtime-common"
|
223
|
+
Requires-Dist: compressed-tensors; extra == "runtime-common"
|
224
|
+
Requires-Dist: datasets; extra == "runtime-common"
|
225
|
+
Requires-Dist: einops; extra == "runtime-common"
|
226
|
+
Requires-Dist: fastapi; extra == "runtime-common"
|
227
|
+
Requires-Dist: hf_transfer; extra == "runtime-common"
|
228
|
+
Requires-Dist: huggingface_hub; extra == "runtime-common"
|
229
|
+
Requires-Dist: interegular; extra == "runtime-common"
|
230
|
+
Requires-Dist: llguidance<0.8.0,>=0.7.11; extra == "runtime-common"
|
231
|
+
Requires-Dist: modelscope; extra == "runtime-common"
|
232
|
+
Requires-Dist: msgspec; extra == "runtime-common"
|
233
|
+
Requires-Dist: ninja; extra == "runtime-common"
|
234
|
+
Requires-Dist: openai==1.99.1; extra == "runtime-common"
|
235
|
+
Requires-Dist: openai-harmony==0.0.4; extra == "runtime-common"
|
236
|
+
Requires-Dist: orjson; extra == "runtime-common"
|
237
|
+
Requires-Dist: outlines==0.1.11; extra == "runtime-common"
|
238
|
+
Requires-Dist: packaging; extra == "runtime-common"
|
239
|
+
Requires-Dist: partial_json_parser; extra == "runtime-common"
|
240
|
+
Requires-Dist: pillow; extra == "runtime-common"
|
241
|
+
Requires-Dist: prometheus-client>=0.20.0; extra == "runtime-common"
|
242
|
+
Requires-Dist: psutil; extra == "runtime-common"
|
243
|
+
Requires-Dist: pybase64; extra == "runtime-common"
|
244
|
+
Requires-Dist: pydantic; extra == "runtime-common"
|
245
|
+
Requires-Dist: pynvml; extra == "runtime-common"
|
246
|
+
Requires-Dist: python-multipart; extra == "runtime-common"
|
247
|
+
Requires-Dist: pyzmq>=25.1.2; extra == "runtime-common"
|
248
|
+
Requires-Dist: sentencepiece; extra == "runtime-common"
|
249
|
+
Requires-Dist: soundfile==0.13.1; extra == "runtime-common"
|
250
|
+
Requires-Dist: scipy; extra == "runtime-common"
|
251
|
+
Requires-Dist: timm==1.0.16; extra == "runtime-common"
|
252
|
+
Requires-Dist: tiktoken; extra == "runtime-common"
|
253
|
+
Requires-Dist: torchao==0.9.0; extra == "runtime-common"
|
254
|
+
Requires-Dist: transformers==4.56.1; extra == "runtime-common"
|
255
|
+
Requires-Dist: uvicorn; extra == "runtime-common"
|
256
|
+
Requires-Dist: uvloop; extra == "runtime-common"
|
257
|
+
Requires-Dist: xgrammar==0.1.24; extra == "runtime-common"
|
258
|
+
Provides-Extra: srt
|
259
|
+
Requires-Dist: sglang[runtime_common]; extra == "srt"
|
260
|
+
Requires-Dist: sgl-kernel==0.3.9.post2; extra == "srt"
|
261
|
+
Requires-Dist: torch==2.8.0; extra == "srt"
|
262
|
+
Requires-Dist: torchaudio==2.8.0; extra == "srt"
|
263
|
+
Requires-Dist: torchvision; extra == "srt"
|
264
|
+
Requires-Dist: cuda-python; extra == "srt"
|
265
|
+
Requires-Dist: flashinfer_python==0.3.1; extra == "srt"
|
266
|
+
Provides-Extra: blackwell
|
267
|
+
Requires-Dist: sglang[runtime_common]; extra == "blackwell"
|
268
|
+
Requires-Dist: sgl-kernel==0.3.9.post2; extra == "blackwell"
|
269
|
+
Requires-Dist: torch==2.8.0; extra == "blackwell"
|
270
|
+
Requires-Dist: torchaudio==2.8.0; extra == "blackwell"
|
271
|
+
Requires-Dist: torchvision; extra == "blackwell"
|
272
|
+
Requires-Dist: cuda-python; extra == "blackwell"
|
273
|
+
Requires-Dist: flashinfer_python==0.3.1; extra == "blackwell"
|
274
|
+
Requires-Dist: nvidia-cutlass-dsl==4.1.0; extra == "blackwell"
|
275
|
+
Provides-Extra: srt-hip
|
276
|
+
Requires-Dist: sglang[runtime_common]; extra == "srt-hip"
|
277
|
+
Requires-Dist: torch; extra == "srt-hip"
|
278
|
+
Requires-Dist: petit_kernel==0.0.2; extra == "srt-hip"
|
279
|
+
Requires-Dist: wave-lang==3.7.0; extra == "srt-hip"
|
280
|
+
Provides-Extra: srt-cpu
|
281
|
+
Requires-Dist: sglang[runtime_common]; extra == "srt-cpu"
|
282
|
+
Requires-Dist: intel-openmp; extra == "srt-cpu"
|
283
|
+
Provides-Extra: srt-npu
|
284
|
+
Requires-Dist: sglang[runtime_common]; extra == "srt-npu"
|
285
|
+
Provides-Extra: srt-xpu
|
286
|
+
Requires-Dist: sglang[runtime_common]; extra == "srt-xpu"
|
287
|
+
Provides-Extra: srt-hpu
|
288
|
+
Requires-Dist: sglang[runtime_common]; extra == "srt-hpu"
|
289
|
+
Provides-Extra: openai
|
290
|
+
Requires-Dist: openai==1.99.1; extra == "openai"
|
291
|
+
Requires-Dist: tiktoken; extra == "openai"
|
292
|
+
Provides-Extra: anthropic
|
293
|
+
Requires-Dist: anthropic>=0.20.0; extra == "anthropic"
|
294
|
+
Provides-Extra: litellm
|
295
|
+
Requires-Dist: litellm>=1.0.0; extra == "litellm"
|
296
|
+
Provides-Extra: torch-memory-saver
|
297
|
+
Requires-Dist: torch_memory_saver==0.0.8; extra == "torch-memory-saver"
|
298
|
+
Provides-Extra: decord
|
299
|
+
Requires-Dist: decord; extra == "decord"
|
300
|
+
Provides-Extra: test
|
301
|
+
Requires-Dist: accelerate; extra == "test"
|
302
|
+
Requires-Dist: expecttest; extra == "test"
|
303
|
+
Requires-Dist: jsonlines; extra == "test"
|
304
|
+
Requires-Dist: matplotlib; extra == "test"
|
305
|
+
Requires-Dist: pandas; extra == "test"
|
306
|
+
Requires-Dist: peft; extra == "test"
|
307
|
+
Requires-Dist: sentence_transformers; extra == "test"
|
308
|
+
Requires-Dist: pytest; extra == "test"
|
309
|
+
Requires-Dist: tabulate; extra == "test"
|
310
|
+
Provides-Extra: all
|
311
|
+
Requires-Dist: sglang[srt]; extra == "all"
|
312
|
+
Requires-Dist: sglang[openai]; extra == "all"
|
313
|
+
Requires-Dist: sglang[anthropic]; extra == "all"
|
314
|
+
Requires-Dist: sglang[torch_memory_saver]; extra == "all"
|
315
|
+
Requires-Dist: sglang[decord]; extra == "all"
|
316
|
+
Provides-Extra: all-hip
|
317
|
+
Requires-Dist: sglang[srt_hip]; extra == "all-hip"
|
318
|
+
Requires-Dist: sglang[openai]; extra == "all-hip"
|
319
|
+
Requires-Dist: sglang[anthropic]; extra == "all-hip"
|
320
|
+
Requires-Dist: sglang[decord]; extra == "all-hip"
|
321
|
+
Provides-Extra: all-xpu
|
322
|
+
Requires-Dist: sglang[srt_xpu]; extra == "all-xpu"
|
323
|
+
Requires-Dist: sglang[openai]; extra == "all-xpu"
|
324
|
+
Requires-Dist: sglang[anthropic]; extra == "all-xpu"
|
325
|
+
Requires-Dist: sglang[decord]; extra == "all-xpu"
|
326
|
+
Provides-Extra: all-hpu
|
327
|
+
Requires-Dist: sglang[srt_hpu]; extra == "all-hpu"
|
328
|
+
Requires-Dist: sglang[openai]; extra == "all-hpu"
|
329
|
+
Requires-Dist: sglang[anthropic]; extra == "all-hpu"
|
330
|
+
Requires-Dist: sglang[decord]; extra == "all-hpu"
|
331
|
+
Provides-Extra: all-cpu
|
332
|
+
Requires-Dist: sglang[srt_cpu]; extra == "all-cpu"
|
333
|
+
Requires-Dist: sglang[openai]; extra == "all-cpu"
|
334
|
+
Requires-Dist: sglang[anthropic]; extra == "all-cpu"
|
335
|
+
Requires-Dist: sglang[decord]; extra == "all-cpu"
|
336
|
+
Provides-Extra: all-npu
|
337
|
+
Requires-Dist: sglang[srt_npu]; extra == "all-npu"
|
338
|
+
Requires-Dist: sglang[openai]; extra == "all-npu"
|
339
|
+
Requires-Dist: sglang[anthropic]; extra == "all-npu"
|
340
|
+
Requires-Dist: sglang[decord]; extra == "all-npu"
|
341
|
+
Provides-Extra: dev
|
342
|
+
Requires-Dist: sglang[all]; extra == "dev"
|
343
|
+
Requires-Dist: sglang[test]; extra == "dev"
|
344
|
+
Provides-Extra: dev-hip
|
345
|
+
Requires-Dist: sglang[all_hip]; extra == "dev-hip"
|
346
|
+
Requires-Dist: sglang[test]; extra == "dev-hip"
|
347
|
+
Provides-Extra: dev-xpu
|
348
|
+
Requires-Dist: sglang[all_xpu]; extra == "dev-xpu"
|
349
|
+
Requires-Dist: sglang[test]; extra == "dev-xpu"
|
350
|
+
Provides-Extra: dev-hpu
|
351
|
+
Requires-Dist: sglang[all_hpu]; extra == "dev-hpu"
|
352
|
+
Requires-Dist: sglang[test]; extra == "dev-hpu"
|
353
|
+
Provides-Extra: dev-cpu
|
354
|
+
Requires-Dist: sglang[all_cpu]; extra == "dev-cpu"
|
355
|
+
Requires-Dist: sglang[test]; extra == "dev-cpu"
|
356
|
+
Dynamic: license-file
|
357
|
+
|
358
|
+
<div align="center" id="sglangtop">
|
359
|
+
<img src="https://raw.githubusercontent.com/sgl-project/sglang/main/assets/logo.png" alt="logo" width="400" margin="10px"></img>
|
360
|
+
|
361
|
+
[](https://pypi.org/project/sglang)
|
362
|
+

|
363
|
+
[](https://github.com/sgl-project/sglang/tree/main/LICENSE)
|
364
|
+
[](https://github.com/sgl-project/sglang/issues)
|
365
|
+
[](https://github.com/sgl-project/sglang/issues)
|
366
|
+
[](https://deepwiki.com/sgl-project/sglang)
|
367
|
+
|
368
|
+
</div>
|
369
|
+
|
370
|
+
--------------------------------------------------------------------------------
|
371
|
+
|
372
|
+
| [**Blog**](https://lmsys.org/blog/2025-05-05-large-scale-ep/)
|
373
|
+
| [**Documentation**](https://docs.sglang.ai/)
|
374
|
+
| [**Join Slack**](https://slack.sglang.ai/)
|
375
|
+
| [**Join Bi-Weekly Development Meeting**](https://meeting.sglang.ai/)
|
376
|
+
| [**Roadmap**](https://github.com/sgl-project/sglang/issues/7736)
|
377
|
+
| [**Slides**](https://github.com/sgl-project/sgl-learning-materials?tab=readme-ov-file#slides) |
|
378
|
+
|
379
|
+
## News
|
380
|
+
- [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)).
|
381
|
+
- [2025/08] 🔥 SGLang provides day-0 support for OpenAI gpt-oss model ([instructions](https://github.com/sgl-project/sglang/issues/8833))
|
382
|
+
- [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/)).
|
383
|
+
- [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/)).
|
384
|
+
- [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/)).
|
385
|
+
- [2025/03] Supercharge DeepSeek-R1 Inference on AMD Instinct MI300X ([AMD blog](https://rocm.blogs.amd.com/artificial-intelligence/DeepSeekR1-Part2/README.html))
|
386
|
+
- [2025/03] SGLang Joins PyTorch Ecosystem: Efficient LLM Serving Engine ([PyTorch blog](https://pytorch.org/blog/sglang-joins-pytorch/))
|
387
|
+
- [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/)).
|
388
|
+
|
389
|
+
<details>
|
390
|
+
<summary>More</summary>
|
391
|
+
|
392
|
+
- [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))
|
393
|
+
- [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))
|
394
|
+
- [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)).
|
395
|
+
- [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/)).
|
396
|
+
- [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/)).
|
397
|
+
- [2024/02] SGLang enables **3x faster JSON decoding** with compressed finite state machine ([blog](https://lmsys.org/blog/2024-02-05-compressed-fsm/)).
|
398
|
+
- [2024/01] SGLang provides up to **5x faster inference** with RadixAttention ([blog](https://lmsys.org/blog/2024-01-17-sglang/)).
|
399
|
+
- [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)).
|
400
|
+
|
401
|
+
</details>
|
402
|
+
|
403
|
+
## About
|
404
|
+
SGLang is a fast serving framework for large language models and vision language models.
|
405
|
+
It makes your interaction with models faster and more controllable by co-designing the backend runtime and frontend language.
|
406
|
+
The core features include:
|
407
|
+
|
408
|
+
- **Fast Backend Runtime**: Provides efficient serving with RadixAttention for prefix caching, 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.
|
409
|
+
- **Flexible Frontend Language**: Offers an intuitive interface for programming LLM applications, including chained generation calls, advanced prompting, control flow, multi-modal inputs, parallelism, and external interactions.
|
410
|
+
- **Extensive Model Support**: Supports a wide range of generative models (Llama, Qwen, DeepSeek, Kimi, GPT, Gemma, Mistral, etc.), embedding models (e5-mistral, gte, mcdse) and reward models (Skywork), with easy extensibility for integrating new models.
|
411
|
+
- **Active Community**: SGLang is open-source and backed by an active community with wide industry adoption.
|
412
|
+
|
413
|
+
## Getting Started
|
414
|
+
- [Install SGLang](https://docs.sglang.ai/get_started/install.html)
|
415
|
+
- [Quick Start](https://docs.sglang.ai/basic_usage/send_request.html)
|
416
|
+
- [Backend Tutorial](https://docs.sglang.ai/basic_usage/openai_api_completions.html)
|
417
|
+
- [Frontend Tutorial](https://docs.sglang.ai/references/frontend/frontend_tutorial.html)
|
418
|
+
- [Contribution Guide](https://docs.sglang.ai/developer_guide/contribution_guide.html)
|
419
|
+
|
420
|
+
## Benchmark and Performance
|
421
|
+
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/).
|
422
|
+
|
423
|
+
## Roadmap
|
424
|
+
[Development Roadmap (2025 H2)](https://github.com/sgl-project/sglang/issues/7736)
|
425
|
+
|
426
|
+
## Adoption and Sponsorship
|
427
|
+
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 1,000,000 GPUs worldwide.
|
428
|
+
|
429
|
+
<img src="https://raw.githubusercontent.com/sgl-project/sgl-learning-materials/refs/heads/main/slides/adoption.png" alt="logo" width="800" margin="10px"></img>
|
430
|
+
|
431
|
+
## Contact Us
|
432
|
+
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.
|
433
|
+
|
434
|
+
## Acknowledgment
|
435
|
+
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,167 @@
|
|
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.2"
|
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
|
+
dependencies = ["aiohttp", "requests", "tqdm", "numpy", "IPython", "setproctitle"]
|
17
|
+
|
18
|
+
[project.optional-dependencies]
|
19
|
+
runtime_common = [
|
20
|
+
"blobfile==3.0.0",
|
21
|
+
"build",
|
22
|
+
"compressed-tensors",
|
23
|
+
"datasets",
|
24
|
+
"einops",
|
25
|
+
"fastapi",
|
26
|
+
"hf_transfer",
|
27
|
+
"huggingface_hub",
|
28
|
+
"interegular",
|
29
|
+
"llguidance>=0.7.11,<0.8.0",
|
30
|
+
"modelscope",
|
31
|
+
"msgspec",
|
32
|
+
"ninja",
|
33
|
+
"openai==1.99.1",
|
34
|
+
"openai-harmony==0.0.4",
|
35
|
+
"orjson",
|
36
|
+
"outlines==0.1.11",
|
37
|
+
"packaging",
|
38
|
+
"partial_json_parser",
|
39
|
+
"pillow",
|
40
|
+
"prometheus-client>=0.20.0",
|
41
|
+
"psutil",
|
42
|
+
"pybase64",
|
43
|
+
"pydantic",
|
44
|
+
"pynvml",
|
45
|
+
"python-multipart",
|
46
|
+
"pyzmq>=25.1.2",
|
47
|
+
"sentencepiece",
|
48
|
+
"soundfile==0.13.1",
|
49
|
+
"scipy",
|
50
|
+
"timm==1.0.16",
|
51
|
+
"tiktoken",
|
52
|
+
"torchao==0.9.0",
|
53
|
+
"transformers==4.56.1",
|
54
|
+
"uvicorn",
|
55
|
+
"uvloop",
|
56
|
+
"xgrammar==0.1.24",
|
57
|
+
]
|
58
|
+
|
59
|
+
srt = [
|
60
|
+
"sglang[runtime_common]",
|
61
|
+
"sgl-kernel==0.3.9.post2",
|
62
|
+
"torch==2.8.0",
|
63
|
+
"torchaudio==2.8.0",
|
64
|
+
"torchvision",
|
65
|
+
"cuda-python",
|
66
|
+
"flashinfer_python==0.3.1",
|
67
|
+
]
|
68
|
+
|
69
|
+
blackwell = [
|
70
|
+
"sglang[runtime_common]",
|
71
|
+
"sgl-kernel==0.3.9.post2",
|
72
|
+
"torch==2.8.0",
|
73
|
+
"torchaudio==2.8.0",
|
74
|
+
"torchvision",
|
75
|
+
"cuda-python",
|
76
|
+
"flashinfer_python==0.3.1",
|
77
|
+
"nvidia-cutlass-dsl==4.1.0",
|
78
|
+
]
|
79
|
+
|
80
|
+
# HIP (Heterogeneous-computing Interface for Portability) for AMD
|
81
|
+
# => base docker rocm/vllm-dev:20250114, not from public vllm whl
|
82
|
+
srt_hip = [
|
83
|
+
"sglang[runtime_common]",
|
84
|
+
"torch",
|
85
|
+
"petit_kernel==0.0.2",
|
86
|
+
"wave-lang==3.7.0",
|
87
|
+
]
|
88
|
+
|
89
|
+
# https://docs.sglang.ai/platforms/cpu_server.html
|
90
|
+
srt_cpu = ["sglang[runtime_common]", "intel-openmp"]
|
91
|
+
|
92
|
+
# https://docs.sglang.ai/platforms/ascend_npu.html
|
93
|
+
srt_npu = ["sglang[runtime_common]"]
|
94
|
+
|
95
|
+
# xpu is not enabled in public vllm and torch whl,
|
96
|
+
# need to follow https://docs.vllm.ai/en/latest/getting_started/xpu-installation.htmlinstall vllm
|
97
|
+
srt_xpu = ["sglang[runtime_common]"]
|
98
|
+
|
99
|
+
# For Intel Gaudi(device : hpu) follow the installation guide
|
100
|
+
# https://docs.vllm.ai/en/latest/getting_started/gaudi-installation.html
|
101
|
+
srt_hpu = ["sglang[runtime_common]"]
|
102
|
+
|
103
|
+
openai = ["openai==1.99.1", "tiktoken"]
|
104
|
+
anthropic = ["anthropic>=0.20.0"]
|
105
|
+
litellm = ["litellm>=1.0.0"]
|
106
|
+
torch_memory_saver = ["torch_memory_saver==0.0.8"]
|
107
|
+
decord = ["decord"]
|
108
|
+
test = [
|
109
|
+
"accelerate",
|
110
|
+
"expecttest",
|
111
|
+
"jsonlines",
|
112
|
+
"matplotlib",
|
113
|
+
"pandas",
|
114
|
+
"peft",
|
115
|
+
"sentence_transformers",
|
116
|
+
"pytest",
|
117
|
+
"tabulate",
|
118
|
+
]
|
119
|
+
all = ["sglang[srt]", "sglang[openai]", "sglang[anthropic]", "sglang[torch_memory_saver]", "sglang[decord]"]
|
120
|
+
all_hip = ["sglang[srt_hip]", "sglang[openai]", "sglang[anthropic]", "sglang[decord]"]
|
121
|
+
all_xpu = ["sglang[srt_xpu]", "sglang[openai]", "sglang[anthropic]", "sglang[decord]"]
|
122
|
+
all_hpu = ["sglang[srt_hpu]", "sglang[openai]", "sglang[anthropic]", "sglang[decord]"]
|
123
|
+
all_cpu = ["sglang[srt_cpu]", "sglang[openai]", "sglang[anthropic]", "sglang[decord]"]
|
124
|
+
all_npu = ["sglang[srt_npu]", "sglang[openai]", "sglang[anthropic]", "sglang[decord]"]
|
125
|
+
|
126
|
+
dev = ["sglang[all]", "sglang[test]"]
|
127
|
+
dev_hip = ["sglang[all_hip]", "sglang[test]"]
|
128
|
+
dev_xpu = ["sglang[all_xpu]", "sglang[test]"]
|
129
|
+
dev_hpu = ["sglang[all_hpu]", "sglang[test]"]
|
130
|
+
dev_cpu = ["sglang[all_cpu]", "sglang[test]"]
|
131
|
+
|
132
|
+
[project.urls]
|
133
|
+
"Homepage" = "https://github.com/sgl-project/sglang"
|
134
|
+
"Bug Tracker" = "https://github.com/sgl-project/sglang/issues"
|
135
|
+
|
136
|
+
[tool.setuptools.package-data]
|
137
|
+
"sglang" = [
|
138
|
+
"srt/layers/moe/fused_moe_triton/configs/*/*.json",
|
139
|
+
"srt/layers/quantization/configs/*.json",
|
140
|
+
"srt/mem_cache/storage/hf3fs/hf3fs_utils.cpp",
|
141
|
+
]
|
142
|
+
|
143
|
+
[tool.setuptools.packages.find]
|
144
|
+
exclude = [
|
145
|
+
"assets*",
|
146
|
+
"benchmark*",
|
147
|
+
"docs*",
|
148
|
+
"dist*",
|
149
|
+
"playground*",
|
150
|
+
"scripts*",
|
151
|
+
"tests*",
|
152
|
+
]
|
153
|
+
|
154
|
+
[tool.wheel]
|
155
|
+
exclude = [
|
156
|
+
"assets*",
|
157
|
+
"benchmark*",
|
158
|
+
"docs*",
|
159
|
+
"dist*",
|
160
|
+
"playground*",
|
161
|
+
"scripts*",
|
162
|
+
"tests*",
|
163
|
+
]
|
164
|
+
|
165
|
+
[tool.codespell]
|
166
|
+
ignore-words-list = "ans, als, hel, boostrap, childs, te, vas, hsa, ment"
|
167
|
+
skip = "*.json,*.jsonl,*.patch,*.txt"
|