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
25 changes: 25 additions & 0 deletions samples/azure-quantum/qaoa/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
page_type: sample
author: KilianPoirier
description: Introduction to QAOA 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 with a readily available problem instance (Maximum Cut) as well as a general QUBO problem that can be taylored to other combinatorial problems 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-recursive.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/
This sample code and notebooks were written by members of Entropica Labs team.

Check warning on line 25 in samples/azure-quantum/qaoa/README.md

View workflow job for this annotation

GitHub Actions / Check Markdown files

Files should end with a single newline character
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.

Loading