-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Changes - Added BF16 type support - Added FQ parameters generation based on type - Extended the list of the supported types for OpenVINO input data with `ov.Tensor` ### Reason for changes - BF16 support ### Related tickets - 126782 ### Tests - Updated existing tests with BF16 - manual/post_training_weight_compression/99 - no regressions (failure due to CI issue) - manual/post_training_quantization/421 - no regressions (failure due to CI issue)
- Loading branch information
Showing
12 changed files
with
313 additions
and
166 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
13 changes: 13 additions & 0 deletions
13
...s/openvino/native/data/2024.2/reference_graphs/original_nncf_graph/exctracted_FPModel.dot
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
strict digraph { | ||
"0 Parameter_MatMul.0" [id=0, type=Parameter]; | ||
"1 Convert_430" [id=1, type=Convert]; | ||
"2 MatMul" [id=2, type=MatMul]; | ||
"3 Convert_431" [id=3, type=Convert]; | ||
"4 Result_MatMul.0" [id=4, type=Result]; | ||
"5 MatMul_const" [id=5, type=Constant]; | ||
"0 Parameter_MatMul.0" -> "1 Convert_430" [label="[1, 3, 4, 2]", style=solid]; | ||
"1 Convert_430" -> "2 MatMul" [label="[1, 3, 4, 2]", style=solid]; | ||
"2 MatMul" -> "3 Convert_431" [label="[1, 3, 2, 5]", style=solid]; | ||
"3 Convert_431" -> "4 Result_MatMul.0" [label="[1, 3, 2, 5]", style=solid]; | ||
"5 MatMul_const" -> "2 MatMul" [label="[1, 3, 4, 5]", style=solid]; | ||
} |
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
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
Oops, something went wrong.