Article · Wikipedia archive · Last revised Jun 12, 2026

OpenVINO

OpenVINO is an open-source software toolkit developed by Intel for optimizing and deploying deep learning models. It supports several popular model formats and categories, such as large language models, computer vision, and generative AI.

Last revised
Jun 12, 2026
Read time
≈ 2 min
Length
489 w
Citations
10
Source
OpenVINO
DeveloperIntel Corporation
Initial releaseMay 16, 2018 (2018-05-16)
Stable release
2026.1.01 Edit this on Wikidata / 8 April 2026
Written inC++
Operating systemCross-platform
LicenseApache License 2.0
Websiteopenvino.ai
Repositorygithub.com/openvinotoolkit/openvino
As ofFebruary 2026

OpenVINO is an open-source software toolkit developed by Intel for optimizing and deploying deep learning models. It supports several popular model formats2 and categories, such as large language models, computer vision, and generative AI.

OpenVINO is optimized for Intel hardware, but offers support for ARM/ARM64 processors.2 It sees great use in AI Sound Processing drivers when tied with Intel's Gaussian & Neural Accelerator (GNA).

Based in C++, it extends API support for C and Python, as well as Node.js (in early preview).

OpenVINO is cross-platform and free for use under Apache License 2.0.3

Workflow

The simplest OpenVINO usage involves obtaining a model and running it as is. Yet for the best results, a more complete workflow is suggested:4

  • obtain a model in one of supported frameworks,
  • convert the model to OpenVINO IR using the OpenVINO Converter tool,
  • optimize the model, using training-time or post-training options provided by OpenVINO's NNCF.5
  • execute inference, using OpenVINO Runtime by specifying one of several inference modes.

OpenVINO model format

OpenVINO IR6 is the default format used to run inference. It is saved as a set of two files, *.bin and *.xml, containing weights and topology, respectively. It is obtained by converting a model from one of the supported frameworks, using the application's API or a dedicated converter.

Models of the supported formats may also be used for inference directly, without prior conversion to OpenVINO IR. Such an approach is more convenient but offers fewer optimization options and lower performance, since the conversion is performed automatically before inference. Some pre-converted models can be found in the Hugging Face repository.7

The supported model formats are:8

  • PyTorch
  • TensorFlow
  • TensorFlow Lite
  • ONNX (including formats that may be serialized to ONNX)
  • PaddlePaddle
  • JAX/Flax

OS support

OpenVINO runs on Windows, Linux and MacOS.9

See also

See also

References

References

  1. "2026.1.0". 8 April 2026. Retrieved 9 April 2026.
  2. "OpenVINO Compatibility and Support". OpenVINO Documentation. 24 January 2024.
  3. "License". OpenVINO repository. 16 October 2018.
  4. "OpenVINO Workflow". OpenVINO Documentation. 25 April 2024.
  5. "openvinotoolkit/nncf". OpenVINO™ Toolkit. Retrieved 8 April 2026.
  6. "OpenVINO IR". www.docs.openvino.ai. 2 February 2024.
  7. "Hugging Face OpenVINO Space". Hugging Face.
  8. "OpenVINO Model Preparation". OpenVINO Documentation. 24 January 2024.
  9. "System Requirements". OpenVINO Documentation. February 2024.
External links