Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamo fx completeness #162

Merged
merged 1 commit into from
Nov 9, 2023
Merged

Dynamo fx completeness #162

merged 1 commit into from
Nov 9, 2023

Conversation

saienduri
Copy link
Contributor

@saienduri saienduri commented Nov 9, 2023

This PR takes care of #139.

For the weird tensor meta data, we should only throw error if quantized. If we start looking at other things like stride, memory_format, etc. the pytest fails.

For the TODO where we wanted to throw a KeyError, we already check if parameter.name in node.kwargs in the if statement above, so we won't run into an invalid key.

Other issues that were part of this importer completeness task have been addressed and documented.

Fixes #139
Fixes #140
Fixes #141
Fixes #142
Fixes #143
Fixes #144

Copy link
Contributor

@stellaraccident stellaraccident left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good - thanks.

Could you please use the canonical notation for marking issues fixed. At the end of the PR, add:

Fixes #abc
Fixes #def
...

(include all of the nested issues too. Saying "Fixes" makes GH annotate and close them)

@saienduri
Copy link
Contributor Author

Ok I see, added the canonical notation for marking issues fixed.

@saienduri saienduri merged commit a92d64f into main Nov 9, 2023
1 check passed
@saienduri saienduri deleted the sai-dynamo-fx-completeness branch November 9, 2023 02:59
IanNod pushed a commit that referenced this pull request Nov 9, 2023
This PR takes care of
#139.

For the weird tensor meta data, we should only throw error if quantized.
If we start looking at other things like stride, memory_format, etc. the
pytest fails.

For the TODO where we wanted to throw a KeyError, we already check if
parameter.name in node.kwargs in the if statement above, so we won't run
into an invalid key.

Other issues that were part of this importer completeness task have been
addressed and documented.

Fixes #139 
Fixes #140 
Fixes #141 
Fixes #142 
Fixes #143 
Fixes #144
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment