Intel® Distribution of OpenVINO™ Toolkit Long-Term Support (LTS)

ID 780179
Updated 4/11/2024
Version
Public

author-image

By

New and changed in OpenVINO toolkit 2023.3 LTS

Summary of major features and improvements  
 

  • More Generative AI coverage and framework integrations to minimize code changes.
    • Introducing OpenVINO Gen AI repository on GitHub that demonstrates native C and C++ pipeline samples for Large Language Models (LLMs).  String tensors are now supported as inputs and tokenizers natively to reduce overhead and ease production. ​
    • New and noteworthy models validated; Mistral, Zephyr, Qwen, ChatGLM3, and Baichuan.  
    • New Jupyter Notebooks for Latent Consistency Models (LCM) and  Distil-Whisper. Updated LLM Chatbot notebook to include LangChain, Neural Chat, TinyLlama, ChatGLM3, Qwen, Notus, and Youri models.
    • Torch.compile is now fully integrated with OpenVINO, which now includes a hardware 'options' parameter allowing for seamless inference hardware selection by leveraging the plugin architecture in OpenVINO. ​
  • Broader Large Language Model (LLM) support and more model compression techniques.
    • As part of the Neural Network Compression Framework (NNCF),  INT4 weight compression model formats are now fully supported on Intel® Xeon® CPUs  in addition to Intel® Core™ and iGPU, adding more performance, lower memory usage, and accuracy opportunity when using LLMs.​
    • Improved performance of transformer-based LLM on CPU and GPU using stateful model technique to increase memory efficiency where internal states are shared among multiple iterations of inference.  ​
    • Easier optimization and conversion of Hugging Face models – compress LLM models to INT8 and INT4 with Hugging Face Optimum command line interface and export models to OpenVINO format.  Note this is part of Optimum-Intel which needs to be installed separately.
    • Tokenizer and TorchVision transform support is now available in the OpenVINO runtime (via new API) requiring less preprocessing code and enhancing performance by automatically handling this model setup.  More details on Tokenizers support in the Ecosystem section.
  • More portability and performance to run AI at the edge, in the cloud, or locally.
    • Full support for 5th Gen Intel® Xeon® Scalable processors (codename Emerald Rapids)
    • Further optimized performance on Intel® Core™ Ultra (codename Meteor Lake) CPU with latency hint, by leveraging both P-core and E-cores.​
    • Improved performance on ARM platforms using throughput hint, which increases efficiency in utilization of CPU cores and memory bandwidth.​
    • Preview JavaScript API to enable node JS development to access JavaScript binding via source code.​ See details below.
    • Improved model serving of LLMs through OpenVINO Model Server.  This not only enables LLM serving over KServe v2 gRPC and REST APIs for more flexibility but also improves throughput by running processing like tokenization on the server side.​ More details in the Ecosystem section.
       

Support Change and Deprecation Notices 

  • The OpenVINO™ Development Tools package (pip install openvino-dev) is deprecated and will be removed from installation options and distribution channels beginning with the 2025.0 release. For more details, refer to the OpenVINO Legacy Features and Components page.  
  • Ubuntu 18.04 support is discontinued in the 2023.3 LTS release.  The recommended version of Ubuntu is 22.04.
  • Starting with 2023.3 OpenVINO longer supports Python 3.7 due to the Python community discontinuing support. Update to a newer version (currently 3.8-3.11) to avoid interruptions.  
  • All ONNX Frontend legacy API (known as ONNX_IMPORTER_API) will no longer be available in the 2024.0 release.
  • 'PerfomanceMode.UNDEFINED' property as part of the OpenVINO Python API will be discontinued in the 2024.0 release.
  • Tools: 
    • Deployment Manager is deprecated and will be supported for two years according to the LTS policy. Visit the selector tool to see package distribution options or the deployment guide documentation.
    • Accuracy Checker is deprecated and will be discontinued with 2024.0.   
    • Post-Training Optimization Tool (POT)  has been deprecated and the 2023.3 LTS is the last release that supports the tool.  Developers are encouraged to use the Neural Network Compression Framework (NNCF) for this feature.
    • Model Optimizer is deprecated and will be fully supported until the 2025.0 release. We encourage developers to perform model conversion through OpenVINO Model Converter (API call: OVC). Follow the model conversion transition guide for more details.
    • Deprecated support for a git patch for NNCF integration with huggingface/transformers. The recommended approach is to use huggingface/optimum-intel for applying NNCF optimization on top of models from Hugging Face.
    • Support for Apache MXNet, Caffe, and Kaldi model formats is deprecated and will be discontinued with the 2024.0 release.
  • Runtime:
    • Intel® Gaussian & Neural Accelerator (Intel® GNA) will be deprecated in a future release. We encourage developers to use the Neural Processing Unit (NPU) for low-powered systems like Intel® CoreTM Ultra or 14th generation and beyond.  
    • OpenVINO C++/C/Python 1.0 APIs are deprecated and will be discontinued in the 2024.0 release. Please use API 2.0 in your applications going forward to avoid disruption.
    • OpenVINO property Affinity API will be deprecated from 2024.0 and will be discontinued in 2025.0.  It will be replaced with CPU binding configurations (ov::hint::enable_cpu_pinning).

 

OpenVINO™ Development Tools

  • List of components and their changes: 
    • Neural Network Compression Framework (NNCF)
      • Weight compression API, nncf.compress_weights(), has been extended by
        • When using the ‘all_layers’ parameter, it compresses the model, including embeddings and final layers, to the 4-bit format. This helps make the model footprint smaller and improves performance, but it might impact the model accuracy. By default, this parameter is disabled, and the backup precision (INT8) is assigned for the embeddings and last layers.
        • When using INT8_SYM compression mode for better performance of the compressed model in case of 8-bit weight compression you might experience an impact on model accuracy therefore by default, we use INT8_ASYM mode to better balance performance and accuracy.
        • We implemented a 4-bit data-aware weight compression feature, introducing the 'dataset' optional parameter in nncf.compress_weights(). This parameter can be utilized to mitigate accuracy loss in compressed models. It's important to note that enabling this option will extend the compression time
        • Post-training Quantization with Accuracy Control, nncf. quantize_with_accuracy_control(), has been extended by the  ‘restore_mode’ optional parameter to revert weights to INT8 instead  of the original precision. This parameter helps to reduce the size of the quantized model and improves its performance. By default, it is disabled and model weights are reverted to the original precision in nncf.quantize_with_accuracy_control().

OpenVINO™ Runtime

  • Model Import Updates  
    • TensorFlow Framework Support
      • Supported TF1 While Control flow construction w/o TensorArray* operations #20800
      • Support for complex tensors has been added #20860, #21477
      • Provided fixes for the following:
        • Accept any model file extension for frozen protobuf format #21508
        • Correct ArgMin/ArgMax translators for repeating elements case #21364
        • Correct PartitionedCall translator when numbers of external and internal body inputs mismatch #20825
    • PyTorch Framework Support
      • Added support of nested dictionaries and lists as example input
      • Disabled torch.jit.freeze in default model tracing scenario and improved support for models without freezing, extending model coverage and improving accuracy for some models
    • ONNX Framework Support
      • Switched to ONNX 1.15.0 as a supported version of original framework #20929

 

  • CPU 
    • Full support for 5th Gen Intel® Xeon® Scalable processors (codename Emerald Rapids) with sub-numa (SNC) and efficient core resource scheduling to improve performance.
    • Further optimized performance on Intel® Core™ Ultra (codename Meteor Lake) CPU with latency hint, by leveraging both P-core and E-cores.
    • Further improved performance of LLMs in INT4 weight compression, especially on 1st token latency and on 4th and 5th Gen of Intel Xeon platforms (codename Sapphire Rapids and Emerald Rapids) with AMX capabilities.
    • Improved performance of transformer-based LLM using stateful model technique to increase memory efficiency where internal states (KV cache) are shared among multiple iterations of inference. The stateful model implementation supports both greedy search and beam search (preview) for LLMs. This technique also reduces the memory footprint of LLMs, where Intel Core and Ultra platforms like Raptor Lake and Meteor Lake can run INT4 models, such as Llama v2 7B.
    • Improved performance on ARM platforms with throughput hint, by increasing efficiency in usage of the CPU cores and memory bandwidth.
  • GPU 
    • Full support for Intel® Core™ Ultra (codename Meteor Lake) integrated graphics.
    • For LLMs, the first inference latency for INT8 and INT4 weight-compressed models has been improved on iGPU thanks to more efficient context processing. Overall average token latency for INT8 and INT4 has also been enhanced on iGPU with graph compilation optimization, various host overhead optimization, and dynamic padding support for GEMM.
    • Stateful model is functionally supported for LLMs.
    • Model caching for dynamically shaped models is now supported. Model loading time is improved for these models, including LLMs.
    • API for switching between size mode (model caching) and speed mode (kernel caching) is introduced.
    • The model cache file name is changed to be independent of GPU driver versions. The GPU will not generate separate model cache files when the driver is updated.
    • Compilation time for Stable Diffusion models has been improved.
  • NPU
    • NPU plugin  is available as part of OpenVINO. With the Intel® Core Ultra NPU driver installed, inference can run on the NPU device.
  • AUTO device plug-in (AUTO)
    • Introduced the round-robin policy to AUTO cumulative throughput hint, which dispatches inference requests to multiple devices (such as multiple GPU devices) in the round-robin sequence, instead of in the device priority sequence. The device priority sequence remains as the default configuration.
    • AUTO loads stateful models to GPU or CPU per device priority, since GPU now supports stateful model inference.
       
  • OpenVINO Common
    • Enhanced support of String tensors has been implemented, enabling the use of operators and models that rely on string tensors.  This update also enhances the capability in the torchvision preprocessing (#21244).
    • A new feature has been added that enables the selection of P-Cores for model compilation on CPU device(s) with hybrid architecture (i.e. Intel® Core™ 12th Gen and beyond).  This will reduce compilation time compared to previous implementation where P-cores and E-cores are used randomly by OS scheduling.
       
  • OpenVINO JavaScript API (preview feature)
    • We’ve introduced a preview version of JS API for OpenVINO runtime in this release.  We hope that you will try this feature and provide your feedback through GitHub issues
    • Known limitations:
      •  Only supported in manylinux and x86
         (Windows, ARM, ARM64, and macOS have not been tested)
      • Node.js version >= 18.16
      • CMake version < 3.14 is not supported
      • gcc compiler version < 7 is not supported
         
  • OpenVINO Python API
    • Introducing string tensor support for Python API.
    • Added support for the following:
      • Create ov.Tensor from Python lists
      • Create ov.Tensor from empty numpy arrays.
      • Constants from empty numpy arrays.
      • Autogenerated get/set methods for Node attributes.
      • Inference functions (InferRequest.infer/start_async, CompiledModel.__call__ etc.) support OVDict as the input.
      •  PILLOW interpolation modes bindings. (external contribution: @meetpatel0963 #21188)
    • Torchvision to OpenVINO preprocessing converter documentation has been added to OpenVINO docs.

 

OpenVINO Ecosystem 

OpenVINO Tokenizer (Preview)  

OpenVINO Tokenizer adds text processing operations to OpenVINO:

  • Text PrePostprocessing without third-party dependencies.
  • Convert a HuggingFace tokenizer into the OpenVINO model tokenizer and the detokenizer using a CLI tool or Python API.
  • Connect a tokenizer and a model to get a single model with text input.

OpenVINO Tokenizer models work only on the CPU device

Supported platforms: Linux (x86 and ARM), Windows and Mac (x86 and ARM)

OpenVINO Model Server 

Jupyter Notebook Tutorials 

The following notebooks have been updated or newly added:   


Added optimization support (8-bit quantization, weight compression) by NNCF for the following notebooks: 

Known Issues 

  

ID 

Description 

Component 

Workaround 

 

127202

Deeplabv3 model from TF framework shows lower performance than previous release. This is because the TopK layer in the model is now correctly conducting the stable sort as specified by the model, slower than the previous unstable sort.

CPU Plugin

This release has the correct behavior. If performance is critical, please use the previous version of OpenVINO, or tune the model.

 

123101

Hung up of GPU plugin on A770 Graphics (dGPU) in case of large batch size (1750)

GPU plugin

Decrease the batch size, and wait for the fixed driver to be released. 

 

System Requirements 

Disclaimer. Certain hardware (including but not limited to GPU, GNA, and latest CPUs) requires manual installation of specific drivers and/or other software components to work correctly and/or to utilize hardware capabilities at their best. This might require updates to operating system, including but not limited to Linux kernel, please refer to their documentation for details. These modifications should be handled by user and are not part of OpenVINO installation.  

NOTES: 

  • This installation requires drivers that are not included in the Intel® Distribution of OpenVINO™ toolkit package.  Users can access the NPU plugin through the OpenVINO archives on the download page.
  • A chipset that supports processor graphics is required for Intel® Xeon® processors. Processor graphics are not included in all processors. See  Product Specifications for information about your processor.  
  • While this release of OpenVINO supports Ubuntu 20.04, the driver stack for Intel discrete graphic cards does not fully support Ubuntu 20.04.  We recommend using Ubuntu 22.04 when executing on discrete graphics.  
  • The following minimum (i.e., used for old hardware) OpenCL™ driver's versions were used during OpenVINO internal validation:  22.43 for Ubuntu* 22.04, 21.48 for Ubuntu* 20.04 and 21.49 for Red Hat Enterprise Linux* 8.  

 

Intel CPU processors with corresponding operating systems  

Intel Atom® processor with Intel® SSE4.2 support  

Intel® Pentium® processor N4200/5, N3350/5, N3450/5 with Intel® HD Graphics  

6th - 14th generation Intel® Core™ processors 

Intel® Core™ Ultra (code name Meteor Lake) 

1st - 5th generation Intel® Xeon® Scalable Processors

ARM and ARM64 CPUs; Apple M1, M2 and Raspberry Pi

Operating Systems: 

  • Ubuntu* 22.04 long-term support (LTS), 64-bit (Kernel 5.15+) 
  • Ubuntu* 20.04 long-term support (LTS), 64-bit (Kernel 5.15+) 
  • Ubuntu* 18.04 long-term support (LTS) with limitations, 64-bit (Kernel 5.4+) 
  • Windows* 10  
  • Windows* 11  
  • macOS* 10.15 and above, 64-bit 
  • macOS 11 and above, ARM64
  • CentOS 7
  • Red Hat Enterprise Linux* 8, 64-bit 
  • Ubuntu 18 ARM64
  • Debian 9 ARM


Intel® Processor Graphics with corresponding operating systems (GEN Graphics)  

Intel® HD Graphics  

Intel® UHD Graphics  

Intel® Iris® Pro Graphics  

Intel® Iris® Xe Graphics  

Intel® Iris® Xe Max Graphics  

Intel® Arc ™ GPU Series  

Intel® Data Center GPU Flex Series   

Intel® Data Center GPU Max Series   

Operating Systems: 

  • Ubuntu 22.04 long-term support (LTS), 64-bit 
  • Ubuntu 20.04 long-term support (LTS), 64-bit 
  • Windows 10, 64-bit  
  • Windows 11, 64-bit 
  • CentOS 7
  • Red Hat Enterprise Linux 8, 64-bit 

 

Intel® Neural Processing Unit with corresponding operating systems 

Operating Systems: 

  • Ubuntu 22.04 long-term support (LTS), 64-bit 
  • Windows 11, 64-bit 

Intel® Gaussian & Neural Accelerator  

Operating Systems: 

  • Ubuntu 22.04 long-term support (LTS), 64-bit 
  • Ubuntu 20.04 long-term support (LTS), 64-bit 
  • Windows 10, 64-bit  
  • Windows 11, 64-bit 

Operating systems and developer environment requirements: 

  • Linux OS  
    • Ubuntu 22.04 with Linux kernel 5.15+ 
    • Ubuntu 20.04 with Linux kernel 5.15+ 
    • Red Hat Enterprise Linux 8 with Linux kernel 5.4 
    • A Linux OS build environment needs these components:  
    • Higher versions of kernel might be required for 10th Gen Intel® Core™ Processors, 11th Gen Intel® Core™ Processors, 11th Gen Intel® Core™ Processors S-Series Processors, 12th Gen Intel® Core™ Processors, 13th Gen Intel® Core™ Processors, 14th Gen Intel® Core™ Processors, Intel® Core™ Ultra Processors, 4th Gen Intel® Xeon® Scalable Processors or 5th Gen Intel® Xeon® Scalable Processors to support CPU, GPU, GNA or hybrid-cores CPU capabilities. 
  • Windows 10 and 11
  • macOS 10.15 and above  
  • DL frameworks versions: 
    • TensorFlow 1.15, 2.12 
    • MxNet 1.9.0
    • ONNX 1.14.1
    • PaddlePaddle 2.4 
    • Note: This package can be installed on other versions of DL Framework but only the specified version above are fully validated. 

NOTE: OpenVINO Python binaries and binaries on Windows, CentOS 7, macOS (x86) are built with oneTBB libraries, and others on Ubuntu and RedHat OS systems are built with legacy TBB which is released by OS distribution. OpenVINO supports being built with oneTBB or legacy TBB from source on all above OS systems. System compatibility and performance were improved on Hybrid CPUs like 12th Gen Intel Core and above. 

Included in This Release 

The Intel® Distribution of OpenVINO™ toolkit is available for downloading in three types of operating systems: Windows, Linux, and macOS.  

Component 

License 

Location 

Windows 

Linux 

macOS 

OpenVINO (Inference Engine) C++ Runtime 

Unified API to integrate the inference with application logic 

OpenVINO (Inference Engine) Headers 

Dual licensing: 

Intel® OpenVINO™ Distribution License (Version May 2021) 

Apache 2.0 

<install_root>/runtime/* 

  

  

<install_root>/runtime/include/* 

Yes 

Yes 

Yes 

OpenVINO (Inference Engine) Python API 

Apache 2.0 

<install_root>/python/* 

Yes 

Yes 

Yes 

OpenVINO (Inference Engine) Samples 

Samples that illustrate OpenVINO C++/ Python API usage 

Apache 2.0 

<install_root>/samples/* 

Yes 

Yes 

Yes 

[Deprecated] Deployment manager 

The Deployment Manager is a Python* command-line tool that creates a deployment package by assembling the model, IR files, your application, and associated dependencies into a runtime package for your target device. 

Apache 2.0 

<install_root>/tools/deployment_manager/* 

Yes 

Yes 

Yes 

  

Helpful Links 

NOTE: Links open in a new window. 

Home Page 

Featured Documentation 

All Documentation, Guides, and Resources 

Community Forum 

Legal Information  

You may not use or facilitate the use of this document in connection with any infringement or other legal analysis concerning Intel products described herein. You agree to grant Intel a non-exclusive, royalty-free license to any patent claim thereafter drafted which includes subject matter disclosed herein.  

No license (express or implied, by estoppel or otherwise) to any intellectual property rights is granted by this document.  

All information provided here is subject to change without notice. Contact your Intel representative to obtain the latest Intel product specifications and roadmaps.  

The products described may contain design defects or errors known as errata which may cause the product to deviate from published specifications. Current characterized errata are available on request.  

Intel technologies’ features and benefits depend on system configuration and may require enabled hardware, software or service activation. Learn more at http://www.intel.com/ or from the OEM or retailer.  

No computer system can be absolutely secure.  

Intel, Atom, Arria, Core, Movidius, Xeon, OpenVINO, and the Intel logo are trademarks of Intel Corporation in the U.S. and/or other countries.  

OpenCL and the OpenCL logo are trademarks of Apple Inc. used by permission by Khronos  

Other names and brands may be claimed as the property of others.  

Copyright © 2023, Intel Corporation. All rights reserved.  

For more complete information about compiler optimizations, see our Optimization Notice.  

 

Product and Performance Information

Performance varies by use, configuration and other factors. Learn more at www.Intel.com/PerformanceIndex.