-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathlightning_kokkos.py
844 lines (705 loc) · 33.2 KB
/
lightning_kokkos.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
# Copyright 2018-2023 Xanadu Quantum Technologies Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
r"""
This module contains the :class:`~.LightningQubit` class, a PennyLane simulator device that
interfaces with C++ for fast linear algebra calculations.
"""
from warnings import warn
from pathlib import Path
import numpy as np
from pennylane_lightning.core.lightning_base import (
LightningBase,
LightningBaseFallBack,
_chunk_iterable,
)
try:
# pylint: disable=import-error, no-name-in-module
from pennylane_lightning.lightning_kokkos_ops import (
allocate_aligned_array,
backend_info,
InitializationSettings,
MeasurementsC128,
MeasurementsC64,
print_configuration,
StateVectorC128,
StateVectorC64,
)
LK_CPP_BINARY_AVAILABLE = True
except ImportError:
LK_CPP_BINARY_AVAILABLE = False
if LK_CPP_BINARY_AVAILABLE:
from typing import List
from os import getenv
from pennylane import (
math,
BasisState,
StatePrep,
Projector,
Rot,
DeviceError,
QuantumFunctionError,
)
from pennylane.operation import Tensor
from pennylane.ops.op_math import Adjoint
from pennylane.measurements import MeasurementProcess, Expectation, State
from pennylane.wires import Wires
import pennylane as qml
# pylint: disable=import-error, no-name-in-module, ungrouped-imports
from pennylane_lightning.core._serialize import QuantumScriptSerializer
from pennylane_lightning.core._version import __version__
from pennylane_lightning.lightning_kokkos_ops.algorithms import (
AdjointJacobianC64,
create_ops_listC64,
AdjointJacobianC128,
create_ops_listC128,
)
def _kokkos_dtype(dtype):
if dtype not in [np.complex128, np.complex64]: # pragma: no cover
raise ValueError(f"Data type is not supported for state-vector computation: {dtype}")
return StateVectorC128 if dtype == np.complex128 else StateVectorC64
def _kokkos_configuration():
return print_configuration()
allowed_operations = {
"Identity",
"BasisState",
"QubitStateVector",
"StatePrep",
"QubitUnitary",
"ControlledQubitUnitary",
"MultiControlledX",
"DiagonalQubitUnitary",
"PauliX",
"PauliY",
"PauliZ",
"MultiRZ",
"Hadamard",
"S",
"Adjoint(S)",
"T",
"Adjoint(T)",
"SX",
"Adjoint(SX)",
"CNOT",
"SWAP",
"ISWAP",
"PSWAP",
"Adjoint(ISWAP)",
"SISWAP",
"Adjoint(SISWAP)",
"SQISW",
"CSWAP",
"Toffoli",
"CY",
"CZ",
"PhaseShift",
"ControlledPhaseShift",
"CPhase",
"RX",
"RY",
"RZ",
"Rot",
"CRX",
"CRY",
"CRZ",
"CRot",
"IsingXX",
"IsingYY",
"IsingZZ",
"IsingXY",
"SingleExcitation",
"SingleExcitationPlus",
"SingleExcitationMinus",
"DoubleExcitation",
"DoubleExcitationPlus",
"DoubleExcitationMinus",
"QubitCarry",
"QubitSum",
"OrbitalRotation",
"QFT",
"ECR",
}
allowed_observables = {
"PauliX",
"PauliY",
"PauliZ",
"Hadamard",
"Hermitian",
"Identity",
"SparseHamiltonian",
"Hamiltonian",
"Sum",
"SProd",
"Prod",
"Exp",
}
class LightningKokkos(LightningBase):
"""PennyLane Lightning Kokkos device.
A device that interfaces with C++ to perform fast linear algebra calculations.
Use of this device requires pre-built binaries or compilation from source. Check out the
:doc:`/lightning_kokkos/installation` guide for more details.
Args:
wires (int): the number of wires to initialize the device with
sync (bool): immediately sync with host-sv after applying operations
c_dtype: Datatypes for statevector representation. Must be one of
``np.complex64`` or ``np.complex128``.
kokkos_args (InitializationSettings): binding for Kokkos::InitializationSettings
(threading parameters).
shots (int): How many times the circuit should be evaluated (or sampled) to estimate
the expectation values. Defaults to ``None`` if not specified. Setting
to ``None`` results in computing statistics like expectation values and
variances analytically.
"""
name = "Lightning Kokkos PennyLane plugin"
short_name = "lightning.kokkos"
kokkos_config = {}
operations = allowed_operations
observables = allowed_observables
_backend_info = backend_info
config = Path(__file__).parent / "lightning_kokkos.toml"
def __init__(
self,
wires,
*,
sync=True,
c_dtype=np.complex128,
shots=None,
batch_obs=False,
kokkos_args=None,
): # pylint: disable=unused-argument
super().__init__(wires, shots=shots, c_dtype=c_dtype)
if kokkos_args is None:
self._kokkos_state = _kokkos_dtype(c_dtype)(self.num_wires)
elif isinstance(kokkos_args, InitializationSettings):
self._kokkos_state = _kokkos_dtype(c_dtype)(self.num_wires, kokkos_args)
else:
type0 = type(InitializationSettings())
raise TypeError(
f"Argument kokkos_args must be of type {type0} but it is of {type(kokkos_args)}."
)
self._sync = sync
if not LightningKokkos.kokkos_config:
LightningKokkos.kokkos_config = _kokkos_configuration()
# Create the initial state. Internally, we store the
# state as an array of dimension [2]*wires.
self._pre_rotated_state = _kokkos_dtype(c_dtype)(self.num_wires)
@staticmethod
def _asarray(arr, dtype=None):
arr = np.asarray(arr) # arr is not copied
if arr.dtype.kind not in ["f", "c"]:
return arr
if not dtype:
dtype = arr.dtype
# We allocate a new aligned memory and copy data to there if alignment
# or dtype mismatches
# Note that get_alignment does not necessarily return CPUMemoryModel(Unaligned) even for
# numpy allocated memory as the memory location happens to be aligned.
if arr.dtype != dtype:
new_arr = allocate_aligned_array(arr.size, np.dtype(dtype), False).reshape(
arr.shape
)
np.copyto(new_arr, arr)
arr = new_arr
return arr
def _create_basis_state(self, index):
"""Return a computational basis state over all wires.
Args:
index (int): integer representing the computational basis state
Returns:
array[complex]: complex array of shape ``[2]*self.num_wires``
representing the statevector of the basis state
Note: This function does not support broadcasted inputs yet.
"""
self._kokkos_state.setBasisState(index)
def reset(self):
"""Reset the device"""
super().reset()
# init the state vector to |00..0>
self._kokkos_state.resetStateVector() # Sync reset
def sync_h2d(self, state_vector):
"""Copy the state vector data on host provided by the user to the state
vector on the device
Args:
state_vector(array[complex]): the state vector array on host.
**Example**
>>> dev = qml.device('lightning.kokkos', wires=3)
>>> obs = qml.Identity(0) @ qml.PauliX(1) @ qml.PauliY(2)
>>> obs1 = qml.Identity(1)
>>> H = qml.Hamiltonian([1.0, 1.0], [obs1, obs])
>>> state_vector = np.array([0.0 + 0.0j, 0.0 + 0.1j, 0.1 + 0.1j, 0.1 + 0.2j, 0.2 + 0.2j, 0.3 + 0.3j, 0.3 + 0.4j, 0.4 + 0.5j,], dtype=np.complex64)
>>> dev.sync_h2d(state_vector)
>>> res = dev.expval(H)
>>> print(res)
1.0
"""
self._kokkos_state.HostToDevice(state_vector.ravel(order="C"))
def sync_d2h(self, state_vector):
"""Copy the state vector data on device to a state vector on the host provided
by the user
Args:
state_vector(array[complex]): the state vector array on host
**Example**
>>> dev = qml.device('lightning.kokkos', wires=1)
>>> dev.apply([qml.PauliX(wires=[0])])
>>> state_vector = np.zeros(2**dev.num_wires).astype(dev.C_DTYPE)
>>> dev.sync_d2h(state_vector)
>>> print(state_vector)
[0.+0.j 1.+0.j]
"""
self._kokkos_state.DeviceToHost(state_vector.ravel(order="C"))
@property
def create_ops_list(self):
"""Returns create_ops_list function of the matching precision."""
return create_ops_listC64 if self.use_csingle else create_ops_listC128
@property
def measurements(self):
"""Returns Measurements constructor of the matching precision."""
state_vector = self.state_vector
return (
MeasurementsC64(state_vector)
if self.use_csingle
else MeasurementsC128(state_vector)
)
@property
def state(self):
"""Copy the state vector data from the device to the host.
A state vector Numpy array is explicitly allocated on the host to store and return
the data.
**Example**
>>> dev = qml.device('lightning.kokkos', wires=1)
>>> dev.apply([qml.PauliX(wires=[0])])
>>> print(dev.state)
[0.+0.j 1.+0.j]
"""
state = np.zeros(2**self.num_wires, dtype=self.C_DTYPE)
state = self._asarray(state, dtype=self.C_DTYPE)
self.sync_d2h(state)
return state
@property
def state_vector(self):
"""Returns a handle to the statevector."""
return self._kokkos_state
def _apply_state_vector(self, state, device_wires):
"""Initialize the internal state vector in a specified state.
Args:
state (array[complex]): normalized input state of length ``2**len(wires)``
or broadcasted state of shape ``(batch_size, 2**len(wires))``
device_wires (Wires): wires that get initialized in the state
"""
if isinstance(state, self._kokkos_state.__class__):
state_data = np.zeros(state.size, dtype=self.C_DTYPE)
state_data = self._asarray(state_data, dtype=self.C_DTYPE)
state.DeviceToHost(state_data.ravel(order="C"))
state = state_data
ravelled_indices, state = self._preprocess_state_vector(state, device_wires)
# translate to wire labels used by device
device_wires = self.map_wires(device_wires)
output_shape = [2] * self.num_wires
if len(device_wires) == self.num_wires and Wires(sorted(device_wires)) == device_wires:
# Initialize the entire device state with the input state
self.sync_h2d(self._reshape(state, output_shape))
return
self._kokkos_state.setStateVector(ravelled_indices, state) # this operation on device
def _apply_basis_state(self, state, wires):
"""Initialize the state vector in a specified computational basis state.
Args:
state (array[int]): computational basis state of shape ``(wires,)``
consisting of 0s and 1s.
wires (Wires): wires that the provided computational state should be initialized on
Note: This function does not support broadcasted inputs yet.
"""
num = self._get_basis_state_index(state, wires)
self._create_basis_state(num)
def apply_lightning(self, operations):
"""Apply a list of operations to the state tensor.
Args:
operations (list[~pennylane.operation.Operation]): operations to apply
dtype (type): Type of numpy ``complex`` to be used. Can be important
to specify for large systems for memory allocation purposes.
Returns:
array[complex]: the output state tensor
"""
# Skip over identity operations instead of performing
# matrix multiplication with the identity.
invert_param = False
state = self.state_vector
for ops in operations:
if str(ops.name) == "Identity":
continue
name = ops.name
if isinstance(ops, Adjoint):
name = ops.base.name
invert_param = True
method = getattr(state, name, None)
wires = self.wires.indices(ops.wires)
if method is None:
# Inverse can be set to False since qml.matrix(ops) is already in inverted form
try:
mat = qml.matrix(ops)
except AttributeError: # pragma: no cover
# To support older versions of PL
mat = ops.matrix
if len(mat) == 0:
raise ValueError("Unsupported operation")
state.apply(
name,
wires,
False,
[],
mat.ravel(order="C"), # inv = False: Matrix already in correct form;
) # Parameters can be ignored for explicit matrices; F-order for cuQuantum
else:
param = ops.parameters
method(wires, invert_param, param)
# pylint: disable=unused-argument
def apply(self, operations, rotations=None, **kwargs):
"""Applies a list of operations to the state tensor."""
# State preparation is currently done in Python
if operations: # make sure operations[0] exists
if isinstance(operations[0], StatePrep):
self._apply_state_vector(
operations[0].parameters[0].copy(), operations[0].wires
)
operations = operations[1:]
elif isinstance(operations[0], BasisState):
self._apply_basis_state(operations[0].parameters[0], operations[0].wires)
operations = operations[1:]
for operation in operations:
if isinstance(operation, (StatePrep, BasisState)):
raise DeviceError(
f"Operation {operation.name} cannot be used after other "
+ f"Operations have already been applied on a {self.short_name} device."
)
self.apply_lightning(operations)
# pylint: disable=protected-access
def expval(self, observable, shot_range=None, bin_size=None):
"""Expectation value of the supplied observable.
Args:
observable: A PennyLane observable.
shot_range (tuple[int]): 2-tuple of integers specifying the range of samples
to use. If not specified, all samples are used.
bin_size (int): Divides the shot range into bins of size ``bin_size``, and
returns the measurement statistic separately over each bin. If not
provided, the entire shot range is treated as a single bin.
Returns:
Expectation value of the observable
"""
if observable.name in [
"Projector",
]:
return super().expval(observable, shot_range=shot_range, bin_size=bin_size)
if self.shots is not None:
# estimate the expectation value
# LightningQubit doesn't support sampling yet
samples = self.sample(observable, shot_range=shot_range, bin_size=bin_size)
return np.squeeze(np.mean(samples, axis=0))
# Initialization of state
measure = (
MeasurementsC64(self.state_vector)
if self.use_csingle
else MeasurementsC128(self.state_vector)
)
if observable.name == "SparseHamiltonian":
csr_hamiltonian = observable.sparse_matrix(wire_order=self.wires).tocsr(copy=False)
return measure.expval(
csr_hamiltonian.indptr,
csr_hamiltonian.indices,
csr_hamiltonian.data,
)
# use specialized functors to compute expval(Hermitian)
if observable.name == "Hermitian":
observable_wires = self.map_wires(observable.wires)
matrix = observable.matrix()
return measure.expval(matrix, observable_wires)
if (
observable.name in ["Hamiltonian", "Hermitian"]
or (observable.arithmetic_depth > 0)
or isinstance(observable.name, List)
):
ob_serialized = QuantumScriptSerializer(self.short_name, self.use_csingle)._ob(
observable, self.wire_map
)
return measure.expval(ob_serialized)
# translate to wire labels used by device
observable_wires = self.map_wires(observable.wires)
return measure.expval(observable.name, observable_wires)
def var(self, observable, shot_range=None, bin_size=None):
"""Variance of the supplied observable.
Args:
observable: A PennyLane observable.
shot_range (tuple[int]): 2-tuple of integers specifying the range of samples
to use. If not specified, all samples are used.
bin_size (int): Divides the shot range into bins of size ``bin_size``, and
returns the measurement statistic separately over each bin. If not
provided, the entire shot range is treated as a single bin.
Returns:
Variance of the observable
"""
if observable.name in [
"Projector",
]:
return super().var(observable, shot_range=shot_range, bin_size=bin_size)
if self.shots is not None:
# estimate the var
# LightningKokkos doesn't support sampling yet
samples = self.sample(observable, shot_range=shot_range, bin_size=bin_size)
return np.squeeze(np.var(samples, axis=0))
# Initialization of state
measure = (
MeasurementsC64(self.state_vector)
if self.use_csingle
else MeasurementsC128(self.state_vector)
)
if observable.name == "SparseHamiltonian":
csr_hamiltonian = observable.sparse_matrix(wire_order=self.wires).tocsr(copy=False)
return measure.var(
csr_hamiltonian.indptr,
csr_hamiltonian.indices,
csr_hamiltonian.data,
)
if (
observable.name in ["Hamiltonian", "Hermitian"]
or (observable.arithmetic_depth > 0)
or isinstance(observable.name, List)
):
ob_serialized = QuantumScriptSerializer(self.short_name, self.use_csingle)._ob(
observable, self.wire_map
)
return measure.var(ob_serialized)
# translate to wire labels used by device
observable_wires = self.map_wires(observable.wires)
return measure.var(observable.name, observable_wires)
def generate_samples(self):
"""Generate samples
Returns:
array[int]: array of samples in binary representation with shape
``(dev.shots, dev.num_wires)``
"""
measure = (
MeasurementsC64(self._kokkos_state)
if self.use_csingle
else MeasurementsC128(self._kokkos_state)
)
return measure.generate_samples(len(self.wires), self.shots).astype(int, copy=False)
def probability_lightning(self, wires):
"""Return the probability of each computational basis state.
Args:
wires (Iterable[Number, str], Number, str, Wires): wires to return
marginal probabilities for. Wires not provided are traced out of the system.
Returns:
array[float]: list of the probabilities
"""
return self.measurements.probs(wires)
# pylint: disable=attribute-defined-outside-init
def sample(self, observable, shot_range=None, bin_size=None, counts=False):
"""Return samples of an observable."""
if observable.name != "PauliZ":
self.apply_lightning(observable.diagonalizing_gates())
self._samples = self.generate_samples()
return super().sample(
observable, shot_range=shot_range, bin_size=bin_size, counts=counts
)
@staticmethod
def _check_adjdiff_supported_measurements(
measurements: List[MeasurementProcess],
):
"""Check whether given list of measurement is supported by adjoint_differentiation.
Args:
measurements (List[MeasurementProcess]): a list of measurement processes to check.
Returns:
Expectation or State: a common return type of measurements.
"""
if not measurements:
return None
if len(measurements) == 1 and measurements[0].return_type is State:
# return State
raise QuantumFunctionError(
"Adjoint differentiation does not support State measurements."
)
# Now the return_type of measurement processes must be expectation
if any(m.return_type is not Expectation for m in measurements):
raise QuantumFunctionError(
"Adjoint differentiation method does not support expectation return type "
"mixed with other return types"
)
for measurement in measurements:
if isinstance(measurement.obs, Tensor):
if any(isinstance(o, Projector) for o in measurement.obs.non_identity_obs):
raise QuantumFunctionError(
"Adjoint differentiation method does not support the "
"Projector observable"
)
elif isinstance(measurement.obs, Projector):
raise QuantumFunctionError(
"Adjoint differentiation method does not support the Projector observable"
)
return Expectation
@staticmethod
def _check_adjdiff_supported_operations(operations):
"""Check Lightning adjoint differentiation method support for a tape.
Raise ``QuantumFunctionError`` if ``tape`` contains not supported measurements,
observables, or operations by the Lightning adjoint differentiation method.
Args:
tape (.QuantumTape): quantum tape to differentiate.
"""
for operation in operations:
if operation.num_params > 1 and not isinstance(operation, Rot):
raise QuantumFunctionError(
f"The {operation.name} operation is not supported using "
'the "adjoint" differentiation method'
)
def _init_process_jacobian_tape(self, tape, starting_state, use_device_state):
"""Generate an initial state vector for ``_process_jacobian_tape``."""
if starting_state is not None:
if starting_state.size != 2 ** len(self.wires):
raise QuantumFunctionError(
"The number of qubits of starting_state must be the same as "
"that of the device."
)
self._apply_state_vector(starting_state, self.wires)
elif not use_device_state:
self.reset()
self.apply(tape.operations)
return self.state_vector
def adjoint_jacobian(self, tape, starting_state=None, use_device_state=False):
"""Implements the adjoint method outlined in
`Jones and Gacon <https://arxiv.org/abs/2009.02823>`__ to differentiate an input tape.
After a forward pass, the circuit is reversed by iteratively applying adjoint
gates to scan backwards through the circuit.
"""
if self.shots is not None:
warn(
"Requested adjoint differentiation to be computed with finite shots."
" The derivative is always exact when using the adjoint "
"differentiation method.",
UserWarning,
)
tape_return_type = self._check_adjdiff_supported_measurements(tape.measurements)
if not tape_return_type: # the tape does not have measurements
return np.array([], dtype=self.state.dtype)
if tape_return_type is State: # pragma: no cover
raise QuantumFunctionError(
"This method does not support statevector return type. "
"Use vjp method instead for this purpose."
)
self._check_adjdiff_supported_operations(tape.operations)
processed_data = self._process_jacobian_tape(tape, starting_state, use_device_state)
if not processed_data: # training_params is empty
return np.array([], dtype=self.state.dtype)
trainable_params = processed_data["tp_shift"]
# If requested batching over observables, chunk into OMP_NUM_THREADS sized chunks.
# This will allow use of Lightning with adjoint for large-qubit numbers AND large
# numbers of observables, enabling choice between compute time and memory use.
requested_threads = int(getenv("OMP_NUM_THREADS", "1"))
adjoint_jacobian = AdjointJacobianC64() if self.use_csingle else AdjointJacobianC128()
if self._batch_obs and requested_threads > 1: # pragma: no cover
obs_partitions = _chunk_iterable(
processed_data["obs_serialized"], requested_threads
)
jac = []
for obs_chunk in obs_partitions:
jac_local = adjoint_jacobian(
processed_data["state_vector"],
obs_chunk,
processed_data["ops_serialized"],
trainable_params,
)
jac.extend(jac_local)
else:
jac = adjoint_jacobian(
processed_data["state_vector"],
processed_data["obs_serialized"],
processed_data["ops_serialized"],
trainable_params,
)
jac = np.array(jac)
jac = jac.reshape(-1, len(trainable_params))
jac_r = np.zeros((jac.shape[0], processed_data["all_params"]))
jac_r[:, processed_data["record_tp_rows"]] = jac
if hasattr(qml, "active_return"): # pragma: no cover
return self._adjoint_jacobian_processing(jac_r) if qml.active_return() else jac_r
return self._adjoint_jacobian_processing(jac_r)
# pylint: disable=inconsistent-return-statements, line-too-long
def vjp(self, measurements, grad_vec, starting_state=None, use_device_state=False):
"""Generate the processing function required to compute the vector-Jacobian products
of a tape.
This function can be used with multiple expectation values or a quantum state.
When a quantum state is given,
.. code-block:: python
vjp_f = dev.vjp([qml.state()], grad_vec)
vjp = vjp_f(tape)
computes :math:`w = (w_1,\\cdots,w_m)` where
.. math::
w_k = \\langle v| \\frac{\\partial}{\\partial \\theta_k} | \\psi_{\\pmb{\\theta}} \\rangle.
Here, :math:`m` is the total number of trainable parameters,
:math:`\\pmb{\\theta}` is the vector of trainable parameters and
:math:`\\psi_{\\pmb{\\theta}}` is the output quantum state.
Args:
measurements (list): List of measurement processes for vector-Jacobian product.
Now it must be expectation values or a quantum state.
grad_vec (tensor_like): Gradient-output vector. Must have shape matching the output
shape of the corresponding tape, i.e. number of measurements if the return
type is expectation or :math:`2^N` if the return type is statevector
starting_state (tensor_like): post-forward pass state to start execution with.
It should be complex-valued. Takes precedence over ``use_device_state``.
use_device_state (bool): use current device state to initialize.
A forward pass of the same circuit should be the last thing the device
has executed. If a ``starting_state`` is provided, that takes precedence.
Returns:
The processing function required to compute the vector-Jacobian products of a tape.
"""
if self.shots is not None:
warn(
"Requested adjoint differentiation to be computed with finite shots."
" The derivative is always exact when using the adjoint "
"differentiation method.",
UserWarning,
)
tape_return_type = self._check_adjdiff_supported_measurements(measurements)
if math.allclose(grad_vec, 0) or tape_return_type is None:
return lambda tape: math.convert_like(
np.zeros(len(tape.trainable_params)), grad_vec
)
if tape_return_type is Expectation:
if len(grad_vec) != len(measurements):
raise ValueError(
"Number of observables in the tape must be the same as the "
"length of grad_vec in the vjp method"
)
if np.iscomplexobj(grad_vec):
raise ValueError(
"The vjp method only works with a real-valued grad_vec when "
"the tape is returning an expectation value"
)
ham = qml.Hamiltonian(grad_vec, [m.obs for m in measurements])
# pylint: disable=protected-access
def processing_fn(tape):
nonlocal ham
num_params = len(tape.trainable_params)
if num_params == 0:
return np.array([], dtype=self.state.dtype)
new_tape = tape.copy()
new_tape._measurements = [qml.expval(ham)]
return self.adjoint_jacobian(new_tape, starting_state, use_device_state)
return processing_fn
else:
class LightningKokkos(LightningBaseFallBack): # pragma: no cover
# pylint: disable=missing-class-docstring, too-few-public-methods
name = "Lightning Kokkos PennyLane plugin [No binaries found - Fallback: default.qubit]"
short_name = "lightning.kokkos"
def __init__(self, wires, *, c_dtype=np.complex128, **kwargs):
warn(
"Pre-compiled binaries for lightning.kokkos are not available. Falling back to "
"using the Python-based default.qubit implementation. To manually compile from "
"source, follow the instructions at "
"https://pennylane-lightning.readthedocs.io/en/latest/installation.html.",
UserWarning,
)
super().__init__(wires, c_dtype=c_dtype, **kwargs)