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
For basic operations, these are the benchmarks
julia> using BenchmarkTools, TestImages, ExifViewer julia> filename = "test/test_images/test.jpg" julia> io = open(filename, "r") julia> @btime read_metadata(io) 1.862 μs (11 allocations: 912 bytes) julia> @btime read_metadata(filename) 269.472 μs (122 allocations: 100.05 KiB) julia> @btime data = read(filename) 15.876 μs (13 allocations: 69.28 KiB) julia> @btime read_metadata(data) 221.786 μs (109 allocations: 30.77 KiB)
We want to automate this
The text was updated successfully, but these errors were encountered:
I've been working on a continuous benchmarking tool called Bencher that could help keep track of these results: https://github.com/bencherdev/bencher
Sorry, something went wrong.
No branches or pull requests
For basic operations, these are the benchmarks
We want to automate this
The text was updated successfully, but these errors were encountered: