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
What is the overhead of this? How much more expensive is next_prime(ZZ(2))?
No idea! If you're calling next_prime(n) where n is ZZ(2) then you are already throwing away some performance compared to when n is Int64(2). I tried measuring the difference, and obtained a factor of 20, but there was over 60% GC time. Anyway, if dodgy mode is off then the overhead should be quite low.
I add that next_prime(::Int) is unchanged. Not sure how often one calls next_prime for value which do not fit into Int64.
Yes, my question was about the additional overhead when calling next_prime(ZZ(2)) with dodgy mode off.
I did not observe any significant detrimental effect.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Prototype implementation incorporating some feedback.
To work this PR needs the code from the draft PR Nemocas/AbstractAlgebra.jl#2395