We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9e2e9b commit 7613ae3Copy full SHA for 7613ae3
vllm_ascend/quantization/quantizer.py
@@ -47,14 +47,8 @@ def get_quantizer(cls,
47
if quantization_algorithm in CUSTOMIZED_QUANTIZER_TYPE:
48
return
49
50
- try:
51
- module = importlib.import_module("mindie_turbo")
52
- MindIETurboQuantizer = module.MindIETurboQuantizer
53
- return MindIETurboQuantizer.get_quantizer(quant_config, prefix,
54
- packed_modules_mapping)
55
- except ImportError:
56
- return VLLMAscendQuantizer.get_quantizer(quant_config, prefix,
57
+ return VLLMAscendQuantizer.get_quantizer(quant_config, prefix,
+ packed_modules_mapping)
58
59
def build_linear_method(self):
60
raise NotImplementedError
0 commit comments