Skip to content

Commit 89c6a9e

Browse files
AlexanderDokuchaevl-batdaniil-lyakhovnikita-savelyevvandrey-churkin
authored
[release_v2190] release notes template (#3731)
### Reason for changes Upcoming release ### Related tickets 176350 --------- Co-authored-by: Liubov Talamanova <[email protected]> Co-authored-by: Daniil Lyakhov <[email protected]> Co-authored-by: Nikita Savelyev <[email protected]> Co-authored-by: Andrey Churkin <[email protected]> Co-authored-by: Maksim Proshin <[email protected]> Co-authored-by: Lyalyushkin Nikolay <[email protected]>
1 parent 2caf19b commit 89c6a9e

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

ReleaseNotes.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
# Release Notes
22

3+
## New in Release 2.19.0
4+
5+
Post-training Quantization:
6+
7+
- Breaking changes:
8+
- (OpenVINO) `nncf.CompressWeightsMode.E2M1` `mode` option is renamed to `nncf.CompressWeightsMode.MXFP4`.
9+
- Features:
10+
- The Histogram Aggregator was introduced: it records the running histogram of tensor values and computes the quantization range to minimize the L2 norm of histogram bin quantization error. The Histogram Aggregator improved accuracy metrics for a number of PTQ classification models. It can be activated using `RangeEstimatorParametersSet.HISTOGRAM` through the `AdvancedQuantizationParameters` in `nncf.quantize()`.
11+
- (OpenVINO) Introduced several new compression modes in `nncf.CompressWeightsMode`: `MXFP8`, `FP8`, and `FP4`. These can be used as the `mode` option in `nncf.compress_weights()` to apply the corresponding MXFP8, FP8, or FP4 precisions (experimental).
12+
- Now weight compression bitwidth distribution table also displays group size value for each of the compression data type.
13+
- (ONNX) Support for the SmoothQuant algorithm has been added to the ONNX backend for INT8 quantization.
14+
- (ONNX) A new transformation has been added to optimize models by folding `QuantizeLinear` nodes with constant inputs into precomputed, quantized initializers. This behavior is controlled by the `COMPRESS_WEIGHTS` backend parameter in `nncf.quantize()`, which is now enabled (`True`) by default.
15+
- (ONNX) Support has been added for applying the Fast Bias/Bias Correction algorithm to `MatMul` + `Add` subgraphs where one of the inputs to the `Add` operation is a constant. Previously, these cases were skipped because the `MatMul` operation was not recognized as having a bias, preventing the algorithm from being applied.
16+
- Fixes:
17+
- Added an ignored pattern for position embedding layer in Segment Anything model.
18+
- (ONNX) Fixed incorrect input handling for the `MatMulNBits` operation that previously caused graph breaks.
19+
- (ONNX) Resolved an issue with INT4 weight compression in the `Gemm` operation when `transB=1`.
20+
- Fixed a typo in the `_get_smooth_quant_param_grid()` method reported in [#3613](https://github.com/openvinotoolkit/nncf/issues/3613).
21+
- Improvements:
22+
- Maximum memory consumption during statistic collection has been reduced by releasing model output memory before the next statistic collection inference call.
23+
- Reduced peak memory footprint for Bias Correction algorithm.
24+
- (OpenVINO) Reduced time (by up to 3x) and memory (by up to 1.5x) it takes to compress models to `MXFP4` data type.
25+
- Tutorials:
26+
- [Deployment of a Post-Training Optimized Qwen3 Agent](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/supplementary_materials/notebooks/qwen-3/smolagents/qwen3_agent.ipynb)
27+
- [Post-Training Optimization of ACE Step Model](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/ace-step-music-generation/ace-step-music-generation.ipynb)
28+
- [Post-Training Optimization of Qwen3-VL Model](https://github.com/openvinotoolkit/openvino_notebooks/blob/latest/notebooks/qwen3-vl/qwen3-vl.ipynb)
29+
- Other:
30+
- Refined the handling of layers that don't have channel size divisible by group size during weight compression. Now the default behavior in such case is that an error will be raised and in the error message users are suggested to provide a different group size value or use `GroupSizeFallbackMode.ADJUST` to automatically adjust group size for problematic layers.
31+
32+
Compression-aware training:
33+
34+
- Improvements:
35+
- Optimized `nncf.strip()` for `StripFormat.IN_PLACE` and `example_input` is no longer required.
36+
37+
Deprecations/Removals:
38+
39+
- (TensorFlow) The TensorFlow backend is now deprecated and will be removed in future releases. It is recommended to use PyTorch analogous models for training-aware optimization methods and OpenVINO IR, PyTorch, and ONNX models for post-training optimization methods from NNCF.
40+
- The following experimental NNCF methods are deprecated and will be removed in future releases: NAS, Structural Pruning, AutoML, Knowledge Distillation, Mixed-Precision Quantization, Movement Sparsity.
41+
42+
Requirements:
43+
44+
- Updated PyTorch (2.9.0) and Torchvision (0.24.0) versions.
45+
- Dropped support for Python 3.9.
46+
347
## New in Release 2.18.0
448

549
Post-training Quantization:

0 commit comments

Comments
 (0)