Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,7 @@
per_tensor_dequantize,
replace_parameter,
)
from sglang.srt.utils import (
get_bool_env_var,
is_cpu,
is_cuda,
is_hip,
is_npu,
set_weight_attrs,
)
from sglang.srt.utils import get_bool_env_var, is_hip, set_weight_attrs

if TYPE_CHECKING:
from sglang.srt.layers.moe.fused_moe_triton import FusedMoE
Expand All @@ -49,7 +42,9 @@
from sglang.srt.layers.moe.rocm_moe_utils import rocm_fused_experts_tkw1

try:
import vllm
from vllm.model_executor.layers.quantization.compressed_tensors.schemes.compressed_tensors_wNa16 import (
WNA16_SUPPORTED_BITS,
)

VLLM_AVAILABLE = True
except ImportError:
Expand Down
Loading