You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't really understand why you need n==1 special cases. If eigen! doesn't give the right answer when n==1, it should be fixed.
(Yes, you can make the n==1 case faster by special-casing it, but this complicates the code to add a performance optimization no one really cares about — if they really wanted to be fast for n==1 they would be using scalars.)
The text was updated successfully, but these errors were encountered:
I don't really understand why you need n==1 special cases. If eigen! doesn't give the right answer when n==1, it should be fixed.
(Yes, you can make the n==1 case faster by special-casing it, but this complicates the code to add a performance optimization no one really cares about — if they really wanted to be fast for n==1 they would be using scalars.)
This is corrected and special cases n==1 have been removed from exp.jl. I will close the issue when I will have pushed the updates.
I don't really understand why you need
n==1
special cases. Ifeigen!
doesn't give the right answer whenn==1
, it should be fixed.(Yes, you can make the
n==1
case faster by special-casing it, but this complicates the code to add a performance optimization no one really cares about — if they really wanted to be fast forn==1
they would be using scalars.)The text was updated successfully, but these errors were encountered: