We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
with Julia v1.10.0-DEV1429
using Ratios, FastRationals, BenchmarkTools julia> @btime x + y setup=((x, y) = (SimpleRatio(rand(-20:20), rand(2:20)), SimpleRatio(rand(-20:20), rand(2:20)))); 22.668 ns (1 allocation: 32 bytes) julia> @btime x * y setup=((x, y) = (SimpleRatio(rand(-20:20), rand(2:20)), SimpleRatio(rand(-20:20), rand(2:20)))); 22.367 ns (1 allocation: 32 bytes) julia> @btime x + y setup=((x, y) = (FastRational(rand(-20:20), rand(2:20)), FastRational(rand(-20:20), rand(2:20)))); 5.900 ns (0 allocations: 0 bytes) julia> @btime x * y setup=((x, y) = (FastRational(rand(-20:20), rand(2:20)), FastRational(rand(-20:20), rand(2:20)))); 5.900 ns (0 allocations: 0 bytes)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
with Julia v1.10.0-DEV1429
The text was updated successfully, but these errors were encountered: