Skip to content
New issue

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

Add inline annotations #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Add inline annotations #8

wants to merge 1 commit into from

Conversation

joeri
Copy link

@joeri joeri commented Sep 26, 2022

Without enabling link time optimization (LTO) there will never be any inlining across crate boundaries. These methods will be mostly called from other crates, they are small and used in hot loops.

On a branch of rust-png-reader that was made to use Circular this change reduced the runtime of one benchmark test from 3 minutes 30 seconds to 1 minute 40 seconds (so over 50%).

(The benchmark is running the example/stats binary on a large (50GB) PGN file downloaded from the lichess DB)

Without enabling link time optimization (LTO) there will never be any
inlining across crate boundaries. These methods will be mostly called
from other crates, they are small and used in hot loops.

On a branch of rust-png-reader that was made to use Circular this change
reduced the runtime of one benchmark test from 3 minutes 30 seconds to 1
minute 40 seconds (so over 50%).

(The benchmark is running the example/stats binary on a large (50GB) PGN
file downloaded from the lichess DB)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant