Fact-checked by Grok 2 weeks ago

Qiskit

Qiskit is an open-source software development kit (SDK) for quantum computing, enabling users to build, optimize, and execute quantum circuits, algorithms, and applications on both simulators and real quantum hardware. Developed primarily by IBM in collaboration with an active global open-source community, it provides a modular, extensible framework that supports quantum research across domains such as algorithms, high-performance simulation, and quantum information science. As of 2024, Qiskit has achieved widespread adoption, with over 13 million downloads and preferred by 74% of quantum developers according to a Unitary Foundation survey. Originally released on March 7, 2017, Qiskit has evolved through iterative updates, culminating in the stable Qiskit 1.0 release on February 15, 2024, which marked a milestone for production-ready quantum programming with enhanced stability and performance. As of November 2025, the latest stable version is 2.2.3, released on October 30, 2025, featuring improvements in compiler efficiency, such as 83 times faster transpilation compared to TKET and 29% fewer two-qubit gates in circuit optimization. Qiskit's development emphasizes backend-agnostic compatibility, allowing seamless integration with quantum hardware from providers like IBM Quantum, IonQ, and Amazon Braket. Key components of Qiskit include the core Qiskit SDK for circuit construction and execution, Qiskit Aer for high-performance noise-aware simulation, and ecosystem extensions such as Qiskit Algorithms for variational and methods, Qiskit Nature for solving problems, and Qiskit Machine Learning for hybrid quantum-classical models. Additional tools like Qiskit Metal support superconducting quantum hardware design, while Qiskit Runtime facilitates scalable cloud-based execution of quantum primitives. With over 7,000 dependent projects, Qiskit serves as a foundational platform for advancing quantum utility and real-world applications.

Overview

Definition and Purpose

Qiskit is an open-source, Python-based (SDK) developed by for quantum information science and engineering. It serves as a comprehensive software stack that enables users to design, simulate, compile, and execute quantum circuits on both simulators and real quantum hardware. The primary purposes of Qiskit include facilitating research in quantum algorithms, supporting educational initiatives in quantum computing, and accelerating the development of practical applications, particularly hybrid quantum-classical systems. By providing tools for circuit construction, optimization, and execution, Qiskit lowers the barrier to entry for exploring noisy intermediate-scale quantum (NISQ) devices and advancing the field toward fault-tolerant quantum computing. Qiskit's modular architecture forms a layered stack designed for flexibility and extensibility, originally comprising core elements such as for quantum circuit construction and manipulation, Aer for high-performance simulation, Ignis for quantum device characterization and error mitigation, and Aqua for quantum algorithms and applications. Over time, components like Ignis and Aqua have evolved into specialized add-ons, such as Qiskit Experiments and domain-specific libraries (e.g., Qiskit Nature for ), allowing users to tailor the toolkit to particular needs while maintaining . This structure supports seamless integration with Quantum hardware and other backends, enabling scalable workflows from prototyping to production. The toolkit targets a diverse user base, including quantum developers building applications, researchers prototyping algorithms, educators teaching quantum concepts, and enterprises developing hybrid solutions for optimization, , and simulation challenges. As of November 2025, Qiskit has surpassed 16 million downloads and holds a 74% preference among quantum developers according to the 2024 Unitary Foundation survey, underscoring its pivotal role in the NISQ era by democratizing access to quantum resources and fostering innovation.

History and Development

Qiskit was initially released in March 2017 by as an integral part of the IBM Quantum Experience platform, providing an open-source Python-based for creating and executing quantum circuits on cloud-accessible quantum hardware. This launch marked a pivotal step in democratizing access to tools, enabling developers worldwide to experiment with quantum algorithms without proprietary barriers. Shortly thereafter, Qiskit transitioned to a fully open-source project under the Apache 2.0 license, hosted on , which facilitated broader collaboration and rapid iteration. Key milestones in Qiskit's evolution include its integration with the IBM Q Network in 2018, which expanded enterprise access to quantum resources and fostered joint research initiatives between and industry partners. In 2020, IBM deprecated the Qiskit Aqua library—a higher-level component for domain-specific applications—and shifted focus toward modular primitives for more efficient algorithm execution, streamlining the framework for scalable . The introduction of Qiskit Runtime in May 2021 enhanced cloud-based execution by optimizing quantum-classical hybrid workflows, achieving up to 120x speedups in simulations compared to prior methods. This was followed by the launch of Qiskit Serverless in December 2023, enabling distributed execution of hybrid quantum-classical tasks across remote compute resources. Qiskit's development model emphasizes collaborative open-source contributions, primarily through its repositories managed by alongside a global community of developers, resulting in over 7,000 dependent projects that extend its functionality. Recent advancements reflect a strategic shift from Noisy Intermediate-Scale Quantum (NISQ)-era tools to preparations for fault-tolerant , incorporating support for modular quantum-classical orchestration to handle utility-scale workloads. In October 2025, the release of Qiskit SDK v2.2 included quantum-high-performance computing (HPC) integration demonstrations and enhanced primitives for operators and circuits. Benchmarks from November 2025 show Qiskit v2.2 is 83x faster at transpilation than TKET 2.6.0 for large circuits. A patch release, v2.2.3, followed on October 30, 2025, with bug fixes and minor improvements.

Core Components

Qiskit SDK

The Qiskit SDK serves as the foundational Python-based software development kit for constructing, simulating, and optimizing quantum circuits locally. It enables developers to build quantum programs using high-level abstractions while providing low-level control over quantum operations. The SDK is modular, allowing users to focus on algorithm design without immediate concern for hardware constraints during initial development. At its core, the SDK includes the qiskit.circuit module, which facilitates construction through classes like QuantumCircuit. This module represents computational routines that operate on qubits using unitary gates, measurements, and resets, supporting the creation of circuits for quantum processing units (QPUs). Complementing this is the qiskit.quantum_info module, designed for manipulating quantum states and operators. It offers tools for representing and analyzing , including statevectors, density matrices, Pauli operators, and channels, enabling tasks such as computing expectation values or evolving states under unitaries. Simulation capabilities are provided primarily via the separate Qiskit Aer package, a high-performance simulator. Aer supports multiple methods, including statevector simulation for ideal, noiseless circuits that track the full ; density matrix simulation for handling noisy, open-system dynamics; and shot-based noise models that approximate real hardware imperfections by sampling outcomes over multiple executions. These features allow for accurate local validation of circuits before hardware deployment. The transpilation process in the Qiskit SDK transforms abstract circuits into executable forms tailored to specific hardware topologies. This involves stages such as initialization (unrolling custom ), layout mapping (assigning qubits to physical ones), (inserting swaps for ), translation (converting to basis ), optimization (reducing depth and gate count), and scheduling (managing execution timing). The transpile orchestrates these via pass managers, with optimization levels from 0 (minimal) to 3 (aggressive). In the v2.2 release of October 2025, transpilation received performance enhancements, achieving 10-20% faster compilation on average through improved C support and a standalone transpiler . Installation of the Qiskit SDK is straightforward as a pip-installable Python package, requiring Python 3.9 or later. Users create a virtual environment, activate it, and run pip install qiskit to obtain the core SDK; additional dependencies like qiskit[visualization] can be included for plotting tools. Basic usage follows a workflow of circuit creation, simulation, and result analysis. For example, to create and simulate a Bell state:
python
from qiskit import QuantumCircuit
from qiskit_aer import AerSimulator
from qiskit.visualization import plot_histogram

# Create a Bell state circuit
qc = QuantumCircuit(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure([0, 1], [0, 1])

# Simulate using Aer
simulator = AerSimulator()
job = simulator.run(qc, shots=1000)
result = job.result()
counts = result.get_counts(qc)

# Visualize results
plot_histogram(counts)
This code constructs an entangled two-qubit state, simulates 1000 shots, and displays the outcome distribution, typically showing equal probabilities for '00' and '11'. Performance features in the SDK include GPU acceleration for Aer simulations, enabled via CUDA 11.2 or higher and the qiskit-aer-gpu package, which leverages NVIDIA cuQuantum for faster statevector and density matrix computations on compatible hardware. Additionally, the SDK integrates seamlessly with NumPy and SciPy for hybrid classical-quantum workflows, allowing efficient handling of classical data processing alongside quantum operations, such as tensor manipulations or optimization loops.

Qiskit Runtime

Qiskit Runtime is a cloud-based service introduced by in May 2021, designed to enable scalable execution of quantum workloads on IBM Quantum hardware. It optimizes performance by co-locating quantum and classical code in a containerized environment, achieving up to 120x speedups in iterative computations compared to traditional methods. The service incorporates resilient execution mechanisms, including automatic error suppression and mitigation techniques such as dynamical decoupling and zero-noise extrapolation, to improve result accuracy on noisy quantum processors. At the core of Runtime are its : the Sampler, which generates quasi-probability distributions from quantum circuits to sample outcomes, and the , which computes expectation values of observables relative to quantum states. These abstract low-level details, allowing users to focus on algorithmic design. With the release of version 2 in 2024, enhancements were added for advanced support—enabling multiple observables in a single job—and batching capabilities, which permit simultaneous execution of multiple circuits or parameter sets for efficient . Job management in Qiskit Runtime facilitates efficient handling of complex workloads through sessions, which enable coherent multi-job execution by maintaining backend state across iterations to reduce overhead and improve reproducibility. Parameter resolvers support sweeps over input parameters, allowing users to bind values to parameterized circuits for exploring optimization landscapes without repeated transpilation. The service integrates seamlessly with the IBM Quantum Platform for job submission, monitoring, and result retrieval via APIs. Qiskit Runtime supports hybrid quantum-classical workflows, where classical feedback loops iteratively refine quantum circuits based on prior results, essential for algorithms like variational quantum eigensolvers. In 2025, enhancements expanded capabilities for large-scale circuit execution, including support for fractional gates and dynamic circuits (client version 0.42.0, September 2025) and a new version of dynamic circuits (July 2025) offering up to 75x speedup and parallel execution; simulations up to thousands of qubits are possible using advanced methods like with the Qiskit Aer simulator as a backend. Access is tiered: a free tier provides limited monthly execution time on open-plan quantum devices with over 100 qubits, while premium access for enterprise users is available through the Quantum Network, offering priority queuing and dedicated resources.

Advanced Tools

Qiskit Serverless

Qiskit Serverless, released in 2024 as an open-source extension of the Qiskit ecosystem, provides a for executing quantum-classical workloads in a serverless manner across distributed environments, including multi-cloud platforms such as AWS and , as well as (HPC) clusters. This framework abstracts resource management, allowing developers to focus on application logic while automatically handling scaling and orchestration of tasks involving quantum processing units (QPUs), CPUs, and GPUs. By leveraging containerized execution similar to cloud-native services, it enables seamless deployment of long-running programs without manual configuration, supporting the growing need for quantum at scale. Key features of Qiskit Serverless include the Quantum Runtime Middleware Interface (QRMI), a hardware-agnostic layer that facilitates plugin-based integration with diverse quantum backends, such as those from IonQ, Amazon Braket, and IBM Quantum. This middleware simplifies vendor-specific complexities by providing unified APIs for resource control, ensuring portability across providers without altering core application code. Additionally, the framework supports parallel execution and resource allocation, akin to distributed computing libraries like Dask, enabling efficient scaling of jobs across multiple nodes for compute-intensive tasks. Users benefit from built-in fault tolerance and asynchronous job handling, with options for local development and remote deployment via Docker or Kubernetes clusters. Workflow orchestration in Qiskit Serverless revolves around defining quantum functions as Python classes that encapsulate hybrid logic, which are then deployed to target environments for execution. Developers register these functions with a serverless runtime, specifying resource requirements, after which the system handles scheduling, data persistence, and result aggregation across distributed resources. This approach supports iterative workflows, such as those involving quantum primitives from Qiskit Runtime, by distributing classical pre- and post-processing alongside quantum executions. For instance, a variational quantum algorithm can be orchestrated to run quantum subroutines on remote QPUs while classical optimization loops execute on HPC nodes, minimizing latency through automated load balancing. This evolution positions Qiskit Serverless as a bridge for quantum-centric supercomputing, allowing seamless incorporation of quantum accelerators into traditional HPC pipelines without custom middleware. Practical use cases for Qiskit Serverless include large-scale optimization problems, where distributed or QAOA variants are combined with classical solvers to tackle or at unprecedented scales. In applications, it facilitates hybrid quantum-classical training pipelines, distributing quantum feature maps or kernel estimations across cloud and HPC resources to accelerate model development for high-dimensional datasets. These capabilities have been demonstrated in research settings.

Qiskit Add-ons

Qiskit Add-ons evolved from the deprecated Qiskit Aqua library, which was officially deprecated in version 0.9.0 in April 2021, with support ending by the end of that year, to provide a more modular structure for development. The former Aqua's functionalities were refactored into standalone packages, emphasizing primitives such as SamplerV2 and EstimatorV2, introduced in Qiskit 1.0 in , which enable flexible, modular building of algorithms by separating circuit execution from result interpretation and supporting batched inputs for efficient scaling. These primitives facilitate the construction of hybrid quantum-classical workflows without the monolithic approach of legacy components. Key add-ons include Qiskit Optimization, which supports modeling and solving (QUBO) and Ising models through high-level abstractions and integration with quantum algorithms like the quantum approximate optimization algorithm (QAOA). Qiskit provides tools for quantum-enhanced machine learning, featuring the quantum support vector machine (QSVM) for kernel-based classification using fidelity quantum kernels and the variational quantum classifier (VQC) for parameterized quantum circuits interpreted as neural networks. Additionally, Qiskit Nature focuses on quantum chemistry simulations, enabling the computation of molecular ground and excited states via second-quantized operators mapped to Hamiltonians. These add-ons incorporate pre-built function templates for core variational algorithms, such as the (VQE) for finding molecular ground states and QAOA for , with updates in Qiskit Algorithms as of September 2025 enhancing compatibility with V2 primitives to prepare for fault-tolerant by improving scalability and error handling in larger circuits. Integration with the core Qiskit SDK allows plug-and-play circuit generation and execution; for instance, the EstimatorV2 primitive can compute energy expectation values for molecular Hamiltonians in VQE workflows by evaluating Pauli operators derived from second-quantized Hamiltonians, as demonstrated in Qiskit Nature tutorials where it processes ansatz circuits to minimize electronic energies. For performance, the add-ons include built-in support for noise-aware algorithms through primitive options that incorporate backend noise models and error mitigation, alongside hybrid classical optimizers such as COBYLA for constrained derivative-free optimization and SPSA for stochastic gradient approximation, which are particularly effective in noisy intermediate-scale quantum environments by requiring fewer circuit evaluations.

Ecosystem and Extensions

Community Plugins and Integrations

The Qiskit ecosystem encompasses a broad array of third-party extensions developed by the community, with numerous GitHub repositories listed in curated collections such as Awesome Qiskit, fostering interoperability across diverse quantum hardware providers. Key plugins enable seamless access to non-IBM quantum devices, including qiskit-ionq for IonQ's trapped-ion systems, qiskit-braket-provider for Amazon Braket's multi-provider hardware, and qiskit-rigetti for Rigetti's superconducting QPUs. These integrations allow developers to execute Qiskit circuits on heterogeneous backends without modifying core code, promoting a vendor-agnostic workflow. Qiskit Metal stands out as a specialized for quantum design, providing an open-source for creating superconducting quantum . Introduced in 2021, it supports for components like resonators and couplers, with updates through 2025 enhancing compatibility for advanced superconducting architectures. The facilitates end-to-end design flows, from generation to electromagnetic simulations, enabling engineers to multi-qubit devices efficiently. For performance evaluation, the Benchpress toolkit offers a standardized benchmarking suite to compare transpilation, circuit execution, and overall functionality across quantum providers and SDKs. Comprising over 1,000 tests, it quantifies metrics like compilation time and fidelity, helping developers assess scalability on diverse hardware. Interoperability is further advanced through the Quantum Resource Management Interface (QRMI), a vendor-agnostic standard that abstracts backend control and monitoring for on-premises or cloud quantum systems. Qiskit also supports circuit conversions to frameworks like Cirq via translators such as Qusetta and to PennyLane through dedicated plugins, enabling hybrid workflows in quantum machine learning. In 2025, Qiskit's ecosystem saw heightened adoption in for optimization tasks and in chemistry for molecular simulations, bolstered by integrations with libraries like PennyLane for quantum applications and OpenFermion for fermionic system modeling.

Educational and Community Initiatives

Qiskit supports quantum education through a variety of interactive resources designed to teach foundational concepts and practical skills. The Qiskit Textbook, an open-source, Jupyter notebook-based platform, provides tutorials on quantum gates, algorithms such as Grover's search, and hands-on experiments with quantum circuits. Although the original repository was archived in 2024, its content remains accessible and has influenced subsequent learning materials, including integration into broader Quantum platforms. These resources emphasize conceptual understanding, allowing learners to simulate and execute code on quantum hardware. IBM Quantum Learning, accessible via the Qiskit ecosystem, expands on these efforts with a library of over 10 courses covering basics to advanced topics, delivered through interactive modules and expert-led videos. This platform includes pathways updated in 2024 to guide users from introductory to implementation using Qiskit. Comprehensive documentation and tutorials hosted on quantum.cloud.ibm.com offer step-by-step guides on Qiskit , usage of primitives like and Sampler, and advanced subjects such as , including repetition codes and the Shor code. Qiskit fosters community engagement through structured programs that promote learning and collaboration. The Qiskit Global Summer School, an annual event since 2020, is a two-week program featuring lectures from Quantum experts, interactive labs, and Q&A sessions to build skills in . The 2025 edition, themed "The Past, Present, and Future of ," attracted global participants to explore evolution through hands-on Qiskit exercises. Complementary initiatives like Qiskit Camps, held in various regions such as in prior years, provide immersive training, technical talks, and hackathons to support diverse quantum communities. The Qiskit Advocate Program, relaunched in July 2025 as version 2.0, targets active community members worldwide by offering from IBM experts, networking opportunities, and priority access to IBM Quantum resources like and premium features. This global initiative, building on its 2019 origins, equips advocates with tools to advance quantum and . Qiskit's community impact is evident in its open-source model, with thousands of contributions via through issues, pull requests, and code enhancements to the core SDK and extensions. Partnerships with universities and organizations, such as the IBM-HBCU Quantum Center and the Quantum Network, integrate Qiskit into curricula and research collaborations across institutions worldwide, alongside local Qiskit user groups that host events and workshops. These efforts have cultivated a diverse ecosystem, enabling user groups in regions like and North America to organize hackathons and seminars.

References

  1. [1]
    Overview | IBM Quantum Documentation
    Qiskit provides a modular and extensible framework for quantum research and development across algorithms, high-performance computing, and quantum information ...Install Qiskit · Introduction to Qiskit Functions · Qiskit SDK API · Hello world
  2. [2]
    IBM Quantum Computing | Qiskit
    ### Summary of Qiskit
  3. [3]
    Qiskit 1.0: A Milestone For The World's Most Popular Quantum ...
    Since its first release in 2017, IBM has tested, iterated and improved more than a hundred Qiskit point-releases. Today, Qiskit has evolved from a quantum SDK ...
  4. [4]
    Qiskit 1.0 release summary | IBM Quantum Computing Blog
    Mar 6, 2024 · This blog post will provide Qiskit users with a recap of the key points we originally shared about Qiskit 1.0 via our pre-release announcement in December.
  5. [5]
    Releases · Qiskit/qiskit - GitHub
    Qiskit 2.2.3. last week · 2.2.3 ; Qiskit 2.2.2. 2 weeks ago · 2.2.2 ; Qiskit 1.4.5. 3 weeks ago · 1.4.5 ; Qiskit 2.2.1. Sep 25 · 2.2.1 ; Qiskit 2.2.0. Sep 18 · 2.2.0.
  6. [6]
    Qiskit Aer 0.17.1
    Qiskit Aer is high-performance quantum computing simulators with realistic noise models. It provides interfaces to run quantum circuits with or without noise.
  7. [7]
    Qiskit Algorithms (qiskit_algorithms) - GitHub Pages
    Sep 9, 2025 · Qiskit Algorithms is a library of quantum algorithms for quantum computing with Qiskit. These algorithms can be used to carry out research and investigate how ...
  8. [8]
    Qiskit Nature 0.7.2 - GitHub Pages
    Qiskit Nature is an open-source framework which supports solving quantum mechanical natural science problems using quantum computing algorithms.Mappers (qiskit_nature... · Drivers (qiskit_nature... · Tutorials · Getting started
  9. [9]
    Qiskit Machine Learning 0.8.4 - GitHub Pages
    Qiskit Machine Learning introduces fundamental computational building blocks, such as Quantum Kernels and Quantum Neural Networks, used in various applications.Effective Dimension of Qiskit... · Getting started · Tutorials · EstimatorQNN
  10. [10]
    Qiskit Metal Overview
    QComponent. QComponent is the base class for all Metal components and is the central construct from which all components in Metal are derived. ; QRouteLead. A ...
  11. [11]
    Qiskit and its Fundamental Elements - Medium
    Jul 13, 2018 · In this post, we will share an overview of our plans for Qiskit, including its four elements, each of which forms a pillar of quantum computing software.
  12. [12]
    New Qiskit design: Introducing Qiskit application modules - IBM
    Terra, Aer, Ignis, and Aqua — into more-focused application modules that target specific ...Missing: components | Show results with:components
  13. [13]
  14. [14]
    Qiskit is an open-source SDK for working with quantum ... - GitHub
    Qiskit is an open-source SDK for working with quantum computers at the level of extended quantum circuits, operators, and primitives. www.ibm.com/quantum/qiskit ...
  15. [15]
    IBM Expands Quantum Computing Network - HPCwire
    Apr 5, 2018 · QISKit, as IBM's Talia Gershon enthusiastically explained in her keynote talk, makes it possible to entangle two qubits with two lines of code.Missing: milestones | Show results with:milestones
  16. [16]
    IBM Debuts Qiskit Runtime for Quantum Computing - HPCwire
    May 11, 2021 · IBM today introduced an enhanced Qiskit Runtime Software for quantum computing, which it says demonstrated 120x speedup in simulating molecules.
  17. [17]
    IBM Debuts Next-Generation Quantum Processor & IBM Quantum ...
    Dec 4, 2023 · IBM will integrate generative AI available through watsonx to help automate the development of quantum code for Qiskit. This will be achieved ...
  18. [18]
    Release News: Qiskit SDK v2.2 is here! - IBM
    Oct 20, 2025 · ... transpilation is now 10-20% faster on ... faster and demonstrated less surprising behavior when used directly in Primitives applications.
  19. [19]
    circuit (latest version) | IBM Quantum Documentation
    Qiskit includes a large library of standard gates and circuits, which is documented in qiskit.circuit.library . Many of these are declared as Python-object ...EfficientSU2 · EquivalenceLibrary · Isometry · Annotation
  20. [20]
  21. [21]
    AerSimulator - Qiskit Aer 0.17.1 - GitHub Pages
    The AerSimulator supports multiple simulation methods and configurable options for each simulation method. These may be set using the appropriate kwargs during ...Missing: capabilities | Show results with:capabilities
  22. [22]
    Introduction to transpilation | IBM Quantum Documentation
    Transpilation is the process of rewriting a given input circuit to match the topology of a specific quantum device, and optimize the circuit instructions.
  23. [23]
    transpiler (latest version) | IBM Quantum Documentation
    Qiskit defaults to optimization level 2, as a trade-off between compilation time and the expected amount of optimization. The optimization level affects which ...Preset pass managers · Choosing preset stage... · Layout stage · Optimization stage
  24. [24]
    Install Qiskit | IBM Quantum Documentation
    Install Python, create a virtual environment, then use pip to install Qiskit and Qiskit Runtime. Use `pip install qiskit` and `pip install qiskit-ibm-runtime`.<|control11|><|separator|>
  25. [25]
    Hello world | IBM Quantum Documentation
    Qiskit provides two ways to return data: you can obtain a probability distribution for a set of qubits you choose to measure, or you can obtain the expectation ...
  26. [26]
    Getting started - Qiskit Aer 0.17.1 - GitHub Pages
    In order to install and run the GPU supported simulators on Linux, you need CUDA® 10.1 or newer previously installed. CUDA® itself would require a set of ...
  27. [27]
    Introducing new Qiskit Runtime capabilities | IBM Quantum ...
    Nov 9, 2022 · We announced that error suppression and mitigation tools are now available as a beta release through the Qiskit Runtime primitives.
  28. [28]
    Building software for quantum-centric supercomputing - IBM
    Sep 15, 2025 · Explore open-source tools that IBM and its partners are creating to enable seamless integrations of quantum and classical high-performance ...Missing: Runtime enhancements
  29. [29]
    Qiskit/qiskit-serverless: A programming model for ... - GitHub
    With this software, you can execute Qiskit Functions as long running jobs and distribute them across multiple CPUs, GPUs, and QPUs. This means you can take on ...Missing: 2023 hybrid
  30. [30]
    Introduction to Qiskit Serverless | IBM Quantum Documentation
    Qiskit Serverless provides a simple interface to run workloads across quantum-classical resources. This includes deploying programs to the IBM Quantum Platform.
  31. [31]
    Qiskit Serverless sets the stage for Qiskit Functions in the cloud - IBM
    Sep 4, 2024 · With Qiskit Serverless, users can build, deploy, and run workloads remotely using the compute resources of the IBM Quantum™ platform.Missing: hybrid | Show results with:hybrid
  32. [32]
    qiskit-community/qrmi: Thin and vendor agnostic layer to ... - GitHub
    Oct 15, 2025 · QRMI acts like a thin middleware layer that abstracts away complexities of controling quantum resources by exposing set of simple APIs to ...Missing: Serverless | Show results with:Serverless
  33. [33]
    Qiskit Serverless 0.27.0 - GitHub Pages
    Scalability : Qiskit Serverless allows users to easily scale their jobs by running them in parallel across multiple machines or general compute resources. This ...Missing: features | Show results with:features
  34. [34]
    Qiskit C API enables new end-to-end quantum + HPC workflows - IBM
    Now, the new Qiskit SDK v2.2 release adds a dedicated transpiler function for transpilation of quantum circuits. With these components, you ...
  35. [35]
    IBM launches Qiskit services for quantum computing
    Nov 13, 2024 · IBM is looking to leverage its Qiskit to enable supercomputers to split up problems and allow algorithms to use classical or quantum computing ...
  36. [36]
    New application functions bring quantum to applied research - IBM
    Jun 5, 2025 · The latest of many powerful application functions that are helping researchers seamlessly integrate quantum computing into their application workflows.
  37. [37]
    Introducing Quantum Serverless | IBM Quantum Computing Blog
    Nov 16, 2021 · Qiskit Runtime provides a containerized execution environment for classical code that has low-latency access to quantum hardware. This enables ...Missing: QRMI | Show results with:QRMI
  38. [38]
    qiskit-community/qiskit-aqua: Quantum Algorithms & Applications ...
    Dec 7, 2021 · PLEASE NOTE: As of version 0.9.0, released on 2nd April 2021, Qiskit Aqua has been deprecated with its support ending and eventual archival ...Missing: announcement | Show results with:announcement
  39. [39]
    Qiskit Optimization 0.7.0 - GitHub Pages
    Qiskit Optimization is an open-source framework that covers the whole range from high-level modeling of optimization problems.
  40. [40]
  41. [41]
    Qiskit Nature 0.7.2 - GitHub Pages
    Qiskit Nature is an open-source framework which supports solving quantum mechanical natural science problems using quantum computing algorithms.Tutorials · Mappers (qiskit_nature... · Drivers (qiskit_nature... · Getting started
  42. [42]
    Quantum Approximate Optimization Algorithm - Qiskit Algorithms 0.4.0
    Sep 9, 2025 · This notebook demonstrates the implementation of the Quantum Approximate Optimization Algorithm (QAOA) for a graph partitioning problem (finding the maximum ...
  43. [43]
    Optimizers (qiskit_algorithms.optimizers) - Qiskit Algorithms 0.4.0
    Sep 9, 2025 · This package contains a variety of classical optimizers and were designed for use by qiskit_algorithm's quantum variational algorithms, such as VQE.Missing: aware hybrid<|control11|><|separator|>
  44. [44]
    qiskit-community/awesome-qiskit - GitHub
    Jun 10, 2024 · Awesome Qiskit is a list of projects, tools, utilities, libraries and tutorials from a broad community of developers and researchers.
  45. [45]
    Qiskit provider for IonQ backends - GitHub
    Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.
  46. [46]
    qiskit-community/qiskit-braket-provider - GitHub
    Qiskit-Braket provider to execute Qiskit programs on AWS quantum computing hardware devices through Amazon Braket.
  47. [47]
    Qiskit provider serving Rigetti hardware & simulator backends.
    Rigetti Provider for Qiskit. Try It Out. To try out this library, you can run example notebooks in a pre-made binder.
  48. [48]
    Qiskit Metal | Quantum Device Design & Analysis (Q-EDA) 0.1.5
    Qiskit Metal is an open-source framework (and library) for the design of superconducting quantum chips and devices. Call it quantum EDA (Q-EDA) and analysis.
  49. [49]
    qiskit-community/qiskit-metal: Quantum Hardware Design ... - GitHub
    Qiskit Metal is an open-source framework for engineers and scientists to design superconducting quantum devices with ease.
  50. [50]
    Qiskit/benchpress - GitHub
    Benchpress is an open-source tool for benchmarking quantum software. The Benchpress open-source benchmarking suite comprises over 1,000 different tests.Missing: toolkit | Show results with:toolkit
  51. [51]
    Benchmarking the performance of quantum computing software - arXiv
    Sep 13, 2024 · We present Benchpress, a benchmarking suite for evaluating the performance and range of functionality of multiple quantum computing software development kits.Missing: toolkit | Show results with:toolkit
  52. [52]
    qcware/qusetta: Translating quantum circuits to and from ... - GitHub
    Convert a qiskit circuit to cirq and quasar; Create qiskit, cirq, and quasar circuits from a qusetta circuit. Important details about the translation; A note ...
  53. [53]
    qml.from_qiskit — PennyLane 0.43.0 documentation
    Converts a Qiskit QuantumCircuit into a PennyLane quantum function. This function depends upon the PennyLane-Qiskit plugin. Follow the installation ...
  54. [54]
    How Quantum Computing Is Shaping The Future Of Finance - Forbes
    Aug 6, 2025 · Quantum computers may eventually offer energy efficiency for certain tasks, making them a promising foundation for more sustainable financial ...
  55. [55]
  56. [56]
    PennyLaneAI/pennylane-qiskit - GitHub
    The PennyLane-Qiskit plugin integrates the Qiskit quantum computing framework with PennyLane's quantum machine learning capabilities.
  57. [57]
    qiskit-community/qiskit-textbook: [ARCHIVED] A university ... - GitHub
    Nov 5, 2024 · This repo is for an old version of the textbook and is now deprecated. For the latest version of the textbook, make your issue / PR at ...
  58. [58]
    MATERIAL Qiskit Textbook - QTEdu
    The free Qiskit textbook, provided by IBM Quantum, covers quantum algorithms, non-fault-tolerant devices, and Qiskit coding, and is for various audiences.
  59. [59]
    IBM Quantum Learning
    Learn quantum computing. Start learning and applying quantum computing with Qiskit through our library of 10+ courses from leading experts. View all courses.
  60. [60]
    IBM Quantum Learning: Course updates & new learning pathways
    Oct 23, 2024 · IBM is releasing new educational resources on IBM Quantum Learning, including the introduction of “learning pathways” for navigating quantum educational ...<|control11|><|separator|>
  61. [61]
    Overview | IBM Quantum Documentation
    Qiskit provides a modular and extensible framework for quantum research and development across algorithms, high-performance computing, and quantum information ...IBM Quantum Composer · Qiskit-ibm-runtime API reference · Install Qiskit · Tutorials
  62. [62]
    Repetition codes | IBM Quantum Documentation
    This tutorial demonstrates how to build basic repetition codes using IBM dynamic circuits, an example of basic quantum error correction (QEC).Background · Setup · Build a bit-flip stabilizer circuit · Generate ISA circuits
  63. [63]
    The Qiskit Global Summer School is returning with a focus on ...
    Apr 23, 2021 · This year's Qiskit Global Summer School, from July 12-23, will feature live lectures and hands-on labs using the Qiskit machine learning ...
  64. [64]
    IBM Opens Registration for Qiskit Global Summer School 2025
    May 28, 2025 · The two-week online program will feature fourteen lectures delivered by IBM Quantum experts, along with interactive labs designed to offer hands ...
  65. [65]
    Recap: 2019 Qiskit Camp Europe - Medium
    Sep 24, 2019 · The 2019 Qiskit Camp Europe's main goal was to support this diverse and growing quantum computing community by fostering both immersive learning and scientific ...
  66. [66]
    Quantum Hackathon in an African Nature Preserve - Qiskit Camp ...
    Jan 14, 2020 · Qiskit Camps are an immersive experience that consists of training sessions, deep technical talks, and a hackathon alongside the #Qiskit ...Missing: program | Show results with:program
  67. [67]
    IBM Launches Qiskit Advocate Program, 2.0 - HPCwire
    Jul 29, 2025 · It aims to support an advocate's growth within the quantum industry, equipping them with access to mentorship, education, networking with peers ...
  68. [68]
    qiskit-advocate/application-guide - GitHub
    May 7, 2025 · The Qiskit Advocate program is a global initiative to support the most active members of the Qiskit community and Qiskit ecosystem.
  69. [69]
    IBM Quantum Network
    Applications are open for the Qiskit advocate program. 28 Jul 2025 • Radha ... Apply to host an event at Qiskit Fall Fest 2025! 22 Jul 2025 • Serena ...
  70. [70]
    The IBM-HBCU Quantum Center grows rapidly in size and scope
    Feb 22, 2021 · The IBM-HBCU Quantum Center's mission is to educate, foster collaboration on joint research, and ultimately create a more diverse quantum-ready workforce.