-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Generate shape-independent graph if any input dimension < 2 #6581
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
Conversation
|
|
||
| if (A_has_shape && B_has_shape && Y_has_shape) { | ||
| if (A_has_shape && B_has_shape && Y_has_shape && | ||
| A_shape.size() >= 2 && B_shape.size() >= 2) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Matmul schema only allow inputs with dim>=2.
I thought this is an implicit prerequisite? Are you seeing inputs with less then 2 dim?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw the discussion on team's channel, and understand now this is caused by a torch bug/"feature".
This fix is harmless.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
/azp run Windows CPU CI Pipeline |
|
Azure Pipelines successfully started running 1 pipeline(s). |
No description provided.