From ef44bf03479aab3ba2703c41cca860231e2301e5 Mon Sep 17 00:00:00 2001 From: Xiaoyu Date: Thu, 6 Feb 2025 18:38:00 +0000 Subject: [PATCH] Update olive config json --- olive/olive_config.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/olive/olive_config.json b/olive/olive_config.json index e3a728a42..873452cc8 100644 --- a/olive/olive_config.json +++ b/olive/olive_config.json @@ -214,29 +214,29 @@ }, "OpenVINOConversion": { "module_path": "olive.passes.openvino.conversion.OpenVINOConversion", - "supported_providers": [ "OpenVINOExecutionProvider" ], - "supported_accelerators": [ "cpu", "gpu", "npu" ], + "supported_providers": [ "*" ], + "supported_accelerators": [ "*" ], "supported_precisions": [ "*" ], "extra_dependencies": [ "openvino" ] }, "OpenVINOQuantization": { "module_path": "olive.passes.openvino.quantization.OpenVINOQuantization", - "supported_providers": [ "OpenVINOExecutionProvider" ], - "supported_accelerators": [ "cpu", "gpu", "npu" ], + "supported_providers": [ "*" ], + "supported_accelerators": [ "*" ], "supported_precisions": [ "*" ], "extra_dependencies": [ "openvino" ] }, "AutoAWQQuantizer": { "module_path": "olive.passes.pytorch.autoawq.AutoAWQQuantizer", - "supported_providers": [ "CPUExecutionProvider" ], - "supported_accelerators": [ "cpu" ], + "supported_providers": [ "*" ], + "supported_accelerators": [ "*" ], "supported_precisions": [ "int4", "int8", "int16", "uint4", "uint8", "uint16" ], "module_dependencies": [ "autoawq" ] }, "GptqQuantizer": { "module_path": "olive.passes.pytorch.gptq.GptqQuantizer", - "supported_providers": [ "CPUExecutionProvider" ], - "supported_accelerators": [ "cpu" ], + "supported_providers": [ "*" ], + "supported_accelerators": [ "*" ], "supported_precisions": [ "int4", "int8", "int16", "uint4", "uint8", "uint16" ], "module_dependencies": [ "auto-gptq", "optimum" ] },