[ONNX] Enable dynamo export#3708
Open
andrey-churkin wants to merge 26 commits intoopenvinotoolkit:developfrom
Open
[ONNX] Enable dynamo export#3708andrey-churkin wants to merge 26 commits intoopenvinotoolkit:developfrom
andrey-churkin wants to merge 26 commits intoopenvinotoolkit:developfrom
Conversation
67bf3c6 to
f4745b3
Compare
bc4d15f to
2a7820a
Compare
2a7820a to
c8220f5
Compare
91eb663 to
0c90538
Compare
Contributor
Author
Contributor
Author
Contributor
Author
|
post_training_quantization: Build # 793 |
AlexanderDokuchaev
requested changes
Jan 28, 2026
| "164 nncf_model_input_0" -> "9 /Gather_1" [label="[1, 3, 224, 224]", style=solid]; | ||
| "164 nncf_model_input_0" -> "17 /Gather_2" [label="[1, 3, 224, 224]", style=solid]; | ||
| strict digraph { | ||
| "0 node_select" [id=0, type=Gather]; |
Collaborator
There was a problem hiding this comment.
What a reason that in new graphs no Constant nodes?
| onnx_metatypes.ONNXDepthwiseConvolutionMetatype, | ||
| onnx_metatypes.ONNXConvolutionTransposeMetatype, | ||
| onnx_metatypes.ONNXDeformableConvolutionMetatype, | ||
| onnx_metatypes.ONNXGroupConvolutionMetatype, |
Collaborator
There was a problem hiding this comment.
Is this change related to dynamo export?
| accelerate==1.9.0 | ||
| transformers==4.53.0 | ||
| whowhatbench @ git+https://github.com/openvinotoolkit/openvino.genai@2025.4.1.0#subdirectory=tools/who_what_benchmark | ||
| datasets |
Collaborator
There was a problem hiding this comment.
duplicate, datasets exists in line 3
| torch.onnx.export( | ||
| model, torch.rand(model.INPUT_SIZE), onnx_path, opset_version=13, input_names=["input.1"], dynamo=False | ||
| ) | ||
| model.eval() |
Collaborator
There was a problem hiding this comment.
eval() requares only for onnx?
May be is it will be usefull add in in common part before call backend_specific_model?
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Enable torch dynamo export by default.
Related tickets
Ref: 168961