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

Determine parallelization limit per machine #30

Open
stylewarning opened this issue Feb 21, 2019 · 4 comments
Open

Determine parallelization limit per machine #30

stylewarning opened this issue Feb 21, 2019 · 4 comments
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@stylewarning
Copy link
Member

stylewarning commented Feb 21, 2019

The variable *qubits-required-for-parallelization* is statically set to 19, which means that as soon as 19 qubits is reached in a computation, the computations will be parallelized.

This isn't ideal for all machines. Sometimes parallelization provides gains with values lower or higher than 19. The goal of this issue would be to search for that crossing point and optimize accordingly.

Problems that must be solved in order to solve this issue:

  • How should the parallelization limit be calculated? (This is slightly non-trivial because many different things are parallelized in different contexts.)
  • How can one invoke this calculation?
  • Should the parallelization limit be stored on disk? Should it be provided as a command-line argument?
@stylewarning
Copy link
Member Author

Note that PR #31 allows this parameter to be controlled at the command line.

@matt-y
Copy link

matt-y commented Jan 15, 2020

Hello, I'd like to give this a shot!

A first approach could be a simple binary search over the range of possible values for *qubits-required-for-parallelization* defined by parallelization-limit in config.lisp, and running a benchmark on one - or perhaps a set - of parallelized algorithms at each point in the search.

The first hurdle for this ticket would be deciding what parallelized code should be benchmarked. A first pass could focus on a single thing, and later be expanded to include others. @stylewarning What do you think would be worth focusing on?

Additionally, should this benchmarking happen as part of the entry-point.lisp setup when no command line limit is supplied? Should there be an additional flag for taking a best guess from a benchmark?

@stylewarning
Copy link
Member Author

I think there should be an option to benchmark-type that allows this measurement to happen and it prints the results to stdout. After that (in a separate PR) it should probably be configurable with a persistent file or something.

@stylewarning
Copy link
Member Author

As for the measurement to be done, I'd suggest doing some calculation that applies a 1q gate, and an operation that applies a 2q gate, and calculating 0.8*1q + 0.2*2q or something.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants