pyqrack-cuda 1.27.0__py3-none-manylinux_2_35_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyqrack/__init__.py +13 -0
- pyqrack/neuron_activation_fn.py +21 -0
- pyqrack/pauli.py +19 -0
- pyqrack/qrack_circuit.py +472 -0
- pyqrack/qrack_cl_precompile/Linux/2_35/qrack_cl_precompile +0 -0
- pyqrack/qrack_neuron.py +246 -0
- pyqrack/qrack_simulator.py +3530 -0
- pyqrack/qrack_system/__init__.py +9 -0
- pyqrack/qrack_system/qrack_lib/Linux/2_35/libqrack.a +0 -0
- pyqrack/qrack_system/qrack_lib/Linux/2_35/libqrack_pinvoke.so +0 -0
- pyqrack/qrack_system/qrack_lib/Linux/2_35/libqrack_pinvoke.so.9.6.0 +0 -0
- pyqrack/qrack_system/qrack_system.py +1063 -0
- pyqrack/quimb_circuit_type.py +17 -0
- pyqrack/util/__init__.py +8 -0
- pyqrack/util/convert_qiskit_circuit_to_qasm_experiment.py +61 -0
- pyqrack_cuda-1.27.0.dist-info/LICENSE +21 -0
- pyqrack_cuda-1.27.0.dist-info/METADATA +62 -0
- pyqrack_cuda-1.27.0.dist-info/RECORD +20 -0
- pyqrack_cuda-1.27.0.dist-info/WHEEL +5 -0
- pyqrack_cuda-1.27.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
# (C) Daniel Strano and the Qrack contributors 2017-2021. All rights reserved.
|
2
|
+
#
|
3
|
+
# Use of this source code is governed by an MIT-style license that can be
|
4
|
+
# found in the LICENSE file or at https://opensource.org/licenses/MIT.
|
5
|
+
|
6
|
+
from .qrack_system import QrackSystem
|
7
|
+
|
8
|
+
# Global entry-point for Qrack shared library
|
9
|
+
Qrack = QrackSystem()
|
Binary file
|
Binary file
|
Binary file
|