-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
bignumsBigInt and BigFloatBigInt and BigFloatexternal dependenciesInvolves LLVM, OpenBLAS, or other linked librariesInvolves LLVM, OpenBLAS, or other linked librariesperformanceMust go fasterMust go fasterregressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version
Milestone
Description
Using a commit with MPFR 4.0.2 but before the BinaryBuilder PR I get
julia> a = 5.0; b = big"5.0"
5.0
julia> @btime $a + $b;
57.579 ns (2 allocations: 112 bytes)while on #31727 I get
julia> @btime $a + $b;
100.848 ns (2 allocations: 112 bytes)My guess is thus that the BB built MPFR library is slower than the one we used to built locally. This is reported by Nanosoldier at #31727 (comment) for the 1.2 backport branch.
Metadata
Metadata
Assignees
Labels
bignumsBigInt and BigFloatBigInt and BigFloatexternal dependenciesInvolves LLVM, OpenBLAS, or other linked librariesInvolves LLVM, OpenBLAS, or other linked librariesperformanceMust go fasterMust go fasterregressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version