-
Notifications
You must be signed in to change notification settings - Fork 1k
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
generic:sycl: Inner Product Backward #2360
base: main
Are you sure you want to change the base?
Conversation
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.
A couple of edits suggested. Please incorporate as you see fit, thanks!
* Supported post-ops: All the post operations as mentioned in the specification are supported. | ||
* Supported data types: All possible data combinations as listed in the specification are supported. | ||
* Supported post-ops: All the post-ops as mentioned in the specification are supported. | ||
* The backward pass does not support post-ops. One should not use post-ops in the forward pass during training |
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 think this sentence could be included in a note format as opposed to listing this as a bullet.
* The backward pass does not support post-ops. One should not use post-ops in the forward pass during training | |
Note: The backward pass does not support post-ops. You should not use post-ops in the forward pass during training. |
* Supported data types: All possible data combinations listed in the oneDNN specification are supported. | ||
* Supported post-ops: All the post operations as mentioned in the specification are supported. | ||
* Supported data types: All possible data combinations as listed in the specification are supported. | ||
* Supported post-ops: All the post-ops as mentioned in the specification are supported. |
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.
* Supported post-ops: All the post-ops as mentioned in the specification are supported. | |
* Supported post-ops: All post-ops mentioned in the specification are supported. |
Description
Adds the backward_data and the backward_weight of the inner product for the generic backend
Fixes # (github issue)
Checklist
General
make test
andmake test_benchdnn_*
) pass locally for each commit?