Tutorial: implement ADAPT-Clifford
algorithm for MaxCut problem
#357
Labels
enhancement
New feature or request
ADAPT-Clifford
algorithm for MaxCut problem
#357
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 anN
-vertex weighted fully connected graph by constructing a depthO(N)
Clifford circuit with runtime complexityO(N²)
for sparse graphs andO(N³)
for dense graphs, while maintaining space complexity ofO(N²)
. The above run-times are for the 'randomized' variant of theADAPT-Clifford
. For the 'deterministic' variant, the metrics are runtime complexityO(N³)
for sparse graphs andO(N⁴)
for dense graphs.The key insight is that
ADAPT-QAOA
'solution unitaries' for MaxCut closely approximate Clifford circuits. This algorithm was implemented instim
. 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 theADAPT-Clifford
algorithm for the MaxCut problem. For reference, check out Manual'sstim
-based implementation: ADAPT-Clifford. Also, compare the performance of the implemented algorithm withstim
-based implementation.The best known classical approximation algorithm with good guarantee is Goemans-Williamson
(GW)
which has been used by Manual for comparison withADAPT-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.The text was updated successfully, but these errors were encountered: