-
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?
Changes from all commits
fc994fd
7d6052c
dc02a2c
571edf6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -96,11 +96,12 @@ The implementation supports both forward and backward directions. | |||||
|
||||||
## Inner Product | ||||||
|
||||||
The implementation supports the forward direction only. | ||||||
The implementation supports both forward and backward directions. | ||||||
|
||||||
* Supported formats: All plain formats are supported. | ||||||
* 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. | ||||||
* 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 commentThe 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.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Alternatively "post-ops should not be used in the forward pass during training" |
||||||
|
||||||
## Layer Normalization | ||||||
|
||||||
|
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.