pennylane-qrack 0.22.7__py3-none-manylinux_2_39_x86_64.whl → 0.26.0__py3-none-manylinux_2_39_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.
@@ -16,4 +16,4 @@
16
16
  Version number (major.minor.patch[-label])
17
17
  """
18
18
 
19
- __version__ = "0.22.7"
19
+ __version__ = "0.26.0"
Binary file
@@ -114,20 +114,20 @@ class QrackAceDevice(QubitDevice):
114
114
  )
115
115
 
116
116
  # Use "hybrid" stabilizer optimization? (Default is "true"; non-Clifford circuits will fall back to near-Clifford or universal simulation)
117
- isStabilizerHybrid = False
118
- # Use "tensor network" optimization? (Default is "false"; prevents dynamic qubit de-allocation; might function sub-optimally with "hybrid" stabilizer enabled)
119
- isTensorNetwork = False
117
+ isStabilizerHybrid = True
118
+ # Use "tensor network" optimization? (Default is "true"; prevents dynamic qubit de-allocation; might function sub-optimally with "hybrid" stabilizer enabled)
119
+ isTensorNetwork = True
120
120
  # Use Schmidt decomposition optimizations? (Default is "true")
121
121
  isSchmidtDecompose = True
122
- # Distribute Schmidt-decomposed qubit subsystems to multiple GPUs or accelerators, if available? (Default is "true"; mismatched device capacities might hurt overall performance)
123
- isSchmidtDecomposeMulti = True
122
+ # Distribute Schmidt-decomposed qubit subsystems to multiple GPUs or accelerators, if available? (Default is "false"; mismatched device capacities might hurt overall performance)
123
+ isSchmidtDecomposeMulti = False
124
124
  # Use "quantum binary decision diagram" ("QBDD") methods? (Default is "false"; note that QBDD is CPU-only)
125
125
  isBinaryDecisionTree = False
126
126
  # Use GPU acceleration? (Default is "true")
127
127
  isOpenCL = True
128
- # Use multi-GPU (or "multi-page") acceleration? (Default is "false")
128
+ # Use multi-GPU (or "multi-page") acceleration? (Default is "true")
129
129
  isPaged = True
130
- # Use CPU/GPU method hybridization? (Default is "false")
130
+ # Use CPU/GPU method hybridization? (Default is "true")
131
131
  isCpuGpuHybrid = True
132
132
  # Allocate GPU buffer from general host heap? (Default is "false"; "true" might improve performance or reliability in certain cases, like if using an Intel HD as accelerator)
133
133
  isHostPointer = True if os.environ.get("PYQRACK_HOST_POINTER_DEFAULT_ON") else False
@@ -6,7 +6,7 @@
6
6
  #define CL_HPP_TARGET_OPENCL_VERSION 300
7
7
  #include "qrack/qfactory.hpp"
8
8
 
9
- #define QSIM_CONFIG(numQubits) Qrack::CreateArrangedLayersFull(nw, md, sd, sh, bdt, pg, tn, hy, oc, numQubits, Qrack::ZERO_BCI, nullptr, Qrack::CMPLX_DEFAULT_ARG, false, true, hp)
9
+ #define QSIM_CONFIG(numQubits) Qrack::CreateArrangedLayersFull(nw, md, sd, sh, bdt, pg, tn, hy, oc, numQubits, Qrack::ZERO_BCI, nullptr, Qrack::CMPLX_DEFAULT_ARG, false, true, hp, sp)
10
10
 
11
11
  std::string trim(std::string s)
12
12
  {
@@ -41,6 +41,7 @@ struct QrackDevice final : public Catalyst::Runtime::QuantumDevice {
41
41
  bool pg;
42
42
  bool hy;
43
43
  bool hp;
44
+ bool sp;
44
45
  bool nw;
45
46
  size_t shots;
46
47
  Qrack::real1_f noise_param;
@@ -385,12 +386,13 @@ struct QrackDevice final : public Catalyst::Runtime::QuantumDevice {
385
386
  , sh(true)
386
387
  , tn(true)
387
388
  , sd(true)
388
- , md(true)
389
+ , md(false)
389
390
  , bdt(false)
390
391
  , oc(true)
391
- , pg(false)
392
- , hy(false)
392
+ , pg(true)
393
+ , hy(true)
393
394
  , hp(false)
395
+ , sp(false)
394
396
  , nw(false)
395
397
  , shots(1U)
396
398
  , noise_param(ZERO_R1_F)
@@ -412,7 +414,8 @@ struct QrackDevice final : public Catalyst::Runtime::QuantumDevice {
412
414
  keyMap["'is_paged'"] = 7;
413
415
  keyMap["'is_hybrid_cpu_gpu'"] = 8;
414
416
  keyMap["'is_host_pointer'"] =9;
415
- keyMap["'noise'"] = 10;
417
+ keyMap["'is_sparse'"] =10;
418
+ keyMap["'noise'"] = 11;
416
419
 
417
420
  size_t pos;
418
421
  while ((pos = kwargs.find(":")) != std::string::npos) {
@@ -451,6 +454,9 @@ struct QrackDevice final : public Catalyst::Runtime::QuantumDevice {
451
454
  hp = val;
452
455
  break;
453
456
  case 10:
457
+ sp = val;
458
+ break;
459
+ case 11:
454
460
  noise_param = std::stof(value);
455
461
  nw = noise_param > ZERO_R1;
456
462
  break;
@@ -553,12 +559,15 @@ struct QrackDevice final : public Catalyst::Runtime::QuantumDevice {
553
559
  // Deallocate
554
560
  qsim->Dispose(id, 1U);
555
561
  }
556
- void ReleaseAllQubits() override
562
+ void ReleaseQubits(const std::vector<QubitIdType> &qubits) override
557
563
  {
558
- // State vector is left empty
559
- qsim = QSIM_CONFIG(0U);
560
- if (noise_param > ZERO_R1) {
561
- qsim->SetNoiseParameter(noise_param);
564
+ if (qubits.size() == qsim->GetQubitCount()) {
565
+ qsim = QSIM_CONFIG(0U);
566
+ return;
567
+ }
568
+
569
+ for (const QubitIdType& q : qubits) {
570
+ ReleaseQubit(q);
562
571
  }
563
572
  }
564
573
  [[nodiscard]] auto GetNumQubits() const -> size_t override
@@ -151,23 +151,25 @@ class QrackDevice(QubitDevice):
151
151
  )
152
152
 
153
153
  # Use "hybrid" stabilizer optimization? (Default is "true"; non-Clifford circuits will fall back to near-Clifford or universal simulation)
154
- isStabilizerHybrid = False
154
+ isStabilizerHybrid = True
155
155
  # Use "tensor network" optimization? (Default is "true"; prevents dynamic qubit de-allocation; might function sub-optimally with "hybrid" stabilizer enabled)
156
156
  isTensorNetwork = True
157
157
  # Use Schmidt decomposition optimizations? (Default is "true")
158
158
  isSchmidtDecompose = True
159
- # Distribute Schmidt-decomposed qubit subsystems to multiple GPUs or accelerators, if available? (Default is "true"; mismatched device capacities might hurt overall performance)
160
- isSchmidtDecomposeMulti = True
159
+ # Distribute Schmidt-decomposed qubit subsystems to multiple GPUs or accelerators, if available? (Default is "False"; mismatched device capacities might hurt overall performance)
160
+ isSchmidtDecomposeMulti = False
161
161
  # Use "quantum binary decision diagram" ("QBDD") methods? (Default is "false"; note that QBDD is CPU-only)
162
162
  isBinaryDecisionTree = False
163
163
  # Use GPU acceleration? (Default is "true")
164
164
  isOpenCL = True
165
- # Use multi-GPU (or "multi-page") acceleration? (Default is "false")
165
+ # Use multi-GPU (or "multi-page") acceleration? (Default is "true")
166
166
  isPaged = True
167
- # Use CPU/GPU method hybridization? (Default is "false")
167
+ # Use CPU/GPU method hybridization? (Default is "True")
168
168
  isCpuGpuHybrid = True
169
169
  # Allocate GPU buffer from general host heap? (Default is "false"; "true" might improve performance or reliability in certain cases, like if using an Intel HD as accelerator)
170
170
  isHostPointer = True if os.environ.get("PYQRACK_HOST_POINTER_DEFAULT_ON") else False
171
+ # For CPU-based simulation, use sparse state vectors (Default is "false")
172
+ isSparse = False
171
173
  # Noise parameter. (Default is "0"; depolarizing noise intensity can also be controlled by "QRACK_GATE_DEPOLARIZATION" environment variable)
172
174
  noise = 0
173
175
 
@@ -201,6 +203,8 @@ class QrackDevice(QubitDevice):
201
203
  self.isCpuGpuHybrid = options["isCpuGpuHybrid"]
202
204
  if "isHostPointer" in options:
203
205
  self.isHostPointer = options["isHostPointer"]
206
+ if "isSparse" in options:
207
+ self.isSparse = options["isSparse"]
204
208
  if "noise" in options:
205
209
  self.noise = options["noise"]
206
210
  if (self.noise != 0) and (shots is None):
@@ -216,6 +220,7 @@ class QrackDevice(QubitDevice):
216
220
  isOpenCL=self.isOpenCL,
217
221
  isCpuGpuHybrid=self.isCpuGpuHybrid,
218
222
  isHostPointer=self.isHostPointer,
223
+ isSparse=self.isSparse,
219
224
  noise=self.noise,
220
225
  )
221
226
  self.device_kwargs = {
@@ -228,6 +233,7 @@ class QrackDevice(QubitDevice):
228
233
  "is_paged": self.isPaged,
229
234
  "is_hybrid_cpu_gpu": self.isCpuGpuHybrid,
230
235
  "is_host_pointer": self.isHostPointer,
236
+ "is_sparse": self.isSparse,
231
237
  "noise": self.noise,
232
238
  }
233
239
  self._circuit = []
@@ -244,7 +244,24 @@ class QrackStabilizerDevice(QubitDevice):
244
244
  b = [self._observable_map[observable.name]]
245
245
 
246
246
  if None not in b:
247
+ # This will trigger Gaussian elimination,
248
+ # so it only happens once.
249
+ self._state.try_separate_1qb(0)
250
+ # It's cheap to clone a stabilizer,
251
+ # but we don't want to have to transform
252
+ # back after terminal measurement.
253
+ state_clone = self._state.clone()
254
+
247
255
  q = self.map_wires(observable.wires)
256
+ for qb, base in zip(q, b):
257
+ match base:
258
+ case Pauli.PauliX:
259
+ state_clone.h(qb)
260
+ case Pauli.PauliY:
261
+ state_clone.adjs(qb)
262
+ state_clone.h(qb)
263
+ b = [Pauli.PauliZ] * len(b)
264
+
248
265
  return self._state.pauli_expectation(q, b)
249
266
 
250
267
  # exact expectation value
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pennylane-qrack
3
- Version: 0.22.7
3
+ Version: 0.26.0
4
4
  Summary: PennyLane plugin for Qrack.
5
5
  Home-page: http://github.com/vm6502q
6
6
  Maintainer: vm6502q
@@ -22,7 +22,7 @@ Classifier: Programming Language :: Python :: 3.10
22
22
  Classifier: Programming Language :: Python :: 3.11
23
23
  Classifier: Programming Language :: Python :: 3.12
24
24
  Classifier: Programming Language :: Python :: 3 :: Only
25
- Classifier: Topic :: Scientific/Engineering :: Physics
25
+ Classifier: Topic :: Scientific/Engineering :: Quantum Computing
26
26
  Provides: pennylane_qrack
27
27
  Description-Content-Type: text/x-rst
28
28
  License-File: LICENSE
@@ -0,0 +1,16 @@
1
+ pennylane_qrack/QrackAceDeviceConfig.toml,sha256=KmPPJEa6TMYpbQqQgMSAPfeGPQE8f1lriteyfGW8WeA,4517
2
+ pennylane_qrack/QrackDeviceConfig.toml,sha256=oR9-dIAP6BzP3e2QSLroacaloHZsx7iJiKE6w7LGxUo,5459
3
+ pennylane_qrack/QrackStabilizerDeviceConfig.toml,sha256=zm2M2FBR--RnKkNCtZih7xxtr-Vl6MtI4g1L3SrjFWw,3965
4
+ pennylane_qrack/__init__.py,sha256=_g4NKu07_pXqxvQaxjdAPe769S5tWwYjqyHi3z7YKHc,673
5
+ pennylane_qrack/_version.py,sha256=XR2XCaH97goVz9G7M78kyrkz7u8KxVRg9Ci_mHmkH10,689
6
+ pennylane_qrack/libqrack_device.so,sha256=m7YC-W2R54g-yt4VeFjT8valQLbZhJ6exnBmANcmXkg,5883840
7
+ pennylane_qrack/qrack_ace_device.py,sha256=ILJFd-NxhtrhYBmNVb2St0ffJUd7N2y7m_M7hMuzP9c,17090
8
+ pennylane_qrack/qrack_device.cpp,sha256=RAr5127mBX7btpiOdwbNvNpL_X7k0_vl0_OZdAZ2tZ0,37421
9
+ pennylane_qrack/qrack_device.py,sha256=TzZXizrd4g2MC0CizrJu5PQSfBq33np0DkkUuA2YdRc,28614
10
+ pennylane_qrack/qrack_stabilizer_device.py,sha256=1LuIczUAvq-vI0lZiWohn771-n_owtjM7wVc-MQv1NQ,10665
11
+ pennylane_qrack-0.26.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
12
+ pennylane_qrack-0.26.0.dist-info/METADATA,sha256=g8iQK7XBb6a2DajldbBH3ShU2n6mWz3QDmAQW_Gihc4,6191
13
+ pennylane_qrack-0.26.0.dist-info/WHEEL,sha256=XPIzMCcxD0gBPkhWR01qy2ovnE2mdCMB6y7sRIt_QbY,110
14
+ pennylane_qrack-0.26.0.dist-info/entry_points.txt,sha256=5eoa4LFV7DuSLFbs6tzFvuVIHr6zOovxqlDsn2cinP4,220
15
+ pennylane_qrack-0.26.0.dist-info/top_level.txt,sha256=5NFMNHqCHtVLwNkLg66xz846uUJAlnOJ5VGa6ulW1ow,16
16
+ pennylane_qrack-0.26.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-manylinux_2_39_x86_64
5
5
 
@@ -1,402 +0,0 @@
1
- # This is the CMakeCache file.
2
- # For build in directory: /home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack
3
- # It was generated by CMake: /usr/local/bin/cmake
4
- # You can edit this file to change values found and used by cmake.
5
- # If you do not want to change any of the values, simply exit the editor.
6
- # If you do want to change a value, simply edit, save, and exit the editor.
7
- # The syntax for the file is as follows:
8
- # KEY:TYPE=VALUE
9
- # KEY is the name of a variable in the cache.
10
- # TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
11
- # VALUE is the current value for the KEY.
12
-
13
- ########################
14
- # EXTERNAL cache entries
15
- ########################
16
-
17
- //Path to a program.
18
- CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
19
-
20
- //Path to a program.
21
- CMAKE_AR:FILEPATH=/usr/bin/ar
22
-
23
- //Choose the type of build, options are: None Debug Release RelWithDebInfo
24
- // MinSizeRel ...
25
- CMAKE_BUILD_TYPE:STRING=
26
-
27
- //Enable/Disable color output during build.
28
- CMAKE_COLOR_MAKEFILE:BOOL=ON
29
-
30
- //CXX compiler
31
- CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
32
-
33
- //A wrapper around 'ar' adding the appropriate '--plugin' option
34
- // for the GCC compiler
35
- CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13
36
-
37
- //A wrapper around 'ranlib' adding the appropriate '--plugin' option
38
- // for the GCC compiler
39
- CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13
40
-
41
- //Flags used by the CXX compiler during all build types.
42
- CMAKE_CXX_FLAGS:STRING=
43
-
44
- //Flags used by the CXX compiler during DEBUG builds.
45
- CMAKE_CXX_FLAGS_DEBUG:STRING=-g
46
-
47
- //Flags used by the CXX compiler during MINSIZEREL builds.
48
- CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
49
-
50
- //Flags used by the CXX compiler during RELEASE builds.
51
- CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
52
-
53
- //Flags used by the CXX compiler during RELWITHDEBINFO builds.
54
- CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
55
-
56
- //C compiler
57
- CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
58
-
59
- //A wrapper around 'ar' adding the appropriate '--plugin' option
60
- // for the GCC compiler
61
- CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-13
62
-
63
- //A wrapper around 'ranlib' adding the appropriate '--plugin' option
64
- // for the GCC compiler
65
- CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-13
66
-
67
- //Flags used by the C compiler during all build types.
68
- CMAKE_C_FLAGS:STRING=
69
-
70
- //Flags used by the C compiler during DEBUG builds.
71
- CMAKE_C_FLAGS_DEBUG:STRING=-g
72
-
73
- //Flags used by the C compiler during MINSIZEREL builds.
74
- CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
75
-
76
- //Flags used by the C compiler during RELEASE builds.
77
- CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
78
-
79
- //Flags used by the C compiler during RELWITHDEBINFO builds.
80
- CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
81
-
82
- //Path to a program.
83
- CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
84
-
85
- //Flags used by the linker during all build types.
86
- CMAKE_EXE_LINKER_FLAGS:STRING=
87
-
88
- //Flags used by the linker during DEBUG builds.
89
- CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
90
-
91
- //Flags used by the linker during MINSIZEREL builds.
92
- CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
93
-
94
- //Flags used by the linker during RELEASE builds.
95
- CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
96
-
97
- //Flags used by the linker during RELWITHDEBINFO builds.
98
- CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
99
-
100
- //Enable/Disable output of compile commands during generation.
101
- CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
102
-
103
- //Value Computed by CMake.
104
- CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack/CMakeFiles/pkgRedirects
105
-
106
- //Install path prefix, prepended onto install directories.
107
- CMAKE_INSTALL_PREFIX:PATH=/usr/local
108
-
109
- //Path to a program.
110
- CMAKE_LINKER:FILEPATH=/usr/bin/ld
111
-
112
- //Path to a program.
113
- CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
114
-
115
- //Flags used by the linker during the creation of modules during
116
- // all build types.
117
- CMAKE_MODULE_LINKER_FLAGS:STRING=
118
-
119
- //Flags used by the linker during the creation of modules during
120
- // DEBUG builds.
121
- CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
122
-
123
- //Flags used by the linker during the creation of modules during
124
- // MINSIZEREL builds.
125
- CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
126
-
127
- //Flags used by the linker during the creation of modules during
128
- // RELEASE builds.
129
- CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
130
-
131
- //Flags used by the linker during the creation of modules during
132
- // RELWITHDEBINFO builds.
133
- CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
134
-
135
- //Path to a program.
136
- CMAKE_NM:FILEPATH=/usr/bin/nm
137
-
138
- //Path to a program.
139
- CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
140
-
141
- //Path to a program.
142
- CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
143
-
144
- //Value Computed by CMake
145
- CMAKE_PROJECT_DESCRIPTION:STATIC=
146
-
147
- //Value Computed by CMake
148
- CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
149
-
150
- //Value Computed by CMake
151
- CMAKE_PROJECT_NAME:STATIC=qrack_device
152
-
153
- //Path to a program.
154
- CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
155
-
156
- //Path to a program.
157
- CMAKE_READELF:FILEPATH=/usr/bin/readelf
158
-
159
- //Flags used by the linker during the creation of shared libraries
160
- // during all build types.
161
- CMAKE_SHARED_LINKER_FLAGS:STRING=
162
-
163
- //Flags used by the linker during the creation of shared libraries
164
- // during DEBUG builds.
165
- CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
166
-
167
- //Flags used by the linker during the creation of shared libraries
168
- // during MINSIZEREL builds.
169
- CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
170
-
171
- //Flags used by the linker during the creation of shared libraries
172
- // during RELEASE builds.
173
- CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
174
-
175
- //Flags used by the linker during the creation of shared libraries
176
- // during RELWITHDEBINFO builds.
177
- CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
178
-
179
- //If set, runtime paths are not added when installing shared libraries,
180
- // but are added when building.
181
- CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
182
-
183
- //If set, runtime paths are not added when using shared libraries.
184
- CMAKE_SKIP_RPATH:BOOL=NO
185
-
186
- //Flags used by the linker during the creation of static libraries
187
- // during all build types.
188
- CMAKE_STATIC_LINKER_FLAGS:STRING=
189
-
190
- //Flags used by the linker during the creation of static libraries
191
- // during DEBUG builds.
192
- CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
193
-
194
- //Flags used by the linker during the creation of static libraries
195
- // during MINSIZEREL builds.
196
- CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
197
-
198
- //Flags used by the linker during the creation of static libraries
199
- // during RELEASE builds.
200
- CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
201
-
202
- //Flags used by the linker during the creation of static libraries
203
- // during RELWITHDEBINFO builds.
204
- CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
205
-
206
- //Path to a program.
207
- CMAKE_STRIP:FILEPATH=/usr/bin/strip
208
-
209
- //Path to a program.
210
- CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
211
-
212
- //If this value is on, makefiles will be generated without the
213
- // .SILENT directive, and all commands will be echoed to the console
214
- // during the make. This is useful for debugging only. With Visual
215
- // Studio IDE projects all commands are done without /nologo.
216
- CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
217
-
218
- //Use OpenCL optimizations
219
- ENABLE_OPENCL:BOOL=ON
220
-
221
- //Path to a file.
222
- OpenCL_INCLUDE_DIR:PATH=/usr/include
223
-
224
- //Path to a library.
225
- OpenCL_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libOpenCL.so
226
-
227
- //Value Computed by CMake
228
- qrack_device_BINARY_DIR:STATIC=/home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack
229
-
230
- //Value Computed by CMake
231
- qrack_device_IS_TOP_LEVEL:STATIC=ON
232
-
233
- //Value Computed by CMake
234
- qrack_device_SOURCE_DIR:STATIC=/home/runner/work/pennylane-qrack/pennylane-qrack
235
-
236
-
237
- ########################
238
- # INTERNAL cache entries
239
- ########################
240
-
241
- //ADVANCED property for variable: CMAKE_ADDR2LINE
242
- CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
243
- //ADVANCED property for variable: CMAKE_AR
244
- CMAKE_AR-ADVANCED:INTERNAL=1
245
- //This is the directory where this CMakeCache.txt was created
246
- CMAKE_CACHEFILE_DIR:INTERNAL=/home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack
247
- //Major version of cmake used to create the current loaded cache
248
- CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
249
- //Minor version of cmake used to create the current loaded cache
250
- CMAKE_CACHE_MINOR_VERSION:INTERNAL=31
251
- //Patch version of cmake used to create the current loaded cache
252
- CMAKE_CACHE_PATCH_VERSION:INTERNAL=6
253
- //ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
254
- CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
255
- //Path to CMake executable.
256
- CMAKE_COMMAND:INTERNAL=/usr/local/bin/cmake
257
- //Path to cpack program executable.
258
- CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/bin/cpack
259
- //Path to ctest program executable.
260
- CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/bin/ctest
261
- //ADVANCED property for variable: CMAKE_CXX_COMPILER
262
- CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
263
- //ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
264
- CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
265
- //ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
266
- CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
267
- //ADVANCED property for variable: CMAKE_CXX_FLAGS
268
- CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
269
- //ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
270
- CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
271
- //ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
272
- CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
273
- //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
274
- CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
275
- //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
276
- CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
277
- //ADVANCED property for variable: CMAKE_C_COMPILER
278
- CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
279
- //ADVANCED property for variable: CMAKE_C_COMPILER_AR
280
- CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
281
- //ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
282
- CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
283
- //ADVANCED property for variable: CMAKE_C_FLAGS
284
- CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
285
- //ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
286
- CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
287
- //ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
288
- CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
289
- //ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
290
- CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
291
- //ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
292
- CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
293
- //ADVANCED property for variable: CMAKE_DLLTOOL
294
- CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
295
- //Path to cache edit program executable.
296
- CMAKE_EDIT_COMMAND:INTERNAL=/usr/local/bin/ccmake
297
- //Executable file format
298
- CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
299
- //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
300
- CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
301
- //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
302
- CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
303
- //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
304
- CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
305
- //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
306
- CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
307
- //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
308
- CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
309
- //ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
310
- CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
311
- //Name of external makefile project generator.
312
- CMAKE_EXTRA_GENERATOR:INTERNAL=
313
- //Name of generator.
314
- CMAKE_GENERATOR:INTERNAL=Unix Makefiles
315
- //Generator instance identifier.
316
- CMAKE_GENERATOR_INSTANCE:INTERNAL=
317
- //Name of generator platform.
318
- CMAKE_GENERATOR_PLATFORM:INTERNAL=
319
- //Name of generator toolset.
320
- CMAKE_GENERATOR_TOOLSET:INTERNAL=
321
- //Source directory with the top level CMakeLists.txt file for this
322
- // project
323
- CMAKE_HOME_DIRECTORY:INTERNAL=/home/runner/work/pennylane-qrack/pennylane-qrack
324
- //Install .so files without execute permission.
325
- CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
326
- //ADVANCED property for variable: CMAKE_LINKER
327
- CMAKE_LINKER-ADVANCED:INTERNAL=1
328
- //ADVANCED property for variable: CMAKE_MAKE_PROGRAM
329
- CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
330
- //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
331
- CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
332
- //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
333
- CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
334
- //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
335
- CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
336
- //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
337
- CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
338
- //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
339
- CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
340
- //ADVANCED property for variable: CMAKE_NM
341
- CMAKE_NM-ADVANCED:INTERNAL=1
342
- //number of local generators
343
- CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
344
- //ADVANCED property for variable: CMAKE_OBJCOPY
345
- CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
346
- //ADVANCED property for variable: CMAKE_OBJDUMP
347
- CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
348
- //Platform information initialized
349
- CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
350
- //ADVANCED property for variable: CMAKE_RANLIB
351
- CMAKE_RANLIB-ADVANCED:INTERNAL=1
352
- //ADVANCED property for variable: CMAKE_READELF
353
- CMAKE_READELF-ADVANCED:INTERNAL=1
354
- //Path to CMake installation.
355
- CMAKE_ROOT:INTERNAL=/usr/local/share/cmake-3.31
356
- //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
357
- CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
358
- //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
359
- CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
360
- //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
361
- CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
362
- //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
363
- CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
364
- //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
365
- CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
366
- //ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
367
- CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
368
- //ADVANCED property for variable: CMAKE_SKIP_RPATH
369
- CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
370
- //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
371
- CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
372
- //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
373
- CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
374
- //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
375
- CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
376
- //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
377
- CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
378
- //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
379
- CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
380
- //ADVANCED property for variable: CMAKE_STRIP
381
- CMAKE_STRIP-ADVANCED:INTERNAL=1
382
- //ADVANCED property for variable: CMAKE_TAPI
383
- CMAKE_TAPI-ADVANCED:INTERNAL=1
384
- //uname command
385
- CMAKE_UNAME:INTERNAL=/usr/bin/uname
386
- //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
387
- CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
388
- //Details about finding OpenCL
389
- FIND_PACKAGE_MESSAGE_DETAILS_OpenCL:INTERNAL=[/usr/lib/x86_64-linux-gnu/libOpenCL.so][/usr/include][v3.0()]
390
- //Have symbol CL_VERSION_3_0
391
- OPENCL_VERSION_3_0:INTERNAL=1
392
- //ADVANCED property for variable: OpenCL_INCLUDE_DIR
393
- OpenCL_INCLUDE_DIR-ADVANCED:INTERNAL=1
394
- //ADVANCED property for variable: OpenCL_LIBRARY
395
- OpenCL_LIBRARY-ADVANCED:INTERNAL=1
396
- //linker supports push/pop state
397
- _CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
398
- //linker supports push/pop state
399
- _CMAKE_C_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
400
- //linker supports push/pop state
401
- _CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
402
-
pennylane_qrack/Makefile DELETED
@@ -1,230 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.31
3
-
4
- # Default target executed when no arguments are given to make.
5
- default_target: all
6
- .PHONY : default_target
7
-
8
- # Allow only one "make -f Makefile2" at a time, but pass parallelism.
9
- .NOTPARALLEL:
10
-
11
- #=============================================================================
12
- # Special targets provided by cmake.
13
-
14
- # Disable implicit rules so canonical targets will work.
15
- .SUFFIXES:
16
-
17
- # Disable VCS-based implicit rules.
18
- % : %,v
19
-
20
- # Disable VCS-based implicit rules.
21
- % : RCS/%
22
-
23
- # Disable VCS-based implicit rules.
24
- % : RCS/%,v
25
-
26
- # Disable VCS-based implicit rules.
27
- % : SCCS/s.%
28
-
29
- # Disable VCS-based implicit rules.
30
- % : s.%
31
-
32
- .SUFFIXES: .hpux_make_needs_suffix_list
33
-
34
- # Command-line flag to silence nested $(MAKE).
35
- $(VERBOSE)MAKESILENT = -s
36
-
37
- #Suppress display of executed commands.
38
- $(VERBOSE).SILENT:
39
-
40
- # A target that is always out of date.
41
- cmake_force:
42
- .PHONY : cmake_force
43
-
44
- #=============================================================================
45
- # Set environment variables for the build.
46
-
47
- # The shell in which to execute make rules.
48
- SHELL = /bin/sh
49
-
50
- # The CMake executable.
51
- CMAKE_COMMAND = /usr/local/bin/cmake
52
-
53
- # The command to remove a file.
54
- RM = /usr/local/bin/cmake -E rm -f
55
-
56
- # Escaping for special characters.
57
- EQUALS = =
58
-
59
- # The top-level source directory on which CMake was run.
60
- CMAKE_SOURCE_DIR = /home/runner/work/pennylane-qrack/pennylane-qrack
61
-
62
- # The top-level build directory on which CMake was run.
63
- CMAKE_BINARY_DIR = /home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack
64
-
65
- #=============================================================================
66
- # Targets provided globally by CMake.
67
-
68
- # Special rule for the target edit_cache
69
- edit_cache:
70
- @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
71
- /usr/local/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
72
- .PHONY : edit_cache
73
-
74
- # Special rule for the target edit_cache
75
- edit_cache/fast: edit_cache
76
- .PHONY : edit_cache/fast
77
-
78
- # Special rule for the target rebuild_cache
79
- rebuild_cache:
80
- @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
81
- /usr/local/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
82
- .PHONY : rebuild_cache
83
-
84
- # Special rule for the target rebuild_cache
85
- rebuild_cache/fast: rebuild_cache
86
- .PHONY : rebuild_cache/fast
87
-
88
- # Special rule for the target list_install_components
89
- list_install_components:
90
- @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\""
91
- .PHONY : list_install_components
92
-
93
- # Special rule for the target list_install_components
94
- list_install_components/fast: list_install_components
95
- .PHONY : list_install_components/fast
96
-
97
- # Special rule for the target install
98
- install: preinstall
99
- @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
100
- /usr/local/bin/cmake -P cmake_install.cmake
101
- .PHONY : install
102
-
103
- # Special rule for the target install
104
- install/fast: preinstall/fast
105
- @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
106
- /usr/local/bin/cmake -P cmake_install.cmake
107
- .PHONY : install/fast
108
-
109
- # Special rule for the target install/local
110
- install/local: preinstall
111
- @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
112
- /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
113
- .PHONY : install/local
114
-
115
- # Special rule for the target install/local
116
- install/local/fast: preinstall/fast
117
- @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
118
- /usr/local/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
119
- .PHONY : install/local/fast
120
-
121
- # Special rule for the target install/strip
122
- install/strip: preinstall
123
- @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
124
- /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
125
- .PHONY : install/strip
126
-
127
- # Special rule for the target install/strip
128
- install/strip/fast: preinstall/fast
129
- @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
130
- /usr/local/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
131
- .PHONY : install/strip/fast
132
-
133
- # The main all target
134
- all: cmake_check_build_system
135
- $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack/CMakeFiles /home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack//CMakeFiles/progress.marks
136
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
137
- $(CMAKE_COMMAND) -E cmake_progress_start /home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack/CMakeFiles 0
138
- .PHONY : all
139
-
140
- # The main clean target
141
- clean:
142
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
143
- .PHONY : clean
144
-
145
- # The main clean target
146
- clean/fast: clean
147
- .PHONY : clean/fast
148
-
149
- # Prepare targets for installation.
150
- preinstall: all
151
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
152
- .PHONY : preinstall
153
-
154
- # Prepare targets for installation.
155
- preinstall/fast:
156
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
157
- .PHONY : preinstall/fast
158
-
159
- # clear depends
160
- depend:
161
- $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
162
- .PHONY : depend
163
-
164
- #=============================================================================
165
- # Target rules for targets named qrack_device
166
-
167
- # Build rule for target.
168
- qrack_device: cmake_check_build_system
169
- $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 qrack_device
170
- .PHONY : qrack_device
171
-
172
- # fast build rule for target.
173
- qrack_device/fast:
174
- $(MAKE) $(MAKESILENT) -f CMakeFiles/qrack_device.dir/build.make CMakeFiles/qrack_device.dir/build
175
- .PHONY : qrack_device/fast
176
-
177
- qrack_device.o: qrack_device.cpp.o
178
- .PHONY : qrack_device.o
179
-
180
- # target to build an object file
181
- qrack_device.cpp.o:
182
- $(MAKE) $(MAKESILENT) -f CMakeFiles/qrack_device.dir/build.make CMakeFiles/qrack_device.dir/qrack_device.cpp.o
183
- .PHONY : qrack_device.cpp.o
184
-
185
- qrack_device.i: qrack_device.cpp.i
186
- .PHONY : qrack_device.i
187
-
188
- # target to preprocess a source file
189
- qrack_device.cpp.i:
190
- $(MAKE) $(MAKESILENT) -f CMakeFiles/qrack_device.dir/build.make CMakeFiles/qrack_device.dir/qrack_device.cpp.i
191
- .PHONY : qrack_device.cpp.i
192
-
193
- qrack_device.s: qrack_device.cpp.s
194
- .PHONY : qrack_device.s
195
-
196
- # target to generate assembly for a file
197
- qrack_device.cpp.s:
198
- $(MAKE) $(MAKESILENT) -f CMakeFiles/qrack_device.dir/build.make CMakeFiles/qrack_device.dir/qrack_device.cpp.s
199
- .PHONY : qrack_device.cpp.s
200
-
201
- # Help Target
202
- help:
203
- @echo "The following are some of the valid targets for this Makefile:"
204
- @echo "... all (the default if no target is provided)"
205
- @echo "... clean"
206
- @echo "... depend"
207
- @echo "... edit_cache"
208
- @echo "... install"
209
- @echo "... install/local"
210
- @echo "... install/strip"
211
- @echo "... list_install_components"
212
- @echo "... rebuild_cache"
213
- @echo "... qrack_device"
214
- @echo "... qrack_device.o"
215
- @echo "... qrack_device.i"
216
- @echo "... qrack_device.s"
217
- .PHONY : help
218
-
219
-
220
-
221
- #=============================================================================
222
- # Special targets to cleanup operation of make.
223
-
224
- # Special rule to run CMake to check the build system integrity.
225
- # No rule that depends on this can have commands that come from listfiles
226
- # because they might be regenerated.
227
- cmake_check_build_system:
228
- $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
229
- .PHONY : cmake_check_build_system
230
-
@@ -1,89 +0,0 @@
1
- # Install script for directory: /home/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
- # Install shared libraries without execute permission?
31
- if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
32
- set(CMAKE_INSTALL_SO_NO_EXE "1")
33
- endif()
34
-
35
- # Is this installation the result of a crosscompile?
36
- if(NOT DEFINED CMAKE_CROSSCOMPILING)
37
- set(CMAKE_CROSSCOMPILING "FALSE")
38
- endif()
39
-
40
- # Set path to fallback-tool for dependency-resolution.
41
- if(NOT DEFINED CMAKE_OBJDUMP)
42
- set(CMAKE_OBJDUMP "/usr/bin/objdump")
43
- endif()
44
-
45
- if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
46
- if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.so" AND
47
- NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.so")
48
- file(RPATH_CHECK
49
- FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.so"
50
- RPATH "")
51
- endif()
52
- file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/pennylane_qrack" TYPE SHARED_LIBRARY FILES "/home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack/libqrack_device.so")
53
- if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.so" AND
54
- NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.so")
55
- file(RPATH_CHANGE
56
- FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.so"
57
- OLD_RPATH "/home/runner/work/pennylane-qrack/pennylane-qrack/catalyst/runtime/include:/home/runner/work/pennylane-qrack/pennylane-qrack/qrack/build:"
58
- NEW_RPATH "")
59
- if(CMAKE_INSTALL_DO_STRIP)
60
- execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/pennylane_qrack/libqrack_device.so")
61
- endif()
62
- endif()
63
- endif()
64
-
65
- if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
66
- endif()
67
-
68
- string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
69
- "${CMAKE_INSTALL_MANIFEST_FILES}")
70
- if(CMAKE_INSTALL_LOCAL_ONLY)
71
- file(WRITE "/home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack/install_local_manifest.txt"
72
- "${CMAKE_INSTALL_MANIFEST_CONTENT}")
73
- endif()
74
- if(CMAKE_INSTALL_COMPONENT)
75
- if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$")
76
- set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
77
- else()
78
- string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}")
79
- set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt")
80
- unset(CMAKE_INST_COMP_HASH)
81
- endif()
82
- else()
83
- set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
84
- endif()
85
-
86
- if(NOT CMAKE_INSTALL_LOCAL_ONLY)
87
- file(WRITE "/home/runner/work/pennylane-qrack/pennylane-qrack/pennylane_qrack/${CMAKE_INSTALL_MANIFEST}"
88
- "${CMAKE_INSTALL_MANIFEST_CONTENT}")
89
- endif()
@@ -1,19 +0,0 @@
1
- pennylane_qrack/CMakeCache.txt,sha256=3v-xGxs5bLtfkdPBdAMG0jFuElEhuklvh6fwcSSRFY0,15177
2
- pennylane_qrack/Makefile,sha256=Od_33AWv8Jgk8ZWvL7lklT2Awce38c1lIgMyys5-RuE,7584
3
- pennylane_qrack/QrackAceDeviceConfig.toml,sha256=KmPPJEa6TMYpbQqQgMSAPfeGPQE8f1lriteyfGW8WeA,4517
4
- pennylane_qrack/QrackDeviceConfig.toml,sha256=oR9-dIAP6BzP3e2QSLroacaloHZsx7iJiKE6w7LGxUo,5459
5
- pennylane_qrack/QrackStabilizerDeviceConfig.toml,sha256=zm2M2FBR--RnKkNCtZih7xxtr-Vl6MtI4g1L3SrjFWw,3965
6
- pennylane_qrack/__init__.py,sha256=_g4NKu07_pXqxvQaxjdAPe769S5tWwYjqyHi3z7YKHc,673
7
- pennylane_qrack/_version.py,sha256=31JM_MkJ4ykGtspvdINrZamZ670aNBHzQAuXfiY-E2I,689
8
- pennylane_qrack/cmake_install.cmake,sha256=jP3YWPs_F3JYlifubQTLq95RWHkadWyv_BNvMw3MzhU,3521
9
- pennylane_qrack/libqrack_device.so,sha256=Dti6EMqkV4ei7PV37tFMwby2namtyyxWKO_hEZiPgrQ,5681920
10
- pennylane_qrack/qrack_ace_device.py,sha256=RaD2nxFSW6mW1pu19FDaI5CJx3s9D1K3-5VHjwzsBcM,17093
11
- pennylane_qrack/qrack_device.cpp,sha256=FFP1GLdgqOho9irwdaAF1Lo1T9KIsaVKMiiIglkrOmE,37194
12
- pennylane_qrack/qrack_device.py,sha256=LkfoH_KHm8VcUNT6Xzo3NZE24iGUMcLz8f1Nk8Jp6Sk,28358
13
- pennylane_qrack/qrack_stabilizer_device.py,sha256=owS6GZqob8B5wU7JqEbIlJ47-RqQPlkJUDBa65YJTVw,9958
14
- pennylane_qrack-0.22.7.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
15
- pennylane_qrack-0.22.7.dist-info/METADATA,sha256=TpaeZ-nOy6dJqjtR5gJkwsEAJ2RR9aNtSNZPXrWW17w,6181
16
- pennylane_qrack-0.22.7.dist-info/WHEEL,sha256=k8EuOMBHdXsN9XSTE5LrpwS4FtdLkoSlyO_7W-lE_zg,109
17
- pennylane_qrack-0.22.7.dist-info/entry_points.txt,sha256=5eoa4LFV7DuSLFbs6tzFvuVIHr6zOovxqlDsn2cinP4,220
18
- pennylane_qrack-0.22.7.dist-info/top_level.txt,sha256=5NFMNHqCHtVLwNkLg66xz846uUJAlnOJ5VGa6ulW1ow,16
19
- pennylane_qrack-0.22.7.dist-info/RECORD,,