_gates_and_grads
qubit_approximant.core.circuit._gates_and_grads
Gates for our quantum circuit.
RX(angle)
Rotation around X axis.
Source code in qubit_approximant/core/circuit/_gates_and_grads.py
8 9 10 11 12 |
|
RY(angle)
Rotation around Y axis.
Source code in qubit_approximant/core/circuit/_gates_and_grads.py
15 16 17 |
|
RZ(angle)
Rotation around Z axis.
Source code in qubit_approximant/core/circuit/_gates_and_grads.py
20 21 22 23 24 |
|
grad_RX(angle)
Derivative of the rotation around X axis.
Source code in qubit_approximant/core/circuit/_gates_and_grads.py
27 28 29 30 31 |
|
grad_RY(angle)
Derivative of the rotation around Y axis.
Source code in qubit_approximant/core/circuit/_gates_and_grads.py
34 35 36 |
|
grad_RZ(angle)
Derivative of the rotation around Z axis.
Source code in qubit_approximant/core/circuit/_gates_and_grads.py
39 40 41 42 43 |
|