-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Refactor marginal_memory() hex to bin lookup table to be a true static #8223
Conversation
In the recently merged Qiskit#8051 we create a lookup table in Rust to speed up the hex->bin conversion used internally as part of the marginal_memory() function. This was previously done using the lazy_static crate which is used to lazily evaluate dynamic code to create a static at runtime on the first access. The typical use case for this is to create a static Vec or HashMap. However for the marginal_counts() usage we didn't need to do this because we were creating a fixed size array so the static can be evaulated at compile time assuming the array is constructed with a const function. This commit removes the lazy_static usage and switches to a true static to further improve the performance of the lookup table by avoiding the construction overhead.
Thank you for opening a new pull request. Before your PR can be merged it will first need to pass continuous integration tests and be reviewed. Sometimes the review process can be slow, so please be patient. While you're waiting, please feel free to review other open PRs. While only a subset of people are authorized to approve pull requests for merging, everyone is encouraged to review open pull requests. Doing reviews helps reduce the burden on the core team and helps make the project's code better for everyone. One or more of the the following people are requested to review this:
|
Just for reference I ran the script from this comment: #8051 (comment) with this PR applied and compared it to the data from that comment
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Pull Request Test Coverage Report for Build 2545964859
💛 - Coveralls |
Summary
In the recently merged #8051 we create a lookup table in Rust to speed
up the hex->bin conversion used internally as part of the
marginal_memory() function. This was previously done using the
lazy_static crate which is used to lazily evaluate dynamic code to
create a static at runtime on the first access. The typical use case for
this is to create a static Vec or HashMap. However for the
marginal_counts() usage we didn't need to do this because we were
creating a fixed size array so the static can be evaulated at compile
time assuming the array is constructed with a const function. This
commit removes the lazy_static usage and switches to a true static to
further improve the performance of the lookup table by avoiding the
construction overhead.
Details and comments