-
Notifications
You must be signed in to change notification settings - Fork 440
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
Add reduce sum onnx ops to burn imports #1723
Add reduce sum onnx ops to burn imports #1723
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1723 +/- ##
==========================================
+ Coverage 86.47% 86.49% +0.01%
==========================================
Files 698 698
Lines 82874 83041 +167
==========================================
+ Hits 71667 71827 +160
- Misses 11207 11214 +7 ☔ View full report in Codecov by Sentry. |
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.
Thank you for your contribution with ONNX ops for Burn. It looks perfect except one left out debugger line. See my comment.
It's ready to be merged once this line is removed.
@@ -798,6 +798,61 @@ pub fn reduce_mean_config(node: &Node) -> Option<usize> { | |||
} | |||
} | |||
|
|||
pub fn reduce_sum_config(node: &Node) -> Option<usize> { | |||
dbg!(&node); |
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.
Probably by accident this is checked in: dbg!(&node)l
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.
Oops, yeah! Sorry, should be gone now
1be010a
to
4da8d3d
Compare
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.
LGTM
Thank you for your contribution!
Pull Request Template
Checklist
run-checks all
script has been executed.Related Issues/PRs
#1714
Changes
Implements the ReduceSum ONNX Op.
Testing
Wrote tests for 11 and 13 ReduceSum opset