Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Recursive QAOA #828

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
8 changes: 8 additions & 0 deletions binder-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,14 @@ These are noted in the README.md files for each sample, along with complete inst
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td><strong><a href="./samples/azure-quantum/openqaoa/README.md">Quantum Approximate Optimization Algorithm</a></strong></td>
<td></td>
<td><a href="./samples/azure-quantum/openqaoa/openqaoa.ipynb">Python</a></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td><strong><a href="./samples/azure-quantum/grover/README.md">Grover's search</a></strong></td>
Expand Down
24 changes: 24 additions & 0 deletions samples/azure-quantum/qaoa/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
page_type: sample
author:
description: Introduction to RQAOA using the OpenQAOA library.
ms.author:
ms.date:
languages:
- python
products:
- azure-quantum
---

# Solving Quadratic Unconstrained Binary Optimization (QUBO) problems using QAOA on Azure Quantum

This sample shows how to solve quadratic unconstrained binary optimization problems using the Quantum Approximate Optimization Algorithm (QAOA) on the Azure Quantum service. It demonstrates how to operate the QAOA workflow for a specific problem instance (TO SPECIFY) as well as a general QUBO problem that can be taylored to more specific cases like graph coloring or minimum vertex cover.

## Manifest

- [openqaoa.ipynb](./openqaoa.ipynb) Python notebook demonstrating how to run QAOA locally and on the Azure Quantum platform using the OpenQAOA package.
- [openqaoa-recursive.ipynb](./openqaoa.ipynb) Python notebook demonstrating how to run RQAOA locally and on the Azure Quantum platform using the OpenQAOA package.

## See Also

To learn more about QAOA and how to solve QUBO problems using OpenQAOA, visit https://openqaoa.entropicalabs.com/
746 changes: 746 additions & 0 deletions samples/azure-quantum/qaoa/openqaoa-recursive.ipynb

Large diffs are not rendered by default.

760 changes: 760 additions & 0 deletions samples/azure-quantum/qaoa/openqaoa.ipynb

Large diffs are not rendered by default.