SDK で回路を構築する - Amazon Braket

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

SDK で回路を構築する

このセクションでは、回路の定義、使用可能なゲートの表示、回路の拡張、および各デバイスがサポートするゲートの表示の例を示します。また、手動で を割り当てqubits、定義されたとおりに回路を実行するようにコンパイラに指示し、ノイズシミュレーターを使用してノイズの多い回路を構築する方法についても説明します。

また、特定の QPUs。詳細については、Amazon Braket での Pulse Control」を参照してください。

ゲートと回路

量子ゲートと回路は Braket Amazon Python SDK の braket.circuits クラスで定義されます。SDK から、Circuit() を呼び出して、新しい回路オブジェクトをインスタンス化できます。

例: 回路を定義する

この例では、標準単一量子ビットのハダマードゲートq0q1q2と 2 量子ビットの CNOT ゲートで構成される 4 つの qubits (ラベル付きq3) サンプル回路を定義します。次の例に示すように、 print関数を呼び出すことで、この回路を視覚化できます。

# import the circuit module from braket.circuits import Circuit # define circuit with 4 qubits my_circuit = Circuit().h(range(4)).cnot(control=0, target=2).cnot(control=1, target=3) print(my_circuit)
T : |0| 1 | q0 : -H-C--- | q1 : -H-|-C- | | q2 : -H-X-|- | q3 : -H---X- T : |0| 1 |

例: パラメータ化された回路を定義する

この例では、空きパラメータに依存するゲートを持つ回路を定義します。これらのパラメータの値を指定して新しい回路を作成するか、回路を送信するときに特定のデバイスで量子タスクとして実行できます。

from braket.circuits import Circuit, FreeParameter #define a FreeParameter to represent the angle of a gate alpha = FreeParameter("alpha") #define a circuit with three qubits my_circuit = Circuit().h(range(3)).cnot(control=0, target=2).rx(0, alpha).rx(1, alpha) print(my_circuit)

パラメータ化された回路からパラメータ化されていない回路を新しく作成するには、次のように単一の float (すべての空きパラメータが取る値) または各パラメータの値を指定するキーワード引数のいずれかを回路に指定します。

my_fixed_circuit = my_circuit(1.2) my_fixed_circuit = my_circuit(alpha=1.2)

my_circuit は変更されていないため、これを使用して固定パラメータ値で多くの新しい回路をインスタンス化できます。

例: 回路のゲートを変更する

次の例では、制御修飾子と電力修飾子を使用するゲートを持つ回路を定義します。これらの変更を使用して、制御されたゲートなどの新しいRyゲートを作成できます。

from braket.circuits import Circuit # Create a bell circuit with a controlled x gate my_circuit = Circuit().h(0).x(control=0, target=1) # Add a multi-controlled Ry gate of angle .13 my_circuit.ry(angle=.13, target=2, control=(0, 1)) # Add a 1/5 root of X gate my_circuit.x(0, power=1/5) print(my_circuit)

ゲート修飾子はローカルシミュレーターでのみサポートされています。

例: 使用可能なすべてのゲートを見る

次の例は、AmazonBraket で使用可能なすべてのゲートを確認する方法を示しています。

from braket.circuits import Gate # print all available gates in Amazon Braket gate_set = [attr for attr in dir(Gate) if attr[0].isupper()] print(gate_set)

このコードからの出力には、すべてのゲートが一覧表示されます。

['CCNot', 'CNot', 'CPhaseShift', 'CPhaseShift00', 'CPhaseShift01', 'CPhaseShift10', 'CSwap', 'CV', 'CY', 'CZ', 'ECR', 'GPi', 'GPi2', 'H', 'I', 'ISwap', 'MS', 'PSwap', 'PhaseShift', 'PulseGate', 'Rx', 'Ry', 'Rz', 'S', 'Si', 'Swap', 'T', 'Ti', 'Unitary', 'V', 'Vi', 'X', 'XX', 'XY', 'Y', 'YY', 'Z', 'ZZ']

これらのゲートは、そのタイプの回路のメソッドを呼び出して、回路に追加できます。例えば、 を呼び出してcirc.h(0)、最初の にハダマードゲートを追加しますqubit。

注記

ゲートが所定の位置に追加され、以下の例では、前の例に挙げたすべてのゲートを同じ回路に追加しています。

circ = Circuit() # toffoli gate with q0, q1 the control qubits and q2 the target. circ.ccnot(0, 1, 2) # cnot gate circ.cnot(0, 1) # controlled-phase gate that phases the |11> state, cphaseshift(phi) = diag((1,1,1,exp(1j*phi))), where phi=0.15 in the examples below circ.cphaseshift(0, 1, 0.15) # controlled-phase gate that phases the |00> state, cphaseshift00(phi) = diag([exp(1j*phi),1,1,1]) circ.cphaseshift00(0, 1, 0.15) # controlled-phase gate that phases the |01> state, cphaseshift01(phi) = diag([1,exp(1j*phi),1,1]) circ.cphaseshift01(0, 1, 0.15) # controlled-phase gate that phases the |10> state, cphaseshift10(phi) = diag([1,1,exp(1j*phi),1]) circ.cphaseshift10(0, 1, 0.15) # controlled swap gate circ.cswap(0, 1, 2) # swap gate circ.swap(0,1) # phaseshift(phi)= diag([1,exp(1j*phi)]) circ.phaseshift(0,0.15) # controlled Y gate circ.cy(0, 1) # controlled phase gate circ.cz(0, 1) # Echoed cross-resonance gate applied to q0, q1 circ = Circuit().ecr(0,1) # X rotation with angle 0.15 circ.rx(0, 0.15) # Y rotation with angle 0.15 circ.ry(0, 0.15) # Z rotation with angle 0.15 circ.rz(0, 0.15) # Hadamard gates applied to q0, q1, q2 circ.h(range(3)) # identity gates applied to q0, q1, q2 circ.i([0, 1, 2]) # iswap gate, iswap = [[1,0,0,0],[0,0,1j,0],[0,1j,0,0],[0,0,0,1]] circ.iswap(0, 1) # pswap gate, PSWAP(phi) = [[1,0,0,0],[0,0,exp(1j*phi),0],[0,exp(1j*phi),0,0],[0,0,0,1]] circ.pswap(0, 1, 0.15) # X gate applied to q1, q2 circ.x([1, 2]) # Y gate applied to q1, q2 circ.y([1, 2]) # Z gate applied to q1, q2 circ.z([1, 2]) # S gate applied to q0, q1, q2 circ.s([0, 1, 2]) # conjugate transpose of S gate applied to q0, q1 circ.si([0, 1]) # T gate applied to q0, q1 circ.t([0, 1]) # conjugate transpose of T gate applied to q0, q1 circ.ti([0, 1]) # square root of not gate applied to q0, q1, q2 circ.v([0, 1, 2]) # conjugate transpose of square root of not gate applied to q0, q1, q2 circ.vi([0, 1, 2]) # exp(-iXX theta/2) circ.xx(0, 1, 0.15) # exp(i(XX+YY) theta/4), where theta=0.15 in the examples below circ.xy(0, 1, 0.15) # exp(-iYY theta/2) circ.yy(0, 1, 0.15) # exp(-iZZ theta/2) circ.zz(0, 1, 0.15) # IonQ native gate GPi with angle 0.15 applied to q0 circ.gpi(0, 0.15) # IonQ native gate GPi2 with angle 0.15 applied to q0 circ.gpi2(0, 0.15) # IonQ native gate MS with angles 0.15, 0.15, 0.15 applied to q0, q1 circ.ms(0, 1, 0.15, 0.15, 0.15)

定義済みのゲートセットとは別に、自己定義のユニタリゲートを回路に適用することもできます。これらは、単一量子ビットゲート (次のソースコードを参照) でも、 targetsパラメータでqubits定義された に適用されるマルチ量子ビットゲートでもかまいません。

import numpy as np # apply a general unitary my_unitary = np.array([[0, 1],[1, 0]]) circ.unitary(matrix=my_unitary, targets=[0])

例: 既存の回路を拡張する

命令を追加することで、既存の回路を拡張できます。Instruction は、量子デバイスで実行する量子タスクを記述する量子ディレクティブです。 Instruction演算子には、 タイプのオブジェクトGateのみが含まれます。

# import the Gate and Instruction modules from braket.circuits import Gate, Instruction # add instructions directly. circ = Circuit([Instruction(Gate.H(), 4), Instruction(Gate.CNot(), [4, 5])]) # or with add_instruction/add functions instr = Instruction(Gate.CNot(), [0, 1]) circ.add_instruction(instr) circ.add(instr) # specify where the circuit is appended circ.add_instruction(instr, target=[3, 4]) circ.add_instruction(instr, target_mapping={0: 3, 1: 4}) # print the instructions print(circ.instructions) # if there are multiple instructions, you can print them in a for loop for instr in circ.instructions: print(instr) # instructions can be copied new_instr = instr.copy() # appoint the instruction to target new_instr = instr.copy(target=[5]) new_instr = instr.copy(target_mapping={0: 5})

例: 各デバイスがサポートするゲートの表示

シミュレーターは Braket SDK のすべてのゲートをサポートしますが、QPU デバイスは小さなサブセットをサポートします。デバイスのサポートされているゲートは、デバイスのプロパティで確認できます。IonQ デバイスの例を次に示します。

# import the device module from braket.aws import AwsDevice device = AwsDevice("arn:aws:braket:us-east-1::device/qpu/ionq/Harmony") # get device name device_name = device.name # show supportedQuantumOperations (supported gates for a device) device_operations = device.properties.dict()['action']['braket.ir.openqasm.program']['supportedOperations'] print('Quantum Gates supported by {}:\n {}'.format(device_name, device_operations))
Quantum Gates supported by the Harmony device: ['x', 'y', 'z', 'rx', 'ry', 'rz', 'h', 'cnot', 's', 'si', 't', 'ti', 'v', 'vi', 'xx', 'yy', 'zz', 'swap', 'i']

サポートされているゲートは、量子ハードウェアで実行する前に、ネイティブゲートにコンパイルする必要があります。回路を送信すると、AmazonBraket はこのコンパイルを自動的に実行します。

例: デバイスでサポートされているネイティブゲートの忠実度をプログラムで取得する

Braket コンソールのデバイスページで忠実度情報を表示できます。プログラムで同じ情報にアクセスすると役立つ場合があります。次のコードは、QPU の 2 つのqubitゲート間で 2 つのゲート忠実度を抽出する方法を示しています。

# import the device module from braket.aws import AwsDevice device = AwsDevice("arn:aws:braket:us-west-1::device/qpu/rigetti/Aspen-M-3") #specify the qubits a=10 b=113 print(f"Fidelity of the XY gate between qubits {a} and {b}: ", device.properties.provider.specs["2Q"][f"{a}-{b}"]["fXY"])

部分的な測定

前の例に従って、量子回路内のすべての量子ビットを測定しました。ただし、個々の量子ビットまたは量子ビットのサブセットを測定することは可能です。

例: 量子ビットのサブセットを測定する

この例では、回路の末尾にターゲット量子ビットを持つmeasure命令を追加して、部分的な測定を示します。

# Use the local state vector simulator device = LocalSimulator() # Define an example bell circuit and measure qubit 0 circuit = Circuit().h(0).cnot(0, 1).measure(0) # Run the circuit task = device.run(circuit, shots=10) # Get the results result = task.result() # Print the circuit and measured qubits print(circuit) print() print("Measured qubits: ", result.measured_qubits)

手動qubit割り当て

から量子コンピュータで量子回路を実行する場合Rigetti、オプションで手動qubit割り当てを使用して、アルゴリズムに使用される qubitsを制御できます。Amazon Braket コンソールAmazon Braket SDK は、選択した量子処理ユニット (QPU) デバイスの最新のキャリブレーションデータを検査するのに役立つため、実験qubitsに最適なものを選択できます。

手動qubit割り当てにより、回路をより正確に実行し、個々のqubitプロパティを調査できます。研究者や上級ユーザーは、最新のデバイスキャリブレーションデータに基づいて回路設計を最適化し、より正確な結果を得ることができます。

次の例は、qubits明示的に を割り当てる方法を示しています。

circ = Circuit().h(0).cnot(0, 7) # Indices of actual qubits in the QPU my_task = device.run(circ, s3_location, shots=100, disable_qubit_rewiring=True)

詳細については、「」の Amazon Braket の例 GitHub、またはより具体的には、このノートブック: QPU デバイスでの Qubit の割り当て」を参照してください。

注記

OQC コンパイラは の設定をサポートしていませんdisable_qubit_rewiring=True。このフラグを に設定すると、 というエラーTrueが発生しますAn error occurred (ValidationException) when calling the CreateQuantumTask operation: Device arn:aws:braket:eu-west-2::device/qpu/oqc/Lucy does not support disabled qubit rewiring

逐語的なコンパイル

Rigetti、、または Oxford Quantum Circuits (OQC) から量子コンピュータで量子回路を実行するとIonQ、コンパイラに回路を変更せずに定義されたとおりに実行するように指示できます。逐語的なコンパイルを使用して、回路全体を指定されたとおりに正確に保持するか (Rigetti、、および でサポートOQC)IonQ、その特定の部分のみを保持するか ( Rigettiでのみサポート) を指定できます。ハードウェアベンチマークまたはエラー軽減プロトコルのアルゴリズムを開発する場合、ハードウェアで実行しているゲートと回路レイアウトを正確に指定するオプションが必要です。逐語的なコンパイルでは、特定の最適化ステップをオフにすることでコンパイルプロセスを直接制御できるため、回路が設計どおりに動作します。

現在、逐語的なコンパイルは、Rigetti、、および Oxford Quantum Circuits (OQC) デバイスでサポートされておりIonQ、ネイティブゲートを使用する必要があります。逐語的なコンパイルを使用する場合は、デバイスのトポロジをチェックして、ゲートが接続時に呼び出されqubits、回路がハードウェアでサポートされているネイティブゲートを使用することを確認することをお勧めします。次の例は、デバイスでサポートされているネイティブゲートのリストにプログラムでアクセスする方法を示しています。

device.properties.paradigm.nativeGateSet

の場合Rigetti、逐語的なコンパイルで使用するdisableQubitRewiring=Trueには、 を設定してqubit再ワイヤリングをオフにする必要があります。コンパイルで逐語的なボックスを使用するときに disableQubitRewiring=Falseが設定されている場合、量子回路は検証に失敗し、実行されません。

回路に対して逐語的なコンパイルが有効で、それをサポートしていない QPU で実行すると、サポートされていないオペレーションによってタスクが失敗したことを示すエラーが生成されます。コンパイラー関数をネイティブにサポートする量子ハードウェアが増えるにつれて、この機能は拡張され、これらのデバイスを含めるようになります。逐語的なコンパイルをサポートするデバイスは、次のコードで照会されたときに、サポートされているオペレーションとしてそれを含めます。

from braket.aws import AwsDevice from braket.device_schema.device_action_properties import DeviceActionType device = AwsDevice("arn:aws:braket:us-west-1::device/qpu/rigetti/Aspen-M-3") device.properties.action[DeviceActionType.OPENQASM].supportedPragmas

逐語的なコンパイルを使用しても追加コストは発生しません。Braket QPU デバイス、ノートブックインスタンス、およびオンデマンドシミュレーターで実行された量子タスクについては、Amazon Braket の料金ページで指定されている現在の料金に基づいて、引き続き課金されます。詳細については、逐語的なコンパイルサンプルノートブックを参照してください。

注記

OpenQASM を使用して OQCおよび IonQデバイスの回路を書き込み、回路を物理量子ビットに直接マッピングする場合は、 #pragma braket verbatimdisableQubitRewiringフラグが OpenQASM によって完全に無視されるため、 を使用する必要があります。

ノイズシミュレーション

ローカルノイズシミュレーターをインスタンス化するには、次のようにバックエンドを変更できます。

device = LocalSimulator(backend="braket_dm")

ノイズの多い回路は、次の 2 つの方法で構築できます。

  1. ノイズの多い回路を下部から構築します。

  2. 既存のノイズのない回路を使用し、全体にノイズを挿入します。

次の例は、脱分極ノイズとカスタム Kraus チャンネルを持つ単純な回路を使用するアプローチを示しています。

# Bottom up approach # apply depolarizing noise to qubit 0 with probability of 0.1 circ = Circuit().x(0).x(1).depolarizing(0, probability=0.1) # create an arbitrary 2-qubit Kraus channel E0 = scipy.stats.unitary_group.rvs(4) * np.sqrt(0.8) E1 = scipy.stats.unitary_group.rvs(4) * np.sqrt(0.2) K = [E0, E1] # apply a two-qubit Kraus channel to qubits 0 and 2 circ = circ.kraus([0,2], K)
# Inject noise approach # define phase damping noise noise = Noise.PhaseDamping(gamma=0.1) # the noise channel is applied to all the X gates in the circuit circ = Circuit().x(0).y(1).cnot(0,2).x(1).z(2) circ_noise = circ.copy() circ_noise.apply_gate_noise(noise, target_gates = Gate.X)

回路の実行は、次の 2 つの例に示すように、以前と同じユーザーエクスペリエンスです。

例 1

task = device.run(circ, s3_location)

または

例 2

task = device.run(circ_noise, s3_location)

その他の例については、「Braket 入門ノイズシミュレーターの例」を参照してください。