-
Notifications
You must be signed in to change notification settings - Fork 14
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
More robust dual eval #90
Conversation
Codecov Report
@@ Coverage Diff @@
## main #90 +/- ##
==========================================
+ Coverage 71.41% 72.14% +0.72%
==========================================
Files 13 13
Lines 2316 2326 +10
==========================================
+ Hits 1654 1678 +24
+ Misses 662 648 -14
Continue to review full report at Codecov.
|
src/forwarddiff_matmul.jl
Outdated
@@ -64,11 +64,26 @@ function dualeval!(f::F, Cdual::AbstractArray) where {F} | |||
dualeval!(f, vec(Cdual)) | |||
end | |||
const MAX_NUM_LV_EXTRACT = isdefined(LoopVectorization, :EXTRACTFUNS) ? length(LoopVectorization.EXTRACTFUNS) : 14 | |||
@generated function dualeval!( | |||
_isstaticone(::One) = True() |
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.
Test?
No description provided.