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

Tutorial: implement ADAPT-Clifford algorithm for MaxCut problem #357

Open
Fe-r-oz opened this issue Sep 10, 2024 · 0 comments
Open

Tutorial: implement ADAPT-Clifford algorithm for MaxCut problem #357

Fe-r-oz opened this issue Sep 10, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@Fe-r-oz
Copy link
Contributor

Fe-r-oz commented Sep 10, 2024

Is your feature request related to a problem? Please describe.

Hi, @manuelmz, pinged you as this is directly related to your work. Please feel free to provide further insights.

Muñoz-Arias et al. show that low-depth Clifford circuits can approximate solutions to MaxCut, introducing the quantum-inspired algorithm ADAPT-Clifford for this purpose. This algorithm approximates MaxCut on an N-vertex weighted fully connected graph by constructing a depth O(N) Clifford circuit with runtime complexity O(N²) for sparse graphs and O(N³) for dense graphs, while maintaining space complexity of O(N²). The above run-times are for the 'randomized' variant of the ADAPT-Clifford. For the 'deterministic' variant, the metrics are runtime complexity O(N³) for sparse graphs and O(N⁴) for dense graphs.

The key insight is that ADAPT-QAOA 'solution unitaries' for MaxCut closely approximate Clifford circuits. This algorithm was implemented in stim. To understand the origin of ADAPT-Clifford, review the solution circuits from QAOA and ADAPT-QAOA applied to small weighted complete graphs. Utilize Yao.jl's QuAlgorithmZoo for variational algorithms with the COBYLA optimizer, and analyze operator distribution in the Pauli basis using QuantumOptics.jl.

Describe the solution you’d like

Make a tutorial about using QuantumClifford for implementing the ADAPT-Clifford algorithm for the MaxCut problem. For reference, check out Manual's stim-based implementation: ADAPT-Clifford. Also, compare the performance of the implemented algorithm with stim-based implementation.

The best known classical approximation algorithm with good guarantee is Goemans-Williamson (GW) which has been used by Manual for comparison with ADAPT-Clifford. GW algorithm is present in QuAlgorithmZoo . This tutorial would be an nice demonstration of solving combinatorial optimization problems using the approximate Clifford algorithm.

Describe alternatives you’ve considered

To be added soon.

Additional context

Manuel notes that ADAPT-Clifford could be implemented by any stabilizer circuit simulator given that the two conditions are met: 1) Given it computes Pauli string expectation values 2) allows 'circuit modification' based on the results.

@Fe-r-oz Fe-r-oz added the enhancement New feature or request label Sep 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant