2024-06-13 11:18:08 -04:00
|
|
|
import torch
|
|
|
|
|
|
|
|
from vllm.model_executor.layers.quantization import QUANTIZATION_METHODS
|
|
|
|
|
|
|
|
|
|
|
|
def is_quant_method_supported(quant_method: str) -> bool:
|
|
|
|
# Currently, all quantization methods require Nvidia or AMD GPUs
|
|
|
|
if not torch.cuda.is_available():
|
|
|
|
return False
|
|
|
|
|
|
|
|
capability = torch.cuda.get_device_capability()
|
|
|
|
capability = capability[0] * 10 + capability[1]
|
2024-06-16 10:07:34 -04:00
|
|
|
return (capability >=
|
2024-06-13 11:18:08 -04:00
|
|
|
QUANTIZATION_METHODS[quant_method].get_min_capability())
|