microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.23.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

source/pip/qsharp/utils/_utils.py

49lines · modepreview

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

from .._qsharp import run
from typing import List
import math


def dump_operation(operation: str, num_qubits: int) -> List[List[complex]]:
    """
    Returns a square matrix of complex numbers representing the operation performed.

    :param operation: The operation to be performed, which must operate on a list of qubits.
    :param num_qubits: The number of qubits to be used.

    :returns: The matrix representing the operation.
    """
    code = f"""{{
        let op = {operation};
        use (targets, extra) = (Qubit[{num_qubits}], Qubit[{num_qubits}]);
            for i in 0..{num_qubits}-1 {{
                H(targets[i]);
                CNOT(targets[i], extra[i]);
            }}
            operation ApplyOp (op : (Qubit[] => Unit), targets : Qubit[]) : Unit {{ op(targets); }}
            ApplyOp(op, targets);
            Microsoft.Quantum.Diagnostics.DumpMachine();
            ResetAll(targets + extra);
    }}"""
    result = run(code, shots=1, save_events=True)[0]
    state = result["events"][-1].state_dump().get_dict()
    num_entries = pow(2, num_qubits)
    factor = math.sqrt(num_entries)
    ndigits = 6
    matrix = []
    for i in range(num_entries):
        matrix += [[]]
        for j in range(num_entries):
            entry = state.get(i * num_entries + j)
            if entry is None:
                matrix[i] += [complex(0, 0)]
            else:
                matrix[i] += [
                    complex(
                        round(factor * entry.real, ndigits),
                        round(factor * entry.imag, ndigits),
                    )
                ]
    return matrix