You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
performance improvement, compared to pure BF16 inference.
51
+
* Reduced memory consumption of compile model stage by moving constant folding of Transpose
52
+
nodes to the CPU Runtime side.
53
+
* Set FP16 inference precision by default for non-convolution networks on ARM. Convolution
54
+
network will be executed in FP32.
55
+
56
+
* GPU runtime: Added paddings for dynamic convolutions to improve performance for models like
57
+
Stable-Diffusion v2.1.
58
+
59
+
* Python API:
60
+
61
+
* Added the ``torchvision.transforms`` object to OpenVINO preprocessing.
62
+
* Moved all python tools related to OpenVINO into a single namespace,
63
+
improving user experience with better API readability.
64
+
65
+
* TensorFlow FE:
66
+
67
+
* Added support for the TensorFlow 1 Checkpoint format. All native TensorFlow formats are now enabled.
68
+
* Added support for 8 new operations:
69
+
70
+
* MaxPoolWithArgmax
71
+
* UnravelIndex
72
+
* AdjustContrastv2
73
+
* InvertPermutation
74
+
* CheckNumerics
75
+
* DivNoNan
76
+
* EnsureShape
77
+
* ShapeN
78
+
79
+
* PyTorch FE:
80
+
81
+
* Added support for 6 new operations. To know how to enjoy PyTorch models conversion follow
82
+
this `Link <https://docs.openvino.ai/2023.0/openvino_docs_MO_DG_prepare_model_convert_model_Convert_Model_From_PyTorch.html#experimental-converting-a-pytorch-model-with-pytorch-frontend>`__
`Check on GitHub <https://github.com/openvinotoolkit/openvino/releases/tag/2023.1.0.dev20230728>`__
39
121
@@ -55,7 +137,7 @@ Please file a github Issue on these with the label “pre-release” so we can g
55
137
56
138
* Frameworks:
57
139
58
-
- PyTorch Updates: OpenVINO now supportsoriginally quantized PyTorch models, including models produced with the Neural Network Compression Framework (NNCF).
140
+
- PyTorch Updates: OpenVINO now supportsoriginally quantized PyTorch models, including models produced with the Neural Network Compression Framework (NNCF).
59
141
- TensorFlow FE: Now supports Switch/Merge operations, bringing TensorFlow 1.x control flow support closer to full compatibility and enabling more models.
60
142
- Python API: Python Conversion API is now the primary conversion path, making it easier for Python developers to work with OpenVINO.
0 commit comments