Skip to main content

qiskit_ibm_transpiler

PyPI version License

Leverage IBM Quantum's cutting-edge Qiskit Transpiler Service and AI-powered transpiler passes to achieve superior circuit optimization through reinforcement learning algorithms.

✨ Key Features

  • 🧠 AI-Powered Optimization: Advanced routing and circuit synthesis using reinforcement learning algorithms
  • Local & Remote Modes: Run AI passes locally or leverage cloud resources
  • ☁️ Cloud-ready: Harness IBM Quantum's cloud infrastructure for intensive computations
  • 🎯 Drop-in Replacement: Seamlessly integrate with existing Qiskit workflows
  • 📈 Superior Performance: Our AI models typically outperform traditional heuristic algorithms. Read the benchmark

Note: The cloud transpilation capabilities are only available for IBM Quantum Premium Plan users. The local mode is available to any user and is enabled by default if the local mode dependencies are installed. Currently in beta release.

📦 Installation

Install the package with pip:

pip install qiskit-ibm-transpiler

Note: AI local mode dependencies (qiskit-ibm-ai-local-transpiler) are now included by default. The [ai-local-mode] extra is maintained for backward compatibility but is no longer required:

# This still works but is now equivalent to the basic installation
pip install qiskit-ibm-transpiler[ai-local-mode]

🔐 Authentication

The package automatically authenticates using your IBM Quantum Platform credentials aligned with how Qiskit Runtime manages it:

  • Environment variable: QISKIT_IBM_TOKEN
  • Configuration file: ~/.qiskit/qiskit-ibm.json (searches in order: default-ibm-quantum-platform, default-ibm-quantum)

You can also specify a particular saved account by name using the account_name parameter:

from qiskit_ibm_transpiler.transpiler_service import TranspilerService

# Use a specific saved account
service = TranspilerService(
    backend_name="ibm_torino",
    account_name="my-custom-account"  # Uses this account, falls back to defaults if not found
)

🚀 Getting Started

Tutorial and Examples

For a comprehensive introduction to the qiskit-ibm-transpiler library, start here:

These notebooks provide hands-on examples and detailed explanations to help you get the most out of the AI-powered transpilation capabilities.

Quick Start

Using AI-powered Transpiler Passes Locally (Recommended)

AI Routing Pass

The AIRouting pass provides intelligent layout selection and circuit routing using reinforcement learning:

from qiskit.transpiler import PassManager
from qiskit_ibm_transpiler.ai.routing import AIRouting
from qiskit.circuit.library import EfficientSU2

# Local mode execution
ai_routing = PassManager([
    AIRouting(
        backend_name="ibm_torino", 
        optimization_level=3, 
        layout_mode="optimize",
        local_mode=True  # Run locally for faster execution
    )
])

circuit = EfficientSU2(101, entanglement="circular", reps=1).decompose()
routed_circuit = ai_routing.run(circuit)
Configuration Options
Parameter Options Description
optimization_level 1, 2, 3 Computational effort (higher = better results, longer time)
layout_mode optimize Best for general circuits (default)
improve Uses existing layout as starting point
keep Respects previous layout selection
local_mode True/False Run locally or on cloud

AI Circuit Synthesis Passes

Optimize specific circuit blocks using AI-powered synthesis for superior gate count reduction:

from qiskit.transpiler import PassManager
from qiskit_ibm_transpiler.ai.routing import AIRouting
from qiskit_ibm_transpiler.ai.synthesis import (
    AILinearFunctionSynthesis, AIPauliNetworkSynthesis
)
from qiskit_ibm_transpiler.ai.collection import (
    CollectLinearFunctions, CollectPauliNetworks
)
from qiskit.circuit.library import EfficientSU2

# Complete AI-powered transpilation pipeline
ai_pm = PassManager([
    AIRouting(backend_name="ibm_torino", optimization_level=3, layout_mode="optimize"),
    
    # Collect and synthesize linear functions
    CollectLinearFunctions(),
    AILinearFunctionSynthesis(backend_name="ibm_torino", local_mode=True),
    
    # Collect and synthesize Pauli networks
    CollectPauliNetworks(),
    AIPauliNetworkSynthesis(backend_name="ibm_torino", local_mode=True),
])

circuit = EfficientSU2(10, entanglement="full", reps=1).decompose()
optimized_circuit = ai_pm.run(circuit)

Available Synthesis Passes

Pass Circuit Type Max Qubits Local Mode
AICliffordSynthesis H, S, CX gates 9
AILinearFunctionSynthesis CX, SWAP gates 9
AIPermutationSynthesis SWAP gates 65, 33, 27
AIPauliNetworkSynthesis H, S, SX, CX, RX, RY, RZ 6

Using the Transpiler Service (Cloud)

Note: The Qiskit Transpiler Service is currently being migrated. We recommend using local mode instead.

from qiskit.circuit.library import EfficientSU2
from qiskit_ibm_transpiler.transpiler_service import TranspilerService

# Create your circuit
circuit = EfficientSU2(101, entanglement="circular", reps=1).decompose()

# Enable AI optimization for superior results
service = TranspilerService(
    backend_name="ibm_torino",
    ai="auto",              # Service decides: AI passes vs standard Qiskit
    optimization_level=3,
)
optimized_circuit = service.run(circuit)

Service Configuration Options:

Parameter Values Description
ai "true", "false", "auto" AI transpilation mode
optimization_level 1, 2, 3 Optimization intensity
backend_name Backend string Target quantum device
coupling_map List of tuples Custom connectivity

Service Limits: Max 1M two-qubit gates per job, 30-minute transpilation timeout, 20-minute result retrieval window.

Hybrid Heuristic-AI Circuit Transpilation

The qiskit-ibm-transpiler allows you to configure a hybrid pass manager that automatically combines the best of Qiskit's heuristic and AI-powered transpiler passes. This feature behaves similarly to the Qiskit generate_pass_manager method:

from qiskit_ibm_transpiler import generate_ai_pass_manager
from qiskit.circuit.library import efficient_su2
from qiskit_ibm_runtime import QiskitRuntimeService

backend = QiskitRuntimeService().backend("ibm_torino")
torino_coupling_map = backend.coupling_map

su2_circuit = efficient_su2(101, entanglement="circular", reps=1)

ai_hybrid_pass_manager = generate_ai_pass_manager(
    coupling_map=torino_coupling_map,
    ai_optimization_level=3,
    optimization_level=3,
    ai_layout_mode="optimize",
)

ai_su2_transpiled_circuit = ai_hybrid_pass_manager.run(su2_circuit)

Configuration Options:

  • coupling_map: Specifies which coupling map to use for the transpilation
  • ai_optimization_level: Level of optimization (1-3) for AI components of the PassManager
  • optimization_level: Optimization level for heuristic components of the PassManager
  • ai_layout_mode: How the AI routing handles layout (see AI routing pass section for options)

Performance Tuning

Thread Pool Configuration:

# Method 1: Per-pass configuration
AILinearFunctionSynthesis(backend_name="ibm_torino", max_threads=20)

# Method 2: Global environment variable
import os
os.environ["AI_TRANSPILER_MAX_THREADS"] = "20"

Smart Replacement:

  • Default: Only replaces if synthesis improves gate count
  • Force replacement: replace_only_if_better=False

Note: Synthesis passes respect device coupling maps and work seamlessly after routing passes.

🔧 Advanced Configuration

Logging

Customize logging levels for debugging and monitoring:

import logging

# Available levels: NOTSET, DEBUG, INFO, WARNING, ERROR, CRITICAL
logging.getLogger("qiskit_ibm_transpiler").setLevel(logging.INFO)

Environment Variables

Configure model sources and HuggingFace integration using environment variables:

HuggingFace Configuration

Variable Description Default
QISKIT_TRANSPILER_HF_TOKEN HuggingFace authentication token for private repositories None
QISKIT_TRANSPILER_HF_ENDPOINT Custom HuggingFace API endpoint https://huggingface.co

Model Repository Configuration

Override default model repositories for each synthesis type:

Clifford Synthesis Models:

  • QISKIT_TRANSPILER_CLIFFORD_REPO_ID - HuggingFace repository ID (default: qiskit/ai-transpiler_cliffords)
  • QISKIT_TRANSPILER_CLIFFORD_REVISION - Git revision/tag (default: main)
  • QISKIT_TRANSPILER_CLIFFORD_SUBDIR - Subdirectory within repository (default: None)

Linear Function Synthesis Models:

  • QISKIT_TRANSPILER_LINEAR_FUNCTION_REPO_ID - HuggingFace repository ID (default: qiskit/ai-transpiler_linear-functions)
  • QISKIT_TRANSPILER_LINEAR_FUNCTION_REVISION - Git revision/tag (default: main)
  • QISKIT_TRANSPILER_LINEAR_FUNCTION_SUBDIR - Subdirectory within repository (default: None)

Permutation Synthesis Models:

  • QISKIT_TRANSPILER_PERMUTATION_REPO_ID - HuggingFace repository ID (default: qiskit/ai-transpiler_permutations)
  • QISKIT_TRANSPILER_PERMUTATION_REVISION - Git revision/tag (default: main)
  • QISKIT_TRANSPILER_PERMUTATION_SUBDIR - Subdirectory within repository (default: None)

Example Usage

# Use a custom model repository
export QISKIT_TRANSPILER_CLIFFORD_REPO_ID="my-org/custom-clifford-models"
export QISKIT_TRANSPILER_CLIFFORD_REVISION="v2.0.0"

# Use a private repository with authentication
export QISKIT_TRANSPILER_HF_TOKEN="hf_xxxxxxxxxxxxx"

# Use a specific subdirectory within the repository
export QISKIT_TRANSPILER_LINEAR_FUNCTION_SUBDIR="models/optimized"

Model Cache Location

Models are automatically cached by HuggingFace Hub in ~/.cache/huggingface/hub/. To clear the cache:

# Clear all HuggingFace models
rm -rf ~/.cache/huggingface/hub/

# Clear only AI transpiler models
rm -rf ~/.cache/huggingface/hub/models--*ai-transpiler*

📚 Resources & Support

📄 Citation

If you use this library in your research, please cite:

@misc{kremer2024practical,
    title={Practical and efficient quantum circuit synthesis and transpiling with Reinforcement Learning},
    author={David Kremer and Victor Villar and Hanhee Paik and Ivan Duran and Ismael Faro and Juan Cruz-Benito},
    year={2024},
    eprint={2405.13196},
    archivePrefix={arXiv},
    primaryClass={quant-ph}
}

Release files for qiskit-ibm-transpiler 0.18.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for qiskit-ibm-transpiler 0.18.0
File
qiskit_ibm_transpiler-0.18.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
qiskit_ibm_transpiler-0.18.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
qiskit_ibm_transpiler-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
qiskit_ibm_transpiler-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
qiskit_ibm_transpiler-0.18.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
qiskit_ibm_transpiler-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 6.5 MB

Release files / qiskit_ibm_transpiler-0.18.0-cp313-cp313-win_amd64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp313-cp313-win_amd64.whl
Size 330.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
6451949a4ded64dcb2f172964c857a4d54e33b67c607823c97c11c930cab0242
BLAKE2b-256 checksum
How to use checksums
e0bde7eacbf3443bc5c09ed40ae497fc3a9496f30eee8469d3d43554e679e92f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 448.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fbdc2475fa02f6aa2519ac30d52bcb8b224770690fc2fb03e98fc4ff76757d70
BLAKE2b-256 checksum
How to use checksums
3a0925f3cf7739fe318e2b6ca8f480a9d71c74155307a90c3d4f91cde623358a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp313-cp313-macosx_11_0_arm64.whl
Size 411.4 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c768af7fa06e2867d34deff33c7219657264c692ddcc3d8e84276038b5f32a40
BLAKE2b-256 checksum
How to use checksums
01bb2e57dc147c679b11071d6fdee81412dc5ac74e9a0b909dc05e0ec5405df3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 422.8 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
800ccb3df4cc167dc60d3e00751a151acc1d89365554d553faa6ac103115843e
BLAKE2b-256 checksum
How to use checksums
d07418b627ed4ab1e25fc2595bf9ec8112f772f2a10a184265cd15f665d6211a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp312-cp312-win_amd64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp312-cp312-win_amd64.whl
Size 330.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f17c725d825c664afb06956dd843e263b37a178980903aecb2e3fd2bcfdb0eb5
BLAKE2b-256 checksum
How to use checksums
afadaee40be8d183c3d57da4a81cf3d1d0ece5e94b22f945939afc1cd4b1141f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 448.4 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
74d3cfa59c8d6c1fb01adf589784fe0ac9319a7013f2698360c68ed479e421df
BLAKE2b-256 checksum
How to use checksums
acfd42e0b5749fb7ff8124722d9f44402a01a2b26b28a4d442f6ebb225102e44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp312-cp312-macosx_11_0_arm64.whl
Size 411.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e6df34076f8822f25119b8d342f94a519f407aa3e5a509deab5a056bc47d21e1
BLAKE2b-256 checksum
How to use checksums
05a83af7961495274ec46916dc8c2fc5db10c43fa97459646405e3096bf71287
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 422.9 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
75fdc8f08c5cb73c6cf8bc335c9f609e0f768032c8f7541f4f6dc5b7fa7c6a55
BLAKE2b-256 checksum
How to use checksums
ad89d23446f57d781633b1a076df05200b090f7518635924da951a0ac1778d6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp311-cp311-win_amd64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp311-cp311-win_amd64.whl
Size 330.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
b914b713bf919e76da34970c7e7c63a5924d08880f2d4f88c192c399a8ad6bfa
BLAKE2b-256 checksum
How to use checksums
ed1d08e84ba4cc502c5118e52de337728a70f3486b99e579d5a18cd009474742
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 449.3 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a423b79cc25edbe054f822b9a33e0d98e01d31fc6ecb666712297eafe8f38022
BLAKE2b-256 checksum
How to use checksums
51db42b9f9b300d1fd4d4f41c5ba26f58c258b32632487598804f7c36e7e1607
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp311-cp311-macosx_11_0_arm64.whl
Size 411.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
60037f65ba6c8022872c0d02bd1b05df259123e2da907df185003710d1e3a4e6
BLAKE2b-256 checksum
How to use checksums
1a941a234ba3bdecd83130434ff723b1d31fc2eb9d5ae5a5941d65a315399d67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 424.2 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f2c302ccd7dcebfd25798f7a95c0606a34f743b500773aff5454d46dfeae8aef
BLAKE2b-256 checksum
How to use checksums
66c838fdcc5064d5d38bb1c392006f8e9f40fccf3caea54f773094cb9e9255f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp310-cp310-win_amd64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp310-cp310-win_amd64.whl
Size 330.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2c8d1cabaa6f024f4b3eaef09d42bf7e6414328035769c83059bb6bdac9cece2
BLAKE2b-256 checksum
How to use checksums
883457e460934bf6c7759525ec317df2fdfe9056e5580358232c5a61361c8a37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 449.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d850540d75d78452131900c36b36901db885790efe378130a55c72edd04fa036
BLAKE2b-256 checksum
How to use checksums
bf6ec899e2ad6ae334fd1fec647f26d8e75ca8da6911e7bee25692e377ec34cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp310-cp310-macosx_11_0_arm64.whl
Size 410.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fde5b9374e56703fcbeff10211e0bb570a92e7b066bb0ec2074e7ca20232f4e5
BLAKE2b-256 checksum
How to use checksums
d2250b1732bfeb454f83c23956f00e499da89815aa678111370204fbd28bd7f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release files / qiskit_ibm_transpiler-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl

Download URL qiskit_ibm_transpiler-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 423.9 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
13ff3c7e79a536a824d2c108df98e9a163045abc399ca45d240a02e4b97a319b
BLAKE2b-256 checksum
How to use checksums
c883040e1c7a4c8f33e5c1c9c2ba3da007f9ed4b5f9774d30c2286d323fbd039
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Mar 10, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.18.0 This release

16 release files

0.17.0

2 release files

0.16.1

2 release files

0.16.0

2 release files

0.15.2

2 release files

0.14.5

2 release files

0.14.4

2 release files

0.14.2

2 release files

0.14.1

2 release files

0.14.0

2 release files

0.13.1

2 release files

0.12.0

2 release files

0.11.1

2 release files

0.11.0

2 release files

0.10.2

2 release files

0.10.1

2 release files

0.10.0

2 release files

0.9.3

2 release files

0.9.2

2 release files

0.9.1

2 release files

0.9.0

2 release files

0.8.2

2 release files

0.8.1

2 release files

0.8.0

2 release files

0.7.4

2 release files

0.7.3

2 release files

0.7.2

2 release files

0.7.1

2 release files

0.7.0

2 release files

0.6.5

2 release files

0.6.4

2 release files

0.6.3

2 release files

0.6.2

2 release files

0.6.1

2 release files

0.6.0

2 release files

0.5.7

2 release files

0.5.6

2 release files

0.5.5

2 release files

0.5.4

2 release files

0.5.3

2 release files

0.5.2

2 release files

0.5.1

2 release files

0.5.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page