pennylane-qrack 0.9.2__tar.gz → 0.9.4__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.

Files changed (29) hide show
  1. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/Makefile +5 -5
  2. {pennylane_qrack-0.9.2/pennylane_qrack.egg-info → pennylane_qrack-0.9.4}/PKG-INFO +1 -1
  3. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack/_version.py +1 -1
  4. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4/pennylane_qrack.egg-info}/PKG-INFO +1 -1
  5. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/CHANGELOG.md +0 -0
  6. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/CMakeLists.txt +0 -0
  7. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/LICENSE +0 -0
  8. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/MANIFEST.in +0 -0
  9. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/README.rst +0 -0
  10. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/catalyst/runtime/include/DataView.hpp +0 -0
  11. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/catalyst/runtime/include/Exception.hpp +0 -0
  12. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/catalyst/runtime/include/QuantumDevice.hpp +0 -0
  13. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/catalyst/runtime/include/RuntimeCAPI.h +0 -0
  14. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/catalyst/runtime/include/Types.h +0 -0
  15. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack/QrackDeviceConfig.toml +0 -0
  16. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack/__init__.py +0 -0
  17. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack/qrack_device.cpp +0 -0
  18. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack/qrack_device.py +0 -0
  19. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack.egg-info/SOURCES.txt +0 -0
  20. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack.egg-info/dependency_links.txt +0 -0
  21. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack.egg-info/entry_points.txt +0 -0
  22. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack.egg-info/requires.txt +0 -0
  23. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/pennylane_qrack.egg-info/top_level.txt +0 -0
  24. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/requirements.txt +0 -0
  25. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/setup.cfg +0 -0
  26. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/setup.py +0 -0
  27. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/tests/test_apply.py +0 -0
  28. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/tests/test_integration.py +0 -0
  29. {pennylane_qrack-0.9.2 → pennylane_qrack-0.9.4}/tests/test_units.py +0 -0
@@ -24,27 +24,27 @@ 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 fb6099ed87c9c2539a619d39d4fefb80a664accf; cd ..
27
+ git clone https://github.com/unitaryfund/qrack.git; cd qrack; git checkout 31ecfddd6667653c9ce65848aad478f089b9127c; cd ..
28
28
  endif
29
29
  mkdir -p qrack/build
30
30
  ifeq ($(UNAME_S),Linux)
31
31
  ifeq ($(UNAME_P),x86_64)
32
- cd qrack/build; cmake -DQBCAPPOW=7 -DCPP_STD=14 -DENABLE_RDRAND=OFF -DENABLE_DEVRAND=ON ..; make all; \
32
+ cd qrack/build; cmake -DENABLE_RDRAND=OFF -DENABLE_DEVRAND=ON ..; make all; \
33
33
  mkdir ../../_qrack_include; mkdir ../../_qrack_include/qrack; cp -r ../include/* ../../_qrack_include/qrack; cp -r include/* ../../_qrack_include/qrack; \
34
34
  cd ../../..
35
35
  else
36
- cd qrack/build; cmake -DQBCAPPOW=7 -DCPP_STD=14 -DENABLE_RDRAND=OFF -DENABLE_DEVRAND=ON -DENABLE_COMPLEX_X2=OFF -DENABLE_SSE3=OFF ..; make all; \
36
+ cd qrack/build; cmake -DENABLE_RDRAND=OFF -DENABLE_DEVRAND=ON -DENABLE_COMPLEX_X2=OFF -DENABLE_SSE3=OFF ..; make all; \
37
37
  mkdir ../../_qrack_include; mkdir ../../_qrack_include/qrack; cp -r ../include/* ../../_qrack_include/qrack; cp -r include/* ../../_qrack_include/qrack; \
38
38
  cd ../../..
39
39
  endif
40
40
  endif
41
41
  ifeq ($(UNAME_S),Darwin)
42
42
  ifeq ($(UNAME_P),x86_64)
43
- cd qrack/build; cmake -DQBCAPPOW=7 -DCPP_STD=14 ..; make all; \
43
+ cd qrack/build; cmake ..; make all; \
44
44
  mkdir ../../_qrack_include; mkdir ../../_qrack_include/qrack; cp -r ../include/* ../../_qrack_include/qrack; cp -r include/* ../../_qrack_include/qrack; \
45
45
  cd ../../..
46
46
  else
47
- cd qrack/build; cmake -DQBCAPPOW=7 -DCPP_STD=14 -DENABLE_RDRAND=OFF -DENABLE_COMPLEX_X2=OFF -DENABLE_SSE3=OFF -DENABLE_OPENCL=OFF ..; make all; \
47
+ cd qrack/build; cmake -DENABLE_RDRAND=OFF -DENABLE_COMPLEX_X2=OFF -DENABLE_SSE3=OFF -DENABLE_OPENCL=OFF ..; make all; \
48
48
  mkdir ../../_qrack_include; mkdir ../../_qrack_include/qrack; cp -r ../include/* ../../_qrack_include/qrack; cp -r include/* ../../_qrack_include/qrack; \
49
49
  cd ../../..
50
50
  endif
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pennylane-qrack
3
- Version: 0.9.2
3
+ Version: 0.9.4
4
4
  Summary: PennyLane plugin for Qrack.
5
5
  Home-page: http://github.com/vm6502q
6
6
  Maintainer: vm6502q
@@ -16,4 +16,4 @@
16
16
  Version number (major.minor.patch[-label])
17
17
  """
18
18
 
19
- __version__ = "0.9.2"
19
+ __version__ = "0.9.4"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pennylane-qrack
3
- Version: 0.9.2
3
+ Version: 0.9.4
4
4
  Summary: PennyLane plugin for Qrack.
5
5
  Home-page: http://github.com/vm6502q
6
6
  Maintainer: vm6502q
File without changes