Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f792986

Browse files
committedDec 26, 2024·
t
1 parent 763d2e8 commit f792986

File tree

3 files changed

+3
-21
lines changed

3 files changed

+3
-21
lines changed
 

‎.github/workflows/conformance_weight_compression.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ jobs:
4242
- name: cpuinfo
4343
run: cat /proc/cpuinfo
4444
- name: Install NNCF and test requirements
45-
run: |
46-
pip install -e .
47-
pip install -r tests/post_training/requirements.txt
45+
run: pip install -e . -r tests/post_training/requirements.txt
4846
- name: Print installed modules
4947
run: pip list
5048
- name: Run examples test scope
@@ -56,6 +54,8 @@ jobs:
5654
--splits 2 \
5755
--group ${{ matrix.group }} \
5856
${{ github.event.inputs.pytest_args || '' }}
57+
ret=$?
58+
[ $ret -eq 5 ] && [ -n "${{ github.event.inputs.pytest_args || '' }}" ] && exit 0 || exit $ret
5959
env:
6060
TQDM_DISABLE: 1
6161
HOME_HF: "/home/runner/hf_home"

‎tests/post_training/data/wc_reference_data.yaml

-18
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,6 @@ tinyllama_data_aware_backend_OV:
77
num_int4: 94
88
num_int8: 124
99
tinyllama_data_aware_awq_stateful_backend_OV:
10-
<<<<<<< HEAD
11-
metric_value: 0.85758
12-
num_int4: 94
13-
num_int8: 124
14-
tinyllama_data_aware_awq_scale_estimation_backend_OV:
15-
metric_value: 0.85498
16-
num_int4: 94
17-
num_int8: 124
18-
tinyllama_data_aware_awq_scale_estimation_stateful_backend_OV:
19-
metric_value: 0.85498
20-
=======
2110
metric_value: 0.85616
2211
num_int4: 94
2312
num_int8: 124
@@ -27,7 +16,6 @@ tinyllama_data_aware_awq_scale_estimation_backend_OV:
2716
num_int8: 124
2817
tinyllama_data_aware_awq_scale_estimation_stateful_backend_OV:
2918
metric_value: 0.85502
30-
>>>>>>> develop
3119
num_int4: 94
3220
num_int8: 124
3321
tinyllama_int8_data_free_backend_TORCH:
@@ -53,16 +41,10 @@ tinyllama_NF4_scale_estimation_stateful_per_channel_backend_OV:
5341
num_int8: 290
5442
metrics_xfail_reason: "Issue-148819"
5543
tinyllama_awq_backup_mode_none_backend_OV:
56-
<<<<<<< HEAD
57-
metric_value: 0.85679
58-
num_int4: 208
59-
num_int8: 0
60-
=======
6144
metric_value: 0.84783
6245
num_int4: 208
6346
num_int8: 0
6447
tinyllama_int4_data_free_backend_TORCH:
6548
metric_value: 0.73873
6649
num_int4: 114
6750
num_int8: 84
68-
>>>>>>> develop

0 commit comments

Comments
 (0)
Please sign in to comment.