pennylane-qrack 0.10.20__tar.gz → 0.11.0__tar.gz
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.
Potentially problematic release.
This version of pennylane-qrack might be problematic. Click here for more details.
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/Makefile +1 -1
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/PKG-INFO +1 -1
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack/_version.py +1 -1
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack/qrack_device.py +2 -2
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack.egg-info/PKG-INFO +1 -1
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/CHANGELOG.md +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/CMakeLists.txt +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/LICENSE +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/MANIFEST.in +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/README.rst +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/catalyst/runtime/include/DataView.hpp +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/catalyst/runtime/include/DynamicLibraryLoader.hpp +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/catalyst/runtime/include/Exception.hpp +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/catalyst/runtime/include/QuantumDevice.hpp +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/catalyst/runtime/include/RuntimeCAPI.h +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/catalyst/runtime/include/Types.h +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack/QrackDeviceConfig.toml +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack/__init__.py +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack/qrack_device.cpp +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack.egg-info/SOURCES.txt +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack.egg-info/dependency_links.txt +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack.egg-info/entry_points.txt +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack.egg-info/requires.txt +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack.egg-info/top_level.txt +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/requirements.txt +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/setup.cfg +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/setup.py +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/tests/test_apply.py +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/tests/test_integration.py +0 -0
- {pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/tests/test_units.py +0 -0
|
@@ -24,7 +24,7 @@ help:
|
|
|
24
24
|
build-deps:
|
|
25
25
|
ifneq ($(OS),Windows_NT)
|
|
26
26
|
ifeq ($(QRACK_PRESENT),)
|
|
27
|
-
git clone https://github.com/unitaryfund/qrack.git; cd qrack; git checkout
|
|
27
|
+
git clone https://github.com/unitaryfund/qrack.git; cd qrack; git checkout 45f1a533b4140e204290f82951e2ea7c213ec9bc; cd ..
|
|
28
28
|
endif
|
|
29
29
|
mkdir -p qrack/build
|
|
30
30
|
ifeq ($(UNAME_S),Linux)
|
|
@@ -66,9 +66,9 @@ class QrackDevice(QubitDevice):
|
|
|
66
66
|
"PauliY": Pauli.PauliY,
|
|
67
67
|
"PauliZ": Pauli.PauliZ,
|
|
68
68
|
"Identity": Pauli.PauliI,
|
|
69
|
+
"Hadamard": None,
|
|
70
|
+
"Hermitian": None,
|
|
69
71
|
"Prod": None,
|
|
70
|
-
# "Hadamard": None,
|
|
71
|
-
# "Hermitian": None,
|
|
72
72
|
# "Sum": None,
|
|
73
73
|
# "SProd": None,
|
|
74
74
|
# "Exp": None,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/catalyst/runtime/include/DynamicLibraryLoader.hpp
RENAMED
|
File without changes
|
|
File without changes
|
{pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/catalyst/runtime/include/QuantumDevice.hpp
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{pennylane_qrack-0.10.20 → pennylane_qrack-0.11.0}/pennylane_qrack.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|