From bee397e8da5e304e993b532211f8c66af33c7ccf Mon Sep 17 00:00:00 2001 From: Disty0 Date: Tue, 21 Nov 2023 14:39:20 +0300 Subject: [PATCH] Fix non-existent OpenVINO version --- installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer.py b/installer.py index adb57121f..5f744bfee 100644 --- a/installer.py +++ b/installer.py @@ -515,8 +515,8 @@ def check_torch(): if opts.get('cuda_compile_backend', '') == 'hidet': install('hidet', 'hidet') if args.use_openvino or opts.get('cuda_compile_backend', '') == 'openvino_fx': - uninstall('openvino') - install('openvino-nightly==2023.2.0.dev20231102', 'openvino-nightly') + uninstall('openvino-nightly') # TODO remove after people had enough time upgrading + install('openvino==2023.2.0', 'openvino') install('onnxruntime-openvino', 'onnxruntime-openvino', ignore=True) # TODO numpy version conflicts with tensorflow and doesn't support Python 3.11 os.environ.setdefault('PYTORCH_TRACING_MODE', 'TORCHFX') os.environ.setdefault('NEOReadDebugKeys', '1')