-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Changes This PR addresses #2565 - Added a function to retrieve the number of int4 and int8 ops within the Weight Compression tests. - Added check to ensure that the number of int4 and int8 ops match the reference values - Added reference values for int4 and int8 ops ### Related tickets Ticket: 132562 ### Tests Tested running: ``` pytest test_quantize_conformance.py::test_weight_compression[tinyllama_data_aware_awq_stateful_backend_OV] --data= ``` --------- Co-authored-by: Lyalyushkin Nikolay <[email protected]>
- Loading branch information
1 parent
b134935
commit 60742a1
Showing
3 changed files
with
53 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
tinyllama_data_free_backend_OV: | ||
metric_value: 0.72057 | ||
num_int4: 228 | ||
num_int8: 84 | ||
tinyllama_data_aware_backend_OV: | ||
metric_value: 0.83084 | ||
num_int4: 184 | ||
num_int8: 128 | ||
tinyllama_data_aware_awq_backend_OV: | ||
metric_value: 0.81237 | ||
num_int4: 184 | ||
num_int8: 128 | ||
tinyllama_data_aware_awq_stateful_backend_OV: | ||
metric_value: 0.81237 | ||
metric_value: 0.81237 | ||
num_int4: 184 | ||
num_int8: 128 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters