14 lines
544 B
Python
14 lines
544 B
Python
from vllm.model_executor.layers.quantization import QUANTIZATION_METHODS
|
|
from vllm.platforms import current_platform
|
|
|
|
|
|
def is_quant_method_supported(quant_method: str) -> bool:
|
|
# Currently, all quantization methods require Nvidia or AMD GPUs
|
|
if not (current_platform.is_cuda() or current_platform.is_rocm()):
|
|
return False
|
|
|
|
capability = current_platform.get_device_capability()
|
|
capability = capability[0] * 10 + capability[1]
|
|
return (capability >=
|
|
QUANTIZATION_METHODS[quant_method].get_min_capability())
|