Source code for qbraid_qir.qasm3.convert

# Copyright (C) 2024 qBraid
#
# This file is part of qbraid-qir
#
# Qbraid-qir is free software released under the GNU General Public License v3
# or later. You can redistribute and/or modify it under the terms of the GPL v3.
# See the LICENSE file in the project root or <https://www.gnu.org/licenses/gpl-3.0.html>.
#
# THERE IS NO WARRANTY for qbraid-qir, as per Section 15 of the GPL v3.

"""
Module containing OpenQASM to QIR conversion functions

"""
from typing import Optional, Union

import openqasm3
import pyqasm
from pyqir import Context, Module, qir_module

from .elements import QasmQIRModule, generate_module_id
from .exceptions import Qasm3ConversionError
from .visitor import QasmQIRVisitor


[docs] def qasm3_to_qir( program: Union[openqasm3.ast.Program, str], name: Optional[str] = None, external_gates: Optional[list[str]] = None, **kwargs, ) -> Module: """Converts an OpenQASM 3 program to a PyQIR module. Args: program (openqasm3.ast.Program or str): The OpenQASM 3 program to convert. name (str, optional): Identifier for created QIR module. Auto-generated if not provided. external_gates (list[str], optional): A list of custom gate names that are not natively recognized by pyqasm but should be treated as valid during program unrolling. Keyword Args: initialize_runtime (bool): Whether to perform quantum runtime environment initialization, defaults to `True`. record_output (bool): Whether to record output calls for registers, defaults to `True`. Returns: The QIR ``pyqir.Module`` representation of the input OpenQASM 3 program. Raises: TypeError: If the input is not a valid OpenQASM 3 program. Qasm3ConversionError: If the conversion fails. """ if isinstance(program, openqasm3.ast.Program): program = openqasm3.dumps(program) elif not isinstance(program, str): raise TypeError("Input quantum program must be of type openqasm3.ast.Program or str.") qasm3_module = pyqasm.loads(program) qasm3_module.unroll(external_gates=external_gates) if name is None: name = generate_module_id() llvm_module = qir_module(Context(), name) final_module = QasmQIRModule(name, qasm3_module, llvm_module) visitor = QasmQIRVisitor(external_gates=external_gates, **kwargs) final_module.accept(visitor) err = llvm_module.verify() if err is not None: raise Qasm3ConversionError(err) return llvm_module