Python library with miscellaneous tools to be used in conjunction with the qonic framework
Project description
qonic-misc Python Library:
Python library with miscellaneous tools to be used in conjunction with the qonic framework
To install: pip3 install qonic_misc
Includes:
-
qonic_misc.RotationConversions
:-
operator_to_updated_state(operator, theta_init, phi_init)
Description:
- this function takes a quantum operator (corresponding to a qbit gate), and the initial qbit state defined by the angles theta and phi
- theta and phi define the state based on some point on the bloch sphere in spherical coordinates
- the statevector of the qbit is defined as [cos(theta/2), sin(theta/2) e^(i phi)]
- the function returns the state after being acted on by the gate (in terms of the new theta and phi values)
Parameters:
operator <type 'list'>
: linear, hermitian matrix representing the quantum operatortheta_init <type 'float'>
: initial value for the theta component of the quantum state (must be between 0.0 and pi/2)phi_init <type 'float'>
: initial value for the phi component of the quantum state (must be between 0.0 and pi/2)
Returns:
[theta_updated, phi_updated] <type 'list'>
: list storing the updated values for theta and phi after being operated on by 'operator'
Example:
>>> rc = qonic_misc.RotationConversions() >>> pauli_z = [[1, 0], [0, -1]] # pauli z gate >>> print(rc.operator_to_updated_state(pauli_z, 1, 1)) # operate on the initial state of ['theta': 1, 'phi': 1] [-1.0, 1.0]
-
operator_to_rotation(operator, print_optimization_loss=False, epochs=300, num_of_vectors=3)
Description:- this function takes a quantum operator (corresponding to a qbit gate)
- the function uses tensorflow to find the spacial rotations along the x, y, and z axes of the bloch sphere that corresponds to the operator acting on a qbit state state
Parameters:
operator <type 'list'>
: linear, hermitian matrix representing the quantum operatorprint_optimization_loss=False <type 'bool'>
: boolean value that determines if the function will print out the loss of the tf model as it optimizes to find the spacial rotationsepochs=300 <type: 'int'>
: number of epochs that the tf model will optimize fornum_of_vectors=3 <type 'int'>
: number of quantum statevectors that the tf model will optimize for (higher means more accurate but slower, lower means less accurate but faster)
Returns:
[RotX, RotY, RotZ] <type 'list'>
: list storing the spacial rotations along each axis corresponding to the passed operator
Example:
>>> rc = qonic_misc.RotationConversions() >>> pauli_z = [[1, 0], [0, -1]] # pauli z gate >>> print(rc.operator_to_rotation(pauli_z)) # solve for the spacial rotation of the pauli z gate [0.0, 0.0, 3.14159]
-
-
qonic_misc.OperatorChecker
: tool for evaluating operators-
check_hermitian(operator)
Description:
- this function takes a 2 by 2 operator matrix and checks to see if it is hermitian (equal to its transposed conjugate)
- this is useful because all qbit operators corresponding to quantum logic gates must be hermitian
Parameters:
operator <type 'list'>
: matrix representing the quantum operator
Returns:
hermitian <type 'bool'>
: boolean value storing if the passed matrix is hermitian
Example:
>>> oc = qonic_misc.OperatorChecker >>> pauli_z = [[1, 0], [0, -1]] # pauli z gate >>> print(oc.check_hermitian(pauli_z)) # check to see if the pauli z gate is hermitian True
-
check_unitary(operator)
Description:
- this function takes a 2 by 2 operator matrix and checks to see if it is unitary (produces the identity matrix when multiplied by its transposed conjugate)
- this is useful because all qbit operators corresponding to quantum logic gates must be unitary
Parameters:
operator <type 'list'>
: matrix representing the quantum operator
Returns:
unitary <type 'bool'>
: boolean value storing if the passed matrix is unitary
Example:
>>> oc = qonic_misc.OperatorChecker >>> pauli_z = [[1, 0], [0, -1]] # pauli z gate >>> print(oc.check_unitary(pauli_z) # check to see if the pauli z gate is unitary True
-
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file qonic_misc-0.1.6.tar.gz
.
File metadata
- Download URL: qonic_misc-0.1.6.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.6 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d78de28b9b68f661e6a7bf4d5c825bfdacefa2292fb98c2b7f7cf5925a9c13b |
|
MD5 | a4eef9801a5487e2d516a88e8dac7c27 |
|
BLAKE2b-256 | 905876baf8799e2a95c878ea638122a5dd1c143c74555d74e834717314f2d0f6 |
File details
Details for the file qonic_misc-0.1.6-py2.py3-none-any.whl
.
File metadata
- Download URL: qonic_misc-0.1.6-py2.py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.6 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a009b3b52d17febd2ba3d37dc48f3210b2e7e31a7cf0fddb79354e78d1366694 |
|
MD5 | a9e518e6d3bcb559d0d7cd769017ef02 |
|
BLAKE2b-256 | 8f5af3661161eb72bf64d6f940eef3de291b54c95756669e0c8fc0eb5e815629 |