Skip to content

Commit b34d24e

Browse files
Release v2.17.0 of NNCF to master
1 parent 7b04b6e commit b34d24e

File tree

1,029 files changed

+47365
-35078
lines changed

Some content is hidden

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

1,029 files changed

+47365
-35078
lines changed

.ci/cspell_dict.txt

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ argprovider
2626
argspec
2727
argvalue
2828
ascale
29+
ascontiguousarray
2930
asym
3031
asymm
32+
atleast
3133
atol
3234
atrous
3335
autocast
@@ -49,6 +51,7 @@ biburl
4951
bitwidth
5052
bitwidths
5153
bkup
54+
blockwise
5255
bnas
5356
booktitle
5457
bootstrapnas
@@ -124,6 +127,7 @@ elts
124127
eltwise
125128
eltwises
126129
embeddingbag
130+
emnlp
127131
eprint
128132
eprinttype
129133
errstate
@@ -146,11 +150,13 @@ frobenius
146150
fsolve
147151
funcs
148152
fval
153+
fxawq
149154
fxsq
150155
gacts
151156
gelsy
152157
gelu
153158
genai
159+
getsizeof
154160
gflop
155161
gflops
156162
giga
@@ -159,6 +165,7 @@ googlenet
159165
gptq
160166
graphdef
161167
groupnormalization
168+
groupsize
162169
groupwise
163170
grusequence
164171
gscale
@@ -168,6 +175,7 @@ hardswish
168175
hardtanh
169176
hawq
170177
headport
178+
hellaswag
171179
hiddens
172180
hparam
173181
hparams
@@ -195,7 +203,7 @@ inputless
195203
interp
196204
ioff
197205
iterval
198-
jstyleson
206+
jinjie
199207
junitxml
200208
keepdim
201209
keepdims
@@ -220,13 +228,15 @@ logicalor
220228
logicalxor
221229
logit
222230
loglikelihoods
231+
lspec
223232
lstmsequence
224233
lstsq
225-
lspec
226234
lyalyushkin
227235
mapillary
228236
maskrcnn
229237
mathbb
238+
mathrm
239+
matmulnbits
230240
matmuls
231241
maxcolwidths
232242
maxpool
@@ -304,10 +314,12 @@ onnxp
304314
onnxqdq
305315
onnxroi
306316
onnxx
317+
openbookqa
307318
openvino
308319
openvinotoolkit
309320
oplambda
310321
opset
322+
opsets
311323
outgate
312324
ovawq
313325
overcalled
@@ -319,9 +331,12 @@ ovhw
319331
ovlstm
320332
ovmvn
321333
ovroi
334+
ovselu
322335
pbar
336+
perchannel
323337
pertensor
324338
pinv
339+
plappert
325340
popleft
326341
pqid
327342
pratap
@@ -339,7 +354,9 @@ pthw
339354
ptnncf
340355
ptprelu
341356
ptrelu
357+
ptselu
342358
ptsilu
359+
ptwc
343360
pymodules
344361
pymoo
345362
pyopenvino
@@ -370,6 +387,7 @@ qtype
370387
quantizability
371388
quantizable
372389
qval
390+
qwen
373391
rademacher
374392
randn
375393
rankdir
@@ -394,6 +412,7 @@ rtype
394412
sacts
395413
sanh
396414
savelyev
415+
savelyevv
397416
savetxt
398417
sdpa
399418
sdxl
@@ -420,6 +439,7 @@ sparsifiers
420439
sparsifies
421440
sparsify
422441
sparsifying
442+
sqft
423443
squeezenet
424444
stabilityai_stablelm
425445
stdv
@@ -450,6 +470,7 @@ thresholded
450470
thresholding
451471
timestep
452472
tinyyolov
473+
tobytes
453474
togethercomputer
454475
torchdynamo
455476
truncnorm
@@ -472,6 +493,7 @@ vtype
472493
weakrefs
473494
weightable
474495
whowhatbench
496+
winogrande
475497
xlabel
476498
xnli
477499
xticklabels
@@ -482,4 +504,4 @@ yolov
482504
yscale
483505
yujie
484506
yury
485-
zfnet
507+
zfnet

.github/workflows/api_changes_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
issues: write
2727
steps:
2828
- name: Download built HTML doc as artifact from previous step
29-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
29+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
3030
with:
3131
name: html_doc_artifact
3232
- run: |

.github/workflows/api_set_label.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ on:
1010
jobs:
1111
update_labels:
1212
runs-on: ubuntu-latest
13-
13+
timeout-minutes: 5
14+
if: ${{ github.event.workflow_run.conclusion == 'success' && github.repository_owner == 'openvinotoolkit' }}
1415
permissions:
1516
pull-requests: write
1617

.github/workflows/build_and_publish_doc.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ jobs:
2323
publish:
2424
needs: [call-build-html-doc, call-build-schema-page]
2525
runs-on: ubuntu-latest
26+
timeout-minutes: 10
2627
steps:
2728
- name: Checkout main repo # the github-pages-deploy-action seems to require this step
2829
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2930

3031
- name: Download HTML doc build artifact
31-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
32+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
3233
with:
3334
name: html_doc_artifact
3435
- name: Extract artifact
@@ -38,7 +39,7 @@ jobs:
3839
rm artifact.tar
3940
4041
- name: Download schema doc build artifact
41-
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
42+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
4243
with:
4344
name: schema_doc_artifact
4445
path: html_build/html

.github/workflows/build_html_doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717
with:
1818
ref: ${{ inputs.ref }}
19-
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
19+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
2020
with:
2121
python-version: 3.10.14
2222
- name: Install NNCF and doc requirements

.github/workflows/build_schema_page.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,20 @@ on:
77
jobs:
88
build-config-schema-html:
99
runs-on: ubuntu-latest
10+
timeout-minutes: 10
1011
steps:
1112
- name: Checkout
1213
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1314

14-
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
15+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
1516
with:
1617
python-version: 3.10.14
1718

1819
- name: Install and Build
1920
run: |
2021
pip install json-schema-for-humans
2122
pip install .
22-
python -c 'import jstyleson; from nncf.config import NNCFConfig; jstyleson.dump(NNCFConfig.schema(), open("./schema.json", "w"), indent=2)'
23+
python -c 'import json; from nncf.config import NNCFConfig; json.dump(NNCFConfig.schema(), open("./schema.json", "w"), indent=2)'
2324
mkdir -p schema
2425
# In the current approach the line below will replace the schema/index.html generated by a
2526
# phony schema/index.rst. We only need the phony schema/index.rst at the sphinx-build stage so that

0 commit comments

Comments
 (0)