Skip to content

Commit c6632b4

Browse files
Merge branch 'openvinotoolkit:develop' into support-transpose
2 parents 86ee4d8 + 349603f commit c6632b4

54 files changed

Lines changed: 1507 additions & 198 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/api_set_label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- name: Download artifact
2020
id: download-artifact
21-
uses: dawidd6/action-download-artifact@0bd50d53a6d7fb5cb921e607957e9cc12b4ce392 # v12
21+
uses: dawidd6/action-download-artifact@5c98f0b039f36ef966fdb7dfa9779262785ecb05 # v14
2222
with:
2323
run_id: ${{ github.event.workflow_run.id }}
2424
name: api_status

.github/workflows/call_precommit.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
python-version: ${{ inputs.python_version }}
3535
- name: Install uv
36-
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
36+
uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
3737
- name: Override constraints
3838
if: ${{ inputs.override_requirements != '' }}
3939
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"
@@ -61,7 +61,7 @@ jobs:
6161
with:
6262
python-version: ${{ inputs.python_version }}
6363
- name: Install uv
64-
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
64+
uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
6565
- name: Override constraints
6666
if: ${{ inputs.override_requirements != '' }}
6767
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"
@@ -89,7 +89,7 @@ jobs:
8989
with:
9090
python-version: ${{ inputs.python_version }}
9191
- name: Install uv
92-
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
92+
uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
9393
- name: Override constraints
9494
if: ${{ inputs.override_requirements != '' }}
9595
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"
@@ -117,7 +117,7 @@ jobs:
117117
with:
118118
python-version: ${{ inputs.python_version }}
119119
- name: Install uv
120-
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
120+
uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
121121
- name: Install test requirements
122122
run: uv pip install --system . -r tests/tools/requirements.txt
123123
- name: Print installed modules
@@ -139,7 +139,7 @@ jobs:
139139
with:
140140
python-version: ${{ inputs.python_version }}
141141
- name: Install uv
142-
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
142+
uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
143143
- name: Override constraints
144144
if: ${{ inputs.override_requirements != '' }}
145145
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"
@@ -183,7 +183,7 @@ jobs:
183183
with:
184184
python-version: ${{ inputs.python_version }}
185185
- name: Install uv
186-
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
186+
uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
187187
- name: Override constraints
188188
if: ${{ inputs.override_requirements != '' }}
189189
run: python .github/scripts/override_constraints.py "${{ inputs.override_requirements }}"

.github/workflows/conformance_weight_compression.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
python-version: 3.10.14
4040
- name: Install uv
41-
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
41+
uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
4242
- name: cpuinfo
4343
run: cat /proc/cpuinfo
4444
- name: Install NNCF and test requirements

.github/workflows/examples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
python -m pytest -s -ra tests/cross_fw/examples \
6363
-m 'not cuda' \
6464
--junit-xml=pytest-results.xml \
65-
--durations-path=tests/cross_fw/examples/.test_durations \
65+
--durations-path=tests/cross_fw/examples/test_durations.json \
6666
--splitting-algorithm=least_duration \
6767
--splits 6 \
6868
--group ${{ matrix.group }} \
@@ -132,7 +132,7 @@ jobs:
132132
python -m pytest -s -ra tests/cross_fw/examples \
133133
-m cuda \
134134
--junit-xml=pytest-results.xml \
135-
--durations-path=tests/cross_fw/examples/.test_durations \
135+
--durations-path=tests/cross_fw/examples/test_durations.json \
136136
--splitting-algorithm=least_duration \
137137
--splits 1 \
138138
--group ${{ matrix.group }} \
@@ -194,7 +194,7 @@ jobs:
194194
python -m pytest -s -ra tests/cross_fw/examples \
195195
-m 'not cuda' \
196196
--junit-xml=pytest-results.xml \
197-
--durations-path=tests/cross_fw/examples/.test_durations \
197+
--durations-path=tests/cross_fw/examples/test_durations.json \
198198
--splitting-algorithm=least_duration \
199199
--splits 6 \
200200
--group ${{ matrix.group }} \

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
timeout-minutes: 10
2222
steps:
2323
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
24-
- uses: AlexanderDokuchaev/md-dead-link-check@d5a37e0b14e5918605d22b34562532762ccb2e47 # v1.2.0
24+
- uses: AlexanderDokuchaev/md-dead-link-check@5b5641a92ec95d13a5b04927e0e11de5c3405298 # v1.3.0
2525

2626
weight-compression:
2727
if: github.repository_owner == 'openvinotoolkit'

.github/workflows/pre-commit-linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
timeout-minutes: 10
2727
steps:
2828
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
29-
- uses: AlexanderDokuchaev/md-dead-link-check@d5a37e0b14e5918605d22b34562532762ccb2e47 # v1.2.0
29+
- uses: AlexanderDokuchaev/md-dead-link-check@5b5641a92ec95d13a5b04927e0e11de5c3405298 # v1.3.0
3030

.github/workflows/sdl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
with:
4040
lfs: true
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
42+
uses: github/codeql-action/init@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
4343
with:
4444
languages: python
4545
- name: Perform CodeQL Analysis
46-
uses: github/codeql-action/analyze@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
46+
uses: github/codeql-action/analyze@6bc82e05fd0ea64601dd4b465378bbcf57de0314 # v4.32.1
4747
with:
4848
category: "/language:python"
4949

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ Here is an example of Accuracy Aware Quantization pipeline where model weights a
213213

214214
```python
215215
import nncf
216-
import nncf.torch
217216
import torch
218217
from torchvision import datasets, models
219218

constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pytest-dependency==0.6.0
1919
pytest-ordering==0.6
2020
pytest-xdist==3.5.0
2121
pytest-forked==1.6.0
22-
pytest-split==0.9.0
22+
pytest-split==0.11.0
2323

2424
datasets==4.5.0
2525
matplotlib==3.10.8

docs/usage/training_time_compression/quantization_aware_training/Usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The quantized model saving allows to load quantized modules to the target model
4747
requires only example input for the target module, corresponding NNCF config and the quantized model state dict.
4848

4949
```python
50-
import nncf.torch
50+
import nncf
5151

5252
# save part
5353
quantized_model = nncf.quantize(model, calibration_dataset)

0 commit comments

Comments
 (0)