Skip to main content Explore View all products (200+) Microsoft Foundry Azure Copilot GitHub Copilot Azure Kubernetes Service (AKS) Azure Cosmos DB Azure Database for PostgreSQL Azure Arc Microsoft Fabric Linux virtual machines in Azure Foundry Models Foundry Agent Service Foundry IQ Foundry Tools Foundry Control Plane Observability in Foundry Control Plane Azure OpenAI in Foundry Models Azure Speech in Foundry Tools Azure Machine Learning View all databases Azure Cosmos DB Azure DocumentDB Azure SQL Azure Database for PostgreSQL Azure Managed Redis Microsoft Fabric Azure Databricks Linux virtual machines in Azure Windows Server on Azure Azure Functions Azure Virtual Machine Scale Sets Azure API Management Azure Container Apps Azure Kubernetes Service (AKS) Azure Kubernetes Fleet Manager Azure Container Registry Azure Red Hat OpenShift Azure Container Instances Azure Container Storage Azure Arc Azure Local Microsoft Defender for Cloud Azure Monitor Microsoft Sentinel Azure Migrate View all solutions (40+) Cloud solutions for small and medium businesses Cloud migration and modernization center Data analytics for AI Azure Databases AI apps and agents Microsoft Marketplace Microsoft Sovereign Cloud AI apps and agents Responsible AI with Azure AI Infrastructure Data analytics for AI Machine learning operations (MLOps) Low-code application development on Azure Integration Services Serverless computing DevOps Migration and modernization center .NET apps migration Databases on Azure Linux on Azure Oracle on Azure SAP on the Microsoft Cloud Adaptive cloud High-performance computing (HPC) Infrastructure as a service (IaaS) Resiliency Azure Essentials Frontier Accelerate for Azure FinOps on Azure Microsoft Marketplace Azure pricing overview Create an Azure account Free Azure services Flexible purchase options Pricing calculator FinOps on Azure Maximize ROI from AI Azure savings plans Azure reservations Azure Hybrid Benefit Virtual Machines Azure SQL Microsoft Foundry Microsoft Fabric Azure Kubernetes Service (AKS) Microsoft Defender for Cloud View more Software Development Companies Microsoft Marketplace Find a partner Resources for Azure partners Get started with Azure Customer stories Analyst reports, white papers, and e-books Videos Learn more about cloud computing Documentation Explore Azure portal Developer resources Quickstart templates Resources for startups Developer community Students Azure for partners Blog Events and Webinars Learn Support Contact Sales Get started with Azure Sign in
Hexagon pattern
2 min read

The Azure Quantum ecosystem expands to welcome Qiskit and Cirq developer community

We’re excited to invite Python developers to experience the open Azure Quantum ecosystem with an expanded stack. With new support in Azure Quantum for major quantum Python SDKs, developers can directly submit quantum circuits built with Qiskit and Cirq. You can use familiar tools and leverage your existing development investment to explore quantum hardware in Azure Quantum.

We designed an integration API following patterns that are familiar to Qiskit and Cirq developers. You can send your quantum circuits written with Qiskit or Cirq to Azure Quantum hardware partners like Honeywell Quantum Solutions and IonQ. Here is an example of running existing Qiskit and Cirq circuits on IonQ quantum hardware in Azure Quantum:

Qiskit

To install: pip install azure-quantum[qiskit]
from azure.quantum.qiskit import AzureQuantumProvider 

# Enter your Azure Quantum workspace details here
provider = AzureQuantumProvider(resource_id="", location="")

backend = provider.get_backend("ionq.qpu")
job = backend.run(your_qiskit_circuit, shots=1000)
result = job.result()

This integration with Azure Quantum and its partners is another step in the move towards interoperability across the quantum industry,” said Blake Johnson, Quantum Platform Lead, IBM Quantum. “As quantum computing grows more powerful, interoperability will be crucial to helping developers build and deploy quantum algorithms without friction.”

Cirq

To install: pip install azure-quantum[cirq]
import azure.quantum.cirq as aq

# Enter your Azure Quantum workspace details here
service = aq.AzureQuantumService(resource_id="", location="")
job = service.run(your_cirq_circuit, repetitions=1000, target="ionq.qpu")

results = job.results()

It’s great to see the adoption of Cirq following the spirit of the Apache 2.0 open-source license and making further hardware platforms accessible to the global Cirq developer community.” explains Dr. Markus Hoffmann, Quantum Partnerships at Google Quantum AI.

You can also directly send circuits in the native format supported by our partners’ hardware, such as the IonQ JSON specification. This modular approach makes it easy to write your own Python integration with the Azure Quantum service.

We’re also excited that, through a continued collaboration with Microsoft, the Strangeworks quantum computing platform will enable users to either connect to their existing Azure Quantum workspaces or use the Strangeworks direct integration to submit jobs to Azure Quantum using Qiskit, Cirq, Q#, and Python.

We at Strangeworks are very excited by Azure Quantum’s efforts to extend their unique quantum services to the Python community. Developers working with Azure Quantum now have unprecedented optionality to work in both Q# and Python, and to leverage the strengths across many frameworks, including Qiskit and Cirq, within the Quantum Development Kit,” said Justin Youens, Founder and CTO of Strangeworks. “These latest enhancements strengthen our ongoing collaboration with Azure Quantum. Combined with their generous community credit program, Azure Quantum is a prime partner for quantum exploration.”

With these new capabilities in Azure Quantum, you can bring, reuse, and submit your existing Qiskit and Cirq source code with little to no change, and at the same time develop and submit quantum programs using Q#. We want to make it easy for developers to create the high-level applications that run on both today’s hardware and scalable hardware of the future.

Learn more

Get started by accessing the quickstart for Qiskit and quickstart for Cirq. You can also check out sample Jupyter Notebooks for Qiskit and Cirq. If you’re interested in innovative research with Azure Quantum, check out our Azure Quantum Credits program to receive up to $10,000 of credits to use on our platform.