-
Notifications
You must be signed in to change notification settings - Fork 58
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
feat: inplace scalar multiplication for FqMatrix #1797
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1797 +/- ##
==========================================
- Coverage 85.92% 85.90% -0.02%
==========================================
Files 95 95
Lines 36374 36389 +15
==========================================
+ Hits 31253 31261 +8
- Misses 5121 5128 +7 ☔ View full report in Codecov by Sentry. |
a = F17[1 2 3 1; 3 2 1 2; 1 3 2 0] | ||
z = F17(2) | ||
b = similar(a) | ||
@test mul!(b, a, z) == a * z | ||
b = similar(a) | ||
@test mul!(b, z, a) == a * z |
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.
What is the difference between this block and the one prior? I cannot see any changes
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.
bza vs baz
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.
Yeah, that's L355 vs L357. I was asking about L345-350 vs L352-357
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.
ah, right
(There exists no corresponding function in flint)
(There exists no corresponding function in flint)