mirror of
https://github.com/vladmandic/automatic
synced 2026-09-18 16:54:33 +02:00
Update OpenVINO to 2024.6.0
This commit is contained in:
+1
-1
@@ -176,7 +176,7 @@ All-in-all, we're around ~160 commits worth of updates, check changelog for full
|
||||
- `GGUF` with pre-quantized weights
|
||||
- Switch `GGUF` loader from custom to diffuser native
|
||||
- **IPEX**: update to IPEX 2.5.10+xpu
|
||||
- **OpenVINO**: update to 2024.5.0
|
||||
- **OpenVINO**: update to 2024.6.0
|
||||
- **Sampler** improvements
|
||||
- UniPC, DEIS, SA, DPM-Multistep: allow FlowMatch sigma method and prediction type
|
||||
- Euler FlowMatch: add sigma methods (*karras/exponential/betas*)
|
||||
|
||||
+3
-3
@@ -652,12 +652,12 @@ def install_ipex(torch_command):
|
||||
|
||||
|
||||
def install_openvino(torch_command):
|
||||
check_python(supported_minors=[8, 9, 10, 11, 12], reason='OpenVINO backend requires Python 3.9, 3.10 or 3.11')
|
||||
check_python(supported_minors=[9, 10, 11, 12], reason='OpenVINO backend requires Python 3.9, 3.10 or 3.11')
|
||||
log.info('OpenVINO: selected')
|
||||
torch_command = os.environ.get('TORCH_COMMAND', 'torch==2.3.1+cpu torchvision==0.18.1+cpu --index-url https://download.pytorch.org/whl/cpu')
|
||||
install(os.environ.get('OPENVINO_PACKAGE', 'openvino==2024.5.0'), 'openvino')
|
||||
install(os.environ.get('OPENVINO_PACKAGE', 'openvino==2024.6.0'), 'openvino')
|
||||
install(os.environ.get('ONNXRUNTIME_PACKAGE', 'onnxruntime-openvino'), 'onnxruntime-openvino', ignore=True)
|
||||
install('nncf==2.12.0', 'nncf')
|
||||
install('nncf==2.14.1', 'nncf')
|
||||
os.environ.setdefault('PYTORCH_TRACING_MODE', 'TORCHFX')
|
||||
if os.environ.get("NEOReadDebugKeys", None) is None:
|
||||
os.environ.setdefault('NEOReadDebugKeys', '1')
|
||||
|
||||
Reference in New Issue
Block a user