-
Notifications
You must be signed in to change notification settings - Fork 23
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
Updates due to JuliaDiff/TaylorSeries.jl#361 #194
Conversation
Tests were actually passing modulo coverage, except for the last commit, but cannot reproduce the issue locally, so... I'm re-running tests and see if it's maybe a CI issue |
After re-running tests, they are passing except for Julia 1.6 on the macos platform... does look like a CI issue? |
Also windows in Julia 1.6 is failing. I doubt it is a CI issue, it should be deterministic, right? |
So you're saying maybe it's an initialization issue? |
Windows and MacOS failures on Julia 1.6 look pretty consistent, whereas all the other versions and platforms tests passing also look consistent. Probably it's then a |
Update: managed to reproduce the error on julia 1.6 (macos) |
Turns out the issue in julia1.6 can be traced back to rounding off issues in powers of julia> 0.2029886550675951^3 # integer power
0.008364024538422981
julia> 0.2029886550675951^3.0 # float power
0.00836402453842298 |
Pushed a fix to TaylorSeries... |
... et voilà! |
In a nutshell, since some allocations were incurred in the preamble of parsed |
Thanks for checking and solving this! |
Registration of Taylor series v0.18.0 is on its way... 10-15 minutes are required 😄 |
v0.18.0 is released! |
Many thanks! I'll re-trigger tests here! |
With TaylorSeries v0.18.0 released this is now ready for review |
I'll try to review it this afternoon... sorry for the delay. |
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.
Thanks a lot @PerezHz. My only suggestion is to bump a new (minor or patch?) version. Aside from that, LGTM!
Alright, bumped the patch version and will merge afterwards, thanks! |
This PR contains updates which go together with JuliaDiff/TaylorSeries.jl#361
EDIT: this PR depends also on JuliaDiff/TaylorSeries.jl#364