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

Performance improvement for Transforms::greedy_pauli_optimisation #1820

Open
jpacold opened this issue Mar 24, 2025 · 1 comment
Open

Performance improvement for Transforms::greedy_pauli_optimisation #1820

jpacold opened this issue Mar 24, 2025 · 1 comment

Comments

@jpacold
Copy link
Contributor

jpacold commented Mar 24, 2025

Transforms::greedy_pauli_optimisation makes extensive use of lookup tables defined in GreedyPauliOptimisationLookupTables.hpp. For at least some of these, the use of unordered_map seems to have a significant performance overhead for large circuits.

For example, this function call in the tests takes ~100 seconds on my machine (release build compiled with g++13). Profiling shows roughly $8 \times 10^8$ calls to each of these two functions, which each do one lookup in an unordered_map. Replacing it with an array reduces the time to ~80 seconds.

There might be more room to improve performance with other STL usage adjustments. If this seems worth looking into, I can spend some more time profiling and open a PR.

@yao-cqc
Copy link
Contributor

yao-cqc commented Mar 24, 2025

@jpacold Thanks for profiling this! If replacing unordered_map with an array already gives a ~20% speedup, it sounds like an effective optimisation. Feel free to open a PR with what you find!

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

No branches or pull requests

2 participants