での回路の構築 SDK - Amazon Braket

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

での回路の構築 SDK

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

特定の を持つさまざまなゲートでは、 Braket のパルスレベルで作業することもできますQPUs。詳細については、Amazon Braket のパルスコントロール」を参照してください。

ゲートと回路

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

例: 回路を定義する

この例では、まず 4 つのサンプル回路を定義します。qubits (q0、、q2、および q1とラベル付けq3) は、標準のシングルクォービットのハダマードゲートと 2 クォービットCNOTゲートで構成されます。次の例に示すように、 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)

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

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

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

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)

定義済みのゲートセットとは別に、自己定義のユニタリゲートを回路に適用することもできます。これらは、シングルキュービットゲート (次のソースコードに示すように) または に適用されるマルチキュービットゲートです。qubits targets パラメータで定義されます。

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/Aria-1") # 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 Aria-1 device: ['x', 'y', 'z', 'rx', 'ry', 'rz', 'h', 'cnot', 's', 'si', 't', 'ti', 'v', 'vi', 'xx', 'yy', 'zz', 'swap']

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

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

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

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

部分的な測定

前の例では、量子回路内のすべての量子ビットを測定しました。ただし、個々の qubit または qubit のサブセットを測定できます。

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

この例では、回路の末尾にターゲット量子ビットを持つ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 を割り当てる「」を参照してください。

逐語的なコンパイル

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

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

device.properties.paradigm.nativeGateSet

[ Rigetti, qubit 逐語コンパイルで使用するdisableQubitRewiring=Trueには、 を設定して再配線をオフにする必要があります。コンパイルで逐語的なボックスを使用するときに 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/Ankaa-2") device.properties.action[DeviceActionType.OPENQASM].supportedPragmas

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

注記

OpenQASM を使用して の回路を記述している場合 IonQ デバイス、および回路を物理クビットに直接マッピングする場合は、 #pragma braket verbatim disableQubitRewiring フラグが Open によって完全に無視されるため、 を使用する必要がありますQASM。

ノイズシミュレーション

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

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 入門ノイズシミュレーターの例」を参照してください。