Uh oh!
There was an error while loading. Please reload this page.
Bit-burst algorithm version of BigMath.erf and BigMath.erfc - #458
Merged
Conversation
tompngforce-pushed
the
bigmath_erf_bitburst
branch
from
December 2, 2025 15:08
96e40ba to
ace2d32Comparetompngforce-pushed
the
bigmath_erf_bitburst
branch
2 times, most recently
from
January 30, 2026 17:16
f60ba6f to
ce7f6abComparetompngforce-pushed
the
bigmath_erf_bitburst
branch
4 times, most recently
from
May 8, 2026 19:28
c0f23ef to
d035b6eComparetompng
marked this pull request as ready for review
May 17, 2026 08:45
tompngforce-pushed
the
bigmath_erf_bitburst
branch
from
August 4, 2026 15:51
2b7d8df to
7dc1b57Comparetompngforce-pushed
the
bigmath_erf_bitburst
branch
from
August 4, 2026 16:51
7dc1b57 to
1931bacCompareUh oh!
There was an error while loading. Please reload this page.
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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Implement Bit-burst algorithm version of
BigMath.erfandBigMath.erfcBit-burst algorithm implementation
Repeatedly apply Taylor expansion at increasing x.
x0 + x1 + x2 + ...f(x0)by Taylor expansion(erf) or asymptotic expansion(erfc)f(x0 + x1)by Taylor expansion offatx0f(x0 + x1 + x2)by Taylor expansion offatx0 + x1Each Taylor expansion calculation uses binary-splitting method.
Details are described in source code comment.
Benchmark