microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
7421e7dd1015dcbd940bf843d33583470de580ea

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

source/pip/tests-integration/utils.py

171lines · modepreview

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

"""
This file is used to configure pytest for the test suite.

- It attempts to import necessary modules from test_circuits.

Fixtures and other configurations for pytest can be added to this file to
be shared across multiple test files.
"""

import os

from qsharp._native import (
    Interpreter,
    TargetProfile,
    QSharpError,
)

from typing import Optional, List

from interop_qiskit.test_circuits import *

try:
    from qirrunner import run, OutputHandler

    QIR_RUNNER_AVAILABLE = True
except ImportError:
    QIR_RUNNER_AVAILABLE = False

SKIP_REASON = "QIR runner is not available"


def get_resource_dir(target_profile: TargetProfile) -> str:
    return os.path.join(
        os.path.dirname(__file__), "resources", str(target_profile).lower()
    )


def get_input_dir(target_profile: TargetProfile) -> str:
    return os.path.join(get_resource_dir(target_profile), "input")


def get_output_dir(target_profile: TargetProfile) -> str:
    return os.path.join(get_resource_dir(target_profile), "output")


def generate_test_outputs(target_profile: TargetProfile) -> None:
    input_files = get_input_files(target_profile)
    output_dir = get_output_dir(target_profile)
    os.makedirs(output_dir, exist_ok=True)

    for file_path in input_files:
        ll_file_path = get_output_ll_file(file_path, target_profile)
        out_file_path = get_output_out_file(file_path, target_profile)
        with open(file_path, "rt", encoding="utf-8") as f:
            source = f.read()
            qir = compile_qsharp(source, target_profile)
            with open(ll_file_path, "wt", encoding="utf-8") as f:
                f.write(qir)
            output = execute_qir(ll_file_path)
            with open(out_file_path, "wt", encoding="utf-8") as f:
                f.write(output)


def read_file(file_name: str, target_profile: TargetProfile) -> str:
    file_path = os.path.join(get_input_dir(target_profile), file_name)
    with open(file_path, "rt", encoding="utf-8") as file:
        source = file.read()
    return source


def save_qir_to_temp_file_and_execute(qir: str) -> str:

    import tempfile

    # create a temporary file to store the qir
    with tempfile.TemporaryDirectory() as tempdir:
        # Create a temporary file in the temporary directory
        with tempfile.NamedTemporaryFile(
            dir=tempdir, delete=True, suffix=".ll"
        ) as temp_file:
            # You can write to the file or read from it
            # encode the uf8 string to bytes
            temp_file.write(qir.encode())
            temp_file.flush()

            actual_output = execute_qir(temp_file.name)
            return actual_output


def assert_strings_equal_ignore_line_endings(lhs, rhs):
    normalized_lhs = lhs.replace("\r\n", "\n")
    normalized_rhs = rhs.replace("\r\n", "\n")
    assert normalized_lhs == normalized_rhs


def execute_qir(file_path: str) -> str:
    RNG_SEED = 42
    SHOTS = 1
    handler = OutputHandler()
    run(file_path, None, SHOTS, RNG_SEED, output_fn=handler.handle)
    return handler.get_output()


def get_interpreter(
    target_profile: TargetProfile = TargetProfile.Unrestricted,
    target_name: Optional[str] = None,
) -> Interpreter:
    if isinstance(target_name, str):
        target = target_name.split(".")[0].lower()
        if target == "ionq" or target == "rigetti":
            target_profile = TargetProfile.Base
        elif target == "quantinuum":
            target_profile = TargetProfile.Adaptive_RI
        else:
            raise QSharpError(
                f'target_name "{target_name}" not recognized. Please set target_profile directly.'
            )

    manifest_descriptor = None
    language_features = None
    from qsharp._fs import read_file, list_directory

    interpreter = Interpreter(
        target_profile,
        language_features,
        manifest_descriptor,
        read_file,
        list_directory,
    )
    return interpreter


def compile_qsharp(
    source: str,
    target_profile: TargetProfile = TargetProfile.Adaptive_RI,
    target_name: Optional[str] = None,
) -> str:
    interpreter = get_interpreter(target_profile, target_name)
    interpreter.interpret(source)
    qir = interpreter.qir("Test.Main()")
    return qir


def get_input_files(target_profile: TargetProfile) -> List[str]:
    resources_dir = get_input_dir(target_profile)
    input_files = [
        os.path.join(resources_dir, file_name)
        for file_name in os.listdir(resources_dir)
        if os.path.isfile(os.path.join(resources_dir, file_name))
    ]
    return input_files


def get_ouput_file_basename(file_path: str, target_profile: TargetProfile) -> str:
    file_name, _ext = os.path.splitext(file_path)
    output_dir = get_output_dir(target_profile)
    output_file = os.path.join(output_dir, os.path.basename(file_name))
    return output_file


def get_output_ll_file(file_path: str, target_profile: TargetProfile) -> str:
    output_file = get_ouput_file_basename(file_path, target_profile)
    return output_file + ".ll"


def get_output_out_file(file_path: str, target_profile: TargetProfile) -> str:
    output_file = get_ouput_file_basename(file_path, target_profile)
    return output_file + ".out"