pennylane-qrack 0.10.9__py3-none-macosx_14_0_arm64.whl → 0.25.0__py3-none-macosx_14_0_arm64.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.
Potentially problematic release.
This version of pennylane-qrack might be problematic. Click here for more details.
- pennylane_qrack/QrackAceDeviceConfig.toml +108 -0
- pennylane_qrack/QrackDeviceConfig.toml +85 -123
- pennylane_qrack/QrackStabilizerDeviceConfig.toml +99 -0
- pennylane_qrack/_version.py +2 -2
- pennylane_qrack/qrack_ace_device.py +447 -0
- pennylane_qrack/qrack_device.cpp +66 -44
- pennylane_qrack/qrack_device.py +50 -17
- pennylane_qrack/qrack_stabilizer_device.py +313 -0
- {pennylane_qrack-0.10.9.dist-info → pennylane_qrack-0.25.0.dist-info}/METADATA +7 -3
- pennylane_qrack-0.25.0.dist-info/RECORD +15 -0
- {pennylane_qrack-0.10.9.dist-info → pennylane_qrack-0.25.0.dist-info}/WHEEL +1 -1
- pennylane_qrack-0.25.0.dist-info/entry_points.txt +4 -0
- pennylane_qrack/CMakeCache.txt +0 -394
- pennylane_qrack/Makefile +0 -230
- pennylane_qrack/cmake_install.cmake +0 -78
- pennylane_qrack/libqrack_device.dylib +0 -0
- pennylane_qrack-0.10.9.dist-info/RECORD +0 -15
- pennylane_qrack-0.10.9.dist-info/entry_points.txt +0 -2
- {pennylane_qrack-0.10.9.dist-info → pennylane_qrack-0.25.0.dist-info}/LICENSE +0 -0
- {pennylane_qrack-0.10.9.dist-info → pennylane_qrack-0.25.0.dist-info}/top_level.txt +0 -0
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
# Install script for directory: /Users/runner/work/pennylane-qrack/pennylane-qrack
|
|
2
|
-
|
|
3
|
-
# Set the install prefix
|
|
4
|
-
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
|
5
|
-
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
|
6
|
-
endif()
|
|
7
|
-
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
|
8
|
-
|
|
9
|
-
# Set the install configuration name.
|
|
10
|
-
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
|
11
|
-
if(BUILD_TYPE)
|
|
12
|
-
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
|
13
|
-
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
|
14
|
-
else()
|
|
15
|
-
set(CMAKE_INSTALL_CONFIG_NAME "")
|
|
16
|
-
endif()
|
|
17
|
-
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
|
18
|
-
endif()
|
|
19
|
-
|
|
20
|
-
# Set the component getting installed.
|
|
21
|
-
if(NOT CMAKE_INSTALL_COMPONENT)
|
|
22
|
-
if(COMPONENT)
|
|
23
|
-
message(STATUS "Install component: \"${COMPONENT}\"")
|
|
24
|
-
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
|
25
|
-
else()
|
|
26
|
-
set(CMAKE_INSTALL_COMPONENT)
|
|
27
|
-
endif()
|
|
28
|
-
endif()
|
|
29
|
-
|
|
30
|
-
# Is this installation the result of a crosscompile?
|
|
31
|
-
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
|
32
|
-
set(CMAKE_CROSSCOMPILING "FALSE")
|
|
33
|
-
endif()
|
|
34
|
-
|
|
35
|
-
# Set path to fallback-tool for dependency-resolution.
|
|
36
|
-
if(NOT DEFINED CMAKE_OBJDUMP)
|
|
37
|
-
set(CMAKE_OBJDUMP "/Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump")
|
|
38
|
-
endif()
|
|
39
|
-
|
|
40
|
-
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
|
41
|
-
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/pennylane_qrack" TYPE SHARED_LIBRARY FILES "/Users/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack/libqrack_device.dylib")
|
|
42
|
-
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.dylib" AND
|
|
43
|
-
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.dylib")
|
|
44
|
-
execute_process(COMMAND /usr/bin/install_name_tool
|
|
45
|
-
-delete_rpath "/Users/runner/work/pennylane-qrack/pennylane-qrack/catalyst/runtime/include"
|
|
46
|
-
-delete_rpath "/Users/runner/work/pennylane-qrack/pennylane-qrack/qrack/build"
|
|
47
|
-
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.dylib")
|
|
48
|
-
if(CMAKE_INSTALL_DO_STRIP)
|
|
49
|
-
execute_process(COMMAND "/Applications/Xcode_15.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip" -x "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.dylib")
|
|
50
|
-
endif()
|
|
51
|
-
endif()
|
|
52
|
-
endif()
|
|
53
|
-
|
|
54
|
-
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
|
55
|
-
endif()
|
|
56
|
-
|
|
57
|
-
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
|
58
|
-
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
|
59
|
-
if(CMAKE_INSTALL_LOCAL_ONLY)
|
|
60
|
-
file(WRITE "/Users/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack/install_local_manifest.txt"
|
|
61
|
-
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
|
62
|
-
endif()
|
|
63
|
-
if(CMAKE_INSTALL_COMPONENT)
|
|
64
|
-
if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
|
|
65
|
-
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
|
66
|
-
else()
|
|
67
|
-
string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
|
|
68
|
-
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
|
|
69
|
-
unset(CMAKE_INST_COMP_HASH)
|
|
70
|
-
endif()
|
|
71
|
-
else()
|
|
72
|
-
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
|
73
|
-
endif()
|
|
74
|
-
|
|
75
|
-
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
|
76
|
-
file(WRITE "/Users/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack/${CMAKE_INSTALL_MANIFEST}"
|
|
77
|
-
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
|
78
|
-
endif()
|
|
Binary file
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
pennylane_qrack/CMakeCache.txt,sha256=-0LkWAgNfQEvC-L3LRysJNItUoC0QgRFrX1Snv8L18M,15987
|
|
2
|
-
pennylane_qrack/Makefile,sha256=jASrk2mN10ROAVkuiKQiRyL0sQMlaSwIrqw4XInDf4w,7619
|
|
3
|
-
pennylane_qrack/QrackDeviceConfig.toml,sha256=t_IQVSFR-GJ3VuqpQqm4M5gA3TVL4-y0qPq-f0FJwac,6219
|
|
4
|
-
pennylane_qrack/__init__.py,sha256=_g4NKu07_pXqxvQaxjdAPe769S5tWwYjqyHi3z7YKHc,673
|
|
5
|
-
pennylane_qrack/_version.py,sha256=aLKnvSy0Ujb2ErrYpnLAL39y7F8MI5VKRXX39igLb-w,692
|
|
6
|
-
pennylane_qrack/cmake_install.cmake,sha256=UrxATjjDt508cIlyINC5lwQfPV32ni9Qi0kVJoU07Ys,3274
|
|
7
|
-
pennylane_qrack/libqrack_device.dylib,sha256=vmqTWqsZJDvS6es-vESe6RdlP_cHiFoj0VIxJqb2tYQ,3162776
|
|
8
|
-
pennylane_qrack/qrack_device.cpp,sha256=eRoowI7n9XV63aoZEaDjWmK1NC4JQ1GBeL2uggDttG0,36846
|
|
9
|
-
pennylane_qrack/qrack_device.py,sha256=JMMV6yiLg97qcEZjioLfTlqIW6Tq5vnVG6pTtT4MkDI,26943
|
|
10
|
-
pennylane_qrack-0.10.9.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
11
|
-
pennylane_qrack-0.10.9.dist-info/METADATA,sha256=rO7jceIfgWjK1M_gtvO1k5vckqiFeavCEsBxTpb6QRQ,5525
|
|
12
|
-
pennylane_qrack-0.10.9.dist-info/WHEEL,sha256=zYMm-gaIleC6TIi-PQtqSUha8D9rHzYerirI1COqjn8,105
|
|
13
|
-
pennylane_qrack-0.10.9.dist-info/entry_points.txt,sha256=V6f1sN6IZZZaEvxrI47A3K_kksp8fDUWjLWD0Met7Ww,79
|
|
14
|
-
pennylane_qrack-0.10.9.dist-info/top_level.txt,sha256=5NFMNHqCHtVLwNkLg66xz846uUJAlnOJ5VGa6ulW1ow,16
|
|
15
|
-
pennylane_qrack-0.10.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|