forked from quantumlib/OpenFermion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsparse_tools.py
More file actions
1593 lines (1297 loc) · 62.2 KB
/
sparse_tools.py
File metadata and controls
1593 lines (1297 loc) · 62.2 KB
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
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# 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.
"""This module provides functions to interface with scipy.sparse."""
import itertools
from functools import reduce
import numpy.linalg
import numpy
import scipy
import scipy.sparse
import scipy.sparse.linalg
from openfermion.ops.operators import FermionOperator, QubitOperator, BosonOperator, QuadOperator
from openfermion.ops.representations import DiagonalCoulombHamiltonian, PolynomialTensor
from openfermion.transforms.opconversions import normal_ordered
from openfermion.utils.indexing import up_index, down_index
from openfermion.utils.operator_utils import count_qubits, is_hermitian
# Make global definitions.
identity_csc = scipy.sparse.identity(2, format='csc', dtype=complex)
pauli_x_csc = scipy.sparse.csc_matrix([[0.0, 1.0], [1.0, 0.0]], dtype=complex)
pauli_y_csc = scipy.sparse.csc_matrix([[0.0, -1.0j], [1.0j, 0.0]], dtype=complex)
pauli_z_csc = scipy.sparse.csc_matrix([[1.0, 0.0], [0.0, -1.0]], dtype=complex)
q_raise_csc = (pauli_x_csc - 1.0j * pauli_y_csc) / 2.0
q_lower_csc = (pauli_x_csc + 1.0j * pauli_y_csc) / 2.0
pauli_matrix_map = {'I': identity_csc, 'X': pauli_x_csc, 'Y': pauli_y_csc, 'Z': pauli_z_csc}
def wrapped_kronecker(operator_1, operator_2):
"""Return the Kronecker product of two sparse.csc_matrix operators."""
return scipy.sparse.kron(operator_1, operator_2, 'csc')
def kronecker_operators(*args):
"""Return the Kronecker product of multiple sparse.csc_matrix operators."""
return reduce(wrapped_kronecker, *args)
def jordan_wigner_ladder_sparse(n_qubits, tensor_factor, ladder_type):
r"""Make a matrix representation of a fermion ladder operator.
Operators are mapped as follows:
a_j^\dagger -> Z_0 .. Z_{j-1} (X_j - iY_j) / 2
a_j -> Z_0 .. Z_{j-1} (X_j + iY_j) / 2
Args:
index: This is a nonzero integer. The integer indicates the tensor
factor and the sign indicates raising or lowering.
n_qubits(int): Number qubits in the system Hilbert space.
Returns:
The corresponding Scipy sparse matrix.
"""
parities = tensor_factor * [pauli_z_csc]
identities = [
scipy.sparse.identity(2 ** (n_qubits - tensor_factor - 1), dtype=complex, format='csc')
]
if ladder_type:
operator = kronecker_operators(parities + [q_raise_csc] + identities)
else:
operator = kronecker_operators(parities + [q_lower_csc] + identities)
return operator
def jordan_wigner_sparse(fermion_operator, n_qubits=None):
r"""Initialize a Scipy sparse matrix from a FermionOperator.
Operators are mapped as follows:
a_j^\dagger -> Z_0 .. Z_{j-1} (X_j - iY_j) / 2
a_j -> Z_0 .. Z_{j-1} (X_j + iY_j) / 2
Args:
fermion_operator(FermionOperator): instance of the FermionOperator
class.
n_qubits(int): Number of qubits.
Returns:
The corresponding Scipy sparse matrix.
"""
if n_qubits is None:
n_qubits = count_qubits(fermion_operator)
# Create a list of raising and lowering operators for each orbital.
jw_operators = []
for tensor_factor in range(n_qubits):
jw_operators += [
(
jordan_wigner_ladder_sparse(n_qubits, tensor_factor, 0),
jordan_wigner_ladder_sparse(n_qubits, tensor_factor, 1),
)
]
# Construct the Scipy sparse matrix.
n_hilbert = 2**n_qubits
values_list = [[]]
row_list = [[]]
column_list = [[]]
for term in fermion_operator.terms:
coefficient = fermion_operator.terms[term]
sparse_matrix = coefficient * scipy.sparse.identity(
2**n_qubits, dtype=complex, format='csc'
)
for ladder_operator in term:
sparse_matrix = sparse_matrix * jw_operators[ladder_operator[0]][ladder_operator[1]]
if coefficient:
# Extract triplets from sparse_term.
sparse_matrix = sparse_matrix.tocoo(copy=False)
values_list.append(sparse_matrix.data)
(row, column) = sparse_matrix.nonzero()
row_list.append(row)
column_list.append(column)
values_list = numpy.concatenate(values_list)
row_list = numpy.concatenate(row_list)
column_list = numpy.concatenate(column_list)
sparse_operator = scipy.sparse.coo_matrix(
(values_list, (row_list, column_list)), shape=(n_hilbert, n_hilbert)
).tocsc(copy=False)
sparse_operator.eliminate_zeros()
return sparse_operator
def qubit_operator_sparse(qubit_operator, n_qubits=None):
"""Initialize a Scipy sparse matrix from a QubitOperator.
Args:
qubit_operator(QubitOperator): instance of the QubitOperator class.
n_qubits (int): Number of qubits.
Returns:
The corresponding Scipy sparse matrix.
"""
if n_qubits is None:
n_qubits = count_qubits(qubit_operator)
if n_qubits < count_qubits(qubit_operator):
raise ValueError('Invalid number of qubits specified.')
# Construct the Scipy sparse matrix.
n_hilbert = 2**n_qubits
values_list = [[]]
row_list = [[]]
column_list = [[]]
# Loop through the terms.
for qubit_term in qubit_operator.terms:
tensor_factor = 0
coefficient = qubit_operator.terms[qubit_term]
sparse_operators = [coefficient]
for pauli_operator in qubit_term:
# Grow space for missing identity operators.
if pauli_operator[0] > tensor_factor:
identity_qubits = pauli_operator[0] - tensor_factor
identity = scipy.sparse.identity(2**identity_qubits, dtype=complex, format='csc')
sparse_operators += [identity]
# Add actual operator to the list.
sparse_operators += [pauli_matrix_map[pauli_operator[1]]]
tensor_factor = pauli_operator[0] + 1
# Grow space at end of string unless operator acted on final qubit.
if tensor_factor < n_qubits or not qubit_term:
identity_qubits = n_qubits - tensor_factor
identity = scipy.sparse.identity(2**identity_qubits, dtype=complex, format='csc')
sparse_operators += [identity]
# Extract triplets from sparse_term.
sparse_matrix = kronecker_operators(sparse_operators)
values_list.append(sparse_matrix.tocoo(copy=False).data)
(column, row) = sparse_matrix.nonzero()
column_list.append(column)
row_list.append(row)
# Create sparse operator.
values_list = numpy.concatenate(values_list)
row_list = numpy.concatenate(row_list)
column_list = numpy.concatenate(column_list)
sparse_operator = scipy.sparse.coo_matrix(
(values_list, (row_list, column_list)), shape=(n_hilbert, n_hilbert)
).tocsc(copy=False)
sparse_operator.eliminate_zeros()
return sparse_operator
def get_linear_qubit_operator_diagonal(qubit_operator, n_qubits=None):
"""Return a linear operator's diagonal elements.
The main motivation is to use it for Davidson's algorithm, to find out the
lowest n eigenvalues and associated eigenvectors.
Qubit terms with X or Y operators will contribute nothing to the diagonal
elements, while I or Z will contribute a factor of 1 or -1 together with
the coefficient.
Args:
qubit_operator(QubitOperator): A qubit operator.
Returns:
linear_operator_diagonal(numpy.ndarray): The diagonal elements for
LinearQubitOperator(qubit_operator).
"""
if n_qubits is None:
n_qubits = count_qubits(qubit_operator)
if n_qubits < count_qubits(qubit_operator):
raise ValueError('Invalid number of qubits specified.')
n_hilbert = 2**n_qubits
zeros_diagonal = numpy.zeros(n_hilbert)
ones_diagonal = numpy.ones(n_hilbert)
linear_operator_diagonal = zeros_diagonal
# Loop through the terms.
for qubit_term in qubit_operator.terms:
is_zero = False
tensor_factor = 0
vecs = [ones_diagonal]
for pauli_operator in qubit_term:
op = pauli_operator[1]
if op in ['X', 'Y']:
is_zero = True
break
# Split vector by half and half for each bit.
if pauli_operator[0] > tensor_factor:
vecs = [
v
for iter_v in vecs
for v in numpy.split(iter_v, 2 ** (pauli_operator[0] - tensor_factor))
]
vec_pairs = [numpy.split(v, 2) for v in vecs]
vecs = [v for vp in vec_pairs for v in (vp[0], -vp[1])]
tensor_factor = pauli_operator[0] + 1
if not is_zero:
linear_operator_diagonal += qubit_operator.terms[qubit_term] * numpy.concatenate(vecs)
return linear_operator_diagonal
def jw_configuration_state(occupied_orbitals, n_qubits):
"""Function to produce a basis state in the occupation number basis.
Args:
occupied_orbitals(list): A list of integers representing the indices
of the occupied orbitals in the desired basis state
n_qubits(int): The total number of qubits
Returns:
basis_vector(sparse): The basis state as a sparse matrix
"""
one_index = sum(2 ** (n_qubits - 1 - i) for i in occupied_orbitals)
basis_vector = numpy.zeros(2**n_qubits, dtype=float)
basis_vector[one_index] = 1
return basis_vector
def jw_hartree_fock_state(n_electrons, n_orbitals):
"""Function to produce Hartree-Fock state in JW representation."""
hartree_fock_state = jw_configuration_state(range(n_electrons), n_orbitals)
return hartree_fock_state
def jw_number_indices(n_electrons, n_qubits):
"""Return the indices for n_electrons in n_qubits under JW encoding
Calculates the indices for all possible arrangements of n-electrons
within n-qubit orbitals when a Jordan-Wigner encoding is used.
Useful for restricting generic operators or vectors to a particular
particle number space when desired
Args:
n_electrons(int): Number of particles to restrict the operator to
n_qubits(int): Number of qubits defining the total state
Returns:
indices(list): List of indices in a 2^n length array that indicate
the indices of constant particle number within n_qubits
in a Jordan-Wigner encoding.
"""
occupations = itertools.combinations(range(n_qubits), n_electrons)
indices = [sum([2**n for n in occupation]) for occupation in occupations]
return indices
def jw_sz_indices(sz_value, n_qubits, n_electrons=None, up_index=up_index, down_index=down_index):
r"""Return the indices of basis vectors with fixed Sz under JW encoding.
The returned indices label computational basis vectors which lie within
the corresponding eigenspace of the Sz operator,
$$
\begin{align}
S^{z} = \frac{1}{2}\sum_{i = 1}^{n}(n_{i, \alpha} - n_{i, \beta})
\end{align}
$$
Args:
sz_value(float): Desired Sz value. Should be an integer or
half-integer.
n_qubits(int): Number of qubits defining the total state
n_electrons(int, optional): Number of particles to restrict the
operator to, if such a restriction is desired
up_index (Callable, optional): Function that maps a spatial index
to the index of the corresponding up site
down_index (Callable, optional): Function that maps a spatial index
to the index of the corresponding down site
Returns:
indices(list): The list of indices
"""
if n_qubits % 2 != 0:
raise ValueError('Number of qubits must be even')
if not (2.0 * sz_value).is_integer():
raise ValueError('Sz value must be an integer or half-integer')
n_sites = n_qubits // 2
sz_integer = int(2.0 * sz_value)
indices = []
if n_electrons is not None:
# Particle number is fixed, so the number of spin-up electrons
# (as well as the number of spin-down electrons) is fixed
if (n_electrons + sz_integer) % 2 != 0 or n_electrons < abs(sz_integer):
raise ValueError('The specified particle number and sz value are ' 'incompatible.')
num_up = (n_electrons + sz_integer) // 2
num_down = n_electrons - num_up
up_occupations = itertools.combinations(range(n_sites), num_up)
down_occupations = list(itertools.combinations(range(n_sites), num_down))
# Each arrangement of up spins can be paired with an arrangement
# of down spins
for up_occupation in up_occupations:
up_occupation = [up_index(index) for index in up_occupation]
for down_occupation in down_occupations:
down_occupation = [down_index(index) for index in down_occupation]
occupation = up_occupation + down_occupation
indices.append(sum(2 ** (n_qubits - 1 - k) for k in occupation))
else:
# Particle number is not fixed
if sz_integer < 0:
# There are more down spins than up spins
more_map = down_index
less_map = up_index
else:
# There are at least as many up spins as down spins
more_map = up_index
less_map = down_index
for n in range(abs(sz_integer), n_sites + 1):
# Choose n of the 'more' spin and n - abs(sz_integer) of the
# 'less' spin
more_occupations = itertools.combinations(range(n_sites), n)
less_occupations = list(itertools.combinations(range(n_sites), n - abs(sz_integer)))
# Each arrangement of the 'more' spins can be paired with an
# arrangement of the 'less' spin
for more_occupation in more_occupations:
more_occupation = [more_map(index) for index in more_occupation]
for less_occupation in less_occupations:
less_occupation = [less_map(index) for index in less_occupation]
occupation = more_occupation + less_occupation
indices.append(sum(2 ** (n_qubits - 1 - k) for k in occupation))
return indices
def jw_number_restrict_operator(operator, n_electrons, n_qubits=None):
"""Restrict a Jordan-Wigner encoded operator to a given particle number
Args:
sparse_operator(ndarray or sparse): Numpy operator acting on
the space of n_qubits.
n_electrons(int): Number of particles to restrict the operator to
n_qubits(int): Number of qubits defining the total state
Returns:
new_operator(ndarray or sparse): Numpy operator restricted to
acting on states with the same particle number.
"""
if n_qubits is None:
n_qubits = int(numpy.log2(operator.shape[0]))
select_indices = jw_number_indices(n_electrons, n_qubits)
return operator[numpy.ix_(select_indices, select_indices)]
def jw_sz_restrict_operator(
operator, sz_value, n_electrons=None, n_qubits=None, up_index=up_index, down_index=down_index
):
"""Restrict a Jordan-Wigner encoded operator to a given Sz value
Args:
operator(ndarray or sparse): Numpy operator acting on
the space of n_qubits.
sz_value(float): Desired Sz value. Should be an integer or
half-integer.
n_electrons(int, optional): Number of particles to restrict the
operator to, if such a restriction is desired.
n_qubits(int, optional): Number of qubits defining the total state
up_index (Callable, optional): Function that maps a spatial index
to the index of the corresponding up site
down_index (Callable, optional): Function that maps a spatial index
to the index of the corresponding down site
Returns:
new_operator(ndarray or sparse): Numpy operator restricted to
acting on states with the desired Sz value.
"""
if n_qubits is None:
n_qubits = int(numpy.log2(operator.shape[0]))
select_indices = jw_sz_indices(
sz_value, n_qubits, n_electrons=n_electrons, up_index=up_index, down_index=down_index
)
return operator[numpy.ix_(select_indices, select_indices)]
def jw_number_restrict_state(state, n_electrons, n_qubits=None):
"""Restrict a Jordan-Wigner encoded state to a given particle number
Args:
state(ndarray or sparse): Numpy vector in
the space of n_qubits.
n_electrons(int): Number of particles to restrict the state to
n_qubits(int): Number of qubits defining the total state
Returns:
new_operator(ndarray or sparse): Numpy vector restricted to
states with the same particle number. May not be normalized.
"""
if n_qubits is None:
n_qubits = int(numpy.log2(state.shape[0]))
select_indices = jw_number_indices(n_electrons, n_qubits)
return state[select_indices]
def jw_sz_restrict_state(
state, sz_value, n_electrons=None, n_qubits=None, up_index=up_index, down_index=down_index
):
"""Restrict a Jordan-Wigner encoded state to a given Sz value
Args:
state(ndarray or sparse): Numpy vector in
the space of n_qubits.
sz_value(float): Desired Sz value. Should be an integer or
half-integer.
n_electrons(int, optional): Number of particles to restrict the
operator to, if such a restriction is desired.
n_qubits(int, optional): Number of qubits defining the total state
up_index (Callable, optional): Function that maps a spatial index
to the index of the corresponding up site
down_index (Callable, optional): Function that maps a spatial index
to the index of the corresponding down site
Returns:
new_operator(ndarray or sparse): Numpy vector restricted to
states with the desired Sz value. May not be normalized.
"""
if n_qubits is None:
n_qubits = int(numpy.log2(state.shape[0]))
select_indices = jw_sz_indices(
sz_value, n_qubits, n_electrons=n_electrons, up_index=up_index, down_index=down_index
)
return state[select_indices]
def jw_get_ground_state_at_particle_number(sparse_operator, particle_number):
"""Compute ground energy and state at a specified particle number.
Assumes the Jordan-Wigner transform. The input operator should be Hermitian
and particle-number-conserving.
Args:
sparse_operator(sparse): A Jordan-Wigner encoded sparse matrix.
particle_number(int): The particle number at which to compute the ground
energy and states
Returns:
ground_energy(float): The lowest eigenvalue of sparse_operator within
the eigenspace of the number operator corresponding to
particle_number.
ground_state(ndarray): The ground state at the particle number
"""
n_qubits = int(numpy.log2(sparse_operator.shape[0]))
# Get the operator restricted to the subspace of the desired particle number
restricted_operator = jw_number_restrict_operator(sparse_operator, particle_number, n_qubits)
# Compute eigenvalues and eigenvectors
if restricted_operator.shape[0] - 1 <= 1:
# Restricted operator too small for sparse eigensolver
dense_restricted_operator = restricted_operator.toarray()
eigvals, eigvecs = numpy.linalg.eigh(dense_restricted_operator)
else:
eigvals, eigvecs = scipy.sparse.linalg.eigsh(restricted_operator, k=1, which='SA')
# Expand the state
state = eigvecs[:, 0]
expanded_state = numpy.zeros(2**n_qubits, dtype=complex)
expanded_state[jw_number_indices(particle_number, n_qubits)] = state
return eigvals[0], expanded_state
def jw_sparse_givens_rotation(i, j, theta, phi, n_qubits):
"""Return the matrix (acting on a full wavefunction) that performs a
Givens rotation of modes i and j in the Jordan-Wigner encoding."""
if j != i + 1:
raise ValueError('Only adjacent modes can be rotated.')
if j > n_qubits - 1:
raise ValueError('Too few qubits requested.')
cosine = numpy.cos(theta)
sine = numpy.sin(theta)
phase = numpy.exp(1.0j * phi)
# Create the two-qubit rotation matrix
rotation_matrix = scipy.sparse.csc_matrix(
(
[1.0, phase * cosine, -phase * sine, sine, cosine, phase],
((0, 1, 1, 2, 2, 3), (0, 1, 2, 1, 2, 3)),
),
shape=(4, 4),
dtype=numpy.complex128,
)
# Initialize identity operators
left_eye = scipy.sparse.eye(2**i, format='csc')
right_eye = scipy.sparse.eye(2 ** (n_qubits - 1 - j), format='csc')
# Construct the matrix and return
givens_matrix = kronecker_operators([left_eye, rotation_matrix, right_eye])
return givens_matrix
def jw_sparse_particle_hole_transformation_last_mode(n_qubits):
"""Return the matrix (acting on a full wavefunction) that performs a
particle-hole transformation on the last mode in the Jordan-Wigner
encoding.
"""
left_eye = scipy.sparse.eye(2 ** (n_qubits - 1), format='csc')
return kronecker_operators([left_eye, pauli_matrix_map['X']])
def get_density_matrix(states, probabilities):
n_qubits = states[0].shape[0]
density_matrix = scipy.sparse.csc_matrix((n_qubits, n_qubits), dtype=complex)
for state, probability in zip(states, probabilities):
state = scipy.sparse.csc_matrix(state.reshape((len(state), 1)))
density_matrix = density_matrix + probability * state * state.getH()
return density_matrix
def get_ground_state(sparse_operator, initial_guess=None):
"""Compute lowest eigenvalue and eigenstate.
Args:
sparse_operator (LinearOperator): Operator to find the ground state of.
initial_guess (ndarray): Initial guess for ground state. A good
guess dramatically reduces the cost required to converge.
Returns
-------
eigenvalue:
The lowest eigenvalue, a float.
eigenstate:
The lowest eigenstate in scipy.sparse csc format.
"""
values, vectors = scipy.sparse.linalg.eigsh(
sparse_operator, k=1, v0=initial_guess, which='SA', maxiter=1e7
)
order = numpy.argsort(values)
values = values[order]
vectors = vectors[:, order]
eigenvalue = values[0]
eigenstate = vectors[:, 0]
return eigenvalue, eigenstate.T
def eigenspectrum(operator, n_qubits=None):
"""Compute the eigenspectrum of an operator.
WARNING: This function has cubic runtime in dimension of
Hilbert space operator, which might be exponential.
NOTE: This function does not currently support
QuadOperator and BosonOperator.
Args:
operator: QubitOperator, InteractionOperator, FermionOperator,
PolynomialTensor, or InteractionRDM.
n_qubits (int): number of qubits/modes in operator. if None, will
be counted.
Returns:
spectrum: dense numpy array of floats giving eigenspectrum.
"""
if isinstance(operator, (QuadOperator, BosonOperator)):
raise TypeError('Operator of invalid type.')
sparse_operator = get_sparse_operator(operator, n_qubits)
spectrum = sparse_eigenspectrum(sparse_operator)
return spectrum
def sparse_eigenspectrum(sparse_operator):
"""Perform a dense diagonalization.
Returns:
eigenspectrum: The lowest eigenvalues in a numpy array.
"""
dense_operator = sparse_operator.todense()
if is_hermitian(sparse_operator):
eigenspectrum = numpy.linalg.eigvalsh(dense_operator)
else:
eigenspectrum = numpy.linalg.eigvals(dense_operator)
return numpy.sort(eigenspectrum)
def expectation(operator, state):
"""Compute the expectation value of an operator with a state.
Args:
operator(scipy.sparse.spmatrix or scipy.sparse.linalg.LinearOperator):
The operator whose expectation value is desired.
state(numpy.ndarray or scipy.sparse.spmatrix): A numpy array
representing a pure state or a sparse matrix representing a density
matrix. If `operator` is a LinearOperator, then this must be a
numpy array.
Returns:
A complex number giving the expectation value.
Raises:
ValueError: Input state has invalid format.
"""
if isinstance(state, scipy.sparse.spmatrix):
# Handle density matrix.
if isinstance(operator, scipy.sparse.linalg.LinearOperator):
raise ValueError(
'Taking the expectation of a LinearOperator with '
'a density matrix is not supported.'
)
product = state * operator
expectation = numpy.sum(product.diagonal())
elif isinstance(state, numpy.ndarray):
# Handle state vector.
if len(state.shape) == 1:
# Row vector
expectation = numpy.dot(numpy.conjugate(state), operator * state)
else:
# Column vector
expectation = numpy.dot(numpy.conjugate(state.T), operator * state)[0, 0]
else:
# Handle exception.
raise ValueError('Input state must be a numpy array or a sparse matrix.')
# Return.
return expectation
def variance(operator, state):
"""Compute variance of operator with a state.
Args:
operator(scipy.sparse.spmatrix or scipy.sparse.linalg.LinearOperator):
The operator whose expectation value is desired.
state(numpy.ndarray or scipy.sparse.spmatrix): A numpy array
representing a pure state or a sparse matrix representing a density
matrix.
Returns:
A complex number giving the variance.
Raises:
ValueError: Input state has invalid format.
"""
return expectation(operator**2, state) - expectation(operator, state) ** 2
def expectation_computational_basis_state(operator, computational_basis_state):
"""Compute expectation value of operator with a state.
Args:
operator: Qubit or FermionOperator to evaluate expectation value of.
If operator is a FermionOperator, it must be normal-ordered.
computational_basis_state (scipy.sparse vector / list): normalized
computational basis state (if scipy.sparse vector), or list of
occupied orbitals.
Returns:
A real float giving expectation value.
Raises:
TypeError: Incorrect operator or state type.
"""
if isinstance(operator, QubitOperator):
raise NotImplementedError('Not yet implemented for QubitOperators.')
if not isinstance(operator, FermionOperator):
raise TypeError('operator must be a FermionOperator.')
occupied_orbitals = computational_basis_state
if not isinstance(occupied_orbitals, list):
computational_basis_state_index = occupied_orbitals.nonzero()[0][0]
occupied_orbitals = [digit == '1' for digit in bin(computational_basis_state_index)[2:]][
::-1
]
expectation_value = operator.terms.get((), 0.0)
for i in range(len(occupied_orbitals)):
if occupied_orbitals[i]:
expectation_value += operator.terms.get(((i, 1), (i, 0)), 0.0)
for j in range(i + 1, len(occupied_orbitals)):
expectation_value -= operator.terms.get(((j, 1), (i, 1), (j, 0), (i, 0)), 0.0)
return expectation_value
def expectation_db_operator_with_pw_basis_state(
operator, plane_wave_occ_orbitals, n_spatial_orbitals, grid, spinless
):
"""Compute expectation value of a dual basis operator with a plane
wave computational basis state.
Args:
operator: Dual-basis representation of FermionOperator to evaluate
expectation value of. Can have at most 3-body terms.
plane_wave_occ_orbitals (list): list of occupied plane-wave orbitals.
n_spatial_orbitals (int): Number of spatial orbitals.
grid (openfermion.utils.Grid): The grid used for discretization.
spinless (bool): Whether the system is spinless.
Returns:
A real float giving the expectation value.
"""
expectation_value = operator.terms.get((), 0.0)
for single_action, coefficient in operator.terms.items():
if len(single_action) == 2:
expectation_value += coefficient * (
expectation_one_body_db_operator_computational_basis_state(
single_action, plane_wave_occ_orbitals, grid, spinless
)
/ n_spatial_orbitals
)
elif len(single_action) == 4:
expectation_value += coefficient * (
expectation_two_body_db_operator_computational_basis_state(
single_action, plane_wave_occ_orbitals, grid, spinless
)
/ n_spatial_orbitals**2
)
elif len(single_action) == 6:
expectation_value += coefficient * (
expectation_three_body_db_operator_computational_basis_state(
single_action, plane_wave_occ_orbitals, grid, spinless
)
/ n_spatial_orbitals**3
)
return expectation_value
def expectation_one_body_db_operator_computational_basis_state(
dual_basis_action, plane_wave_occ_orbitals, grid, spinless
):
"""Compute expectation value of a 1-body dual-basis operator with a
plane wave computational basis state.
Args:
dual_basis_action: Dual-basis action of FermionOperator to
evaluate expectation value of.
plane_wave_occ_orbitals (list): list of occupied plane-wave orbitals.
grid (openfermion.utils.Grid): The grid used for discretization.
spinless (bool): Whether the system is spinless.
Returns:
A real float giving the expectation value.
"""
expectation_value = 0.0
r_p = grid.position_vector(grid.grid_indices(dual_basis_action[0][0], spinless))
r_q = grid.position_vector(grid.grid_indices(dual_basis_action[1][0], spinless))
for orbital in plane_wave_occ_orbitals:
# If there's spin, p and q have to have the same parity (spin),
# and the new orbital has to have the same spin as these.
k_orbital = grid.momentum_vector(grid.grid_indices(orbital, spinless))
# The Fourier transform is spin-conserving. This means that p, q,
# and the new orbital all have to have the same spin (parity).
if spinless or (dual_basis_action[0][0] % 2 == dual_basis_action[1][0] % 2 == orbital % 2):
expectation_value += numpy.exp(-1j * k_orbital.dot(r_p - r_q))
return expectation_value
def expectation_two_body_db_operator_computational_basis_state(
dual_basis_action, plane_wave_occ_orbitals, grid, spinless
):
"""Compute expectation value of a 2-body dual-basis operator with a
plane wave computational basis state.
Args:
dual_basis_action: Dual-basis action of FermionOperator to
evaluate expectation value of.
plane_wave_occ_orbitals (list): list of occupied plane-wave orbitals.
grid (openfermion.utils.Grid): The grid used for discretization.
spinless (bool): Whether the system is spinless.
Returns:
A float giving the expectation value.
"""
expectation_value = 0.0
r = {}
for i in range(4):
r[i] = grid.position_vector(grid.grid_indices(dual_basis_action[i][0], spinless))
rr = {}
k_map = {}
for i in range(2):
rr[i] = {}
k_map[i] = {}
for j in range(2, 4):
rr[i][j] = r[i] - r[j]
k_map[i][j] = {}
# Pre-computations.
for o in plane_wave_occ_orbitals:
k = grid.momentum_vector(grid.grid_indices(o, spinless))
for i in range(2):
for j in range(2, 4):
k_map[i][j][o] = k.dot(rr[i][j])
for orbital1 in plane_wave_occ_orbitals:
k1ac = k_map[0][2][orbital1]
k1ad = k_map[0][3][orbital1]
for orbital2 in plane_wave_occ_orbitals:
if orbital1 != orbital2:
k2bc = k_map[1][2][orbital2]
k2bd = k_map[1][3][orbital2]
# The Fourier transform is spin-conserving. This means that
# the parity of the orbitals involved in the transition must
# be the same.
if spinless or (
(dual_basis_action[0][0] % 2 == dual_basis_action[3][0] % 2 == orbital1 % 2)
and (dual_basis_action[1][0] % 2 == dual_basis_action[2][0] % 2 == orbital2 % 2)
):
value = numpy.exp(-1j * (k1ad + k2bc))
# Add because it came from two anti-commutations.
expectation_value += value
# The Fourier transform is spin-conserving. This means that
# the parity of the orbitals involved in the transition must
# be the same.
if spinless or (
(dual_basis_action[0][0] % 2 == dual_basis_action[2][0] % 2 == orbital1 % 2)
and (dual_basis_action[1][0] % 2 == dual_basis_action[3][0] % 2 == orbital2 % 2)
):
value = numpy.exp(-1j * (k1ac + k2bd))
# Subtract because it came from a single anti-commutation.
expectation_value -= value
return expectation_value
def expectation_three_body_db_operator_computational_basis_state(
dual_basis_action, plane_wave_occ_orbitals, grid, spinless
):
"""Compute expectation value of a 3-body dual-basis operator with a
plane wave computational basis state.
Args:
dual_basis_action: Dual-basis action of FermionOperator to
evaluate expectation value of.
plane_wave_occ_orbitals (list): list of occupied plane-wave orbitals.
grid (openfermion.utils.Grid): The grid used for discretization.
spinless (bool): Whether the system is spinless.
Returns:
A float giving the expectation value.
"""
expectation_value = 0.0
r = {}
for i in range(6):
r[i] = grid.position_vector(grid.grid_indices(dual_basis_action[i][0], spinless))
rr = {}
k_map = {}
for i in range(3):
rr[i] = {}
k_map[i] = {}
for j in range(3, 6):
rr[i][j] = r[i] - r[j]
k_map[i][j] = {}
# Pre-computations.
for o in plane_wave_occ_orbitals:
k = grid.momentum_vector(grid.grid_indices(o, spinless))
for i in range(3):
for j in range(3, 6):
k_map[i][j][o] = k.dot(rr[i][j])
for orbital1 in plane_wave_occ_orbitals:
k1ad = k_map[0][3][orbital1]
k1ae = k_map[0][4][orbital1]
k1af = k_map[0][5][orbital1]
for orbital2 in plane_wave_occ_orbitals:
if orbital1 != orbital2:
k2bd = k_map[1][3][orbital2]
k2be = k_map[1][4][orbital2]
k2bf = k_map[1][5][orbital2]
for orbital3 in plane_wave_occ_orbitals:
if orbital1 != orbital3 and orbital2 != orbital3:
k3cd = k_map[2][3][orbital3]
k3ce = k_map[2][4][orbital3]
k3cf = k_map[2][5][orbital3]
# Handle \delta_{ad} \delta_{bf} \delta_{ce} after FT.
# The Fourier transform is spin-conserving.
if spinless or (
(
dual_basis_action[0][0] % 2
== dual_basis_action[3][0] % 2
== orbital1 % 2
)
and (
dual_basis_action[1][0] % 2
== dual_basis_action[5][0] % 2
== orbital2 % 2
)
and (
dual_basis_action[2][0] % 2
== dual_basis_action[4][0] % 2
== orbital3 % 2
)
):
expectation_value += numpy.exp(-1j * (k1ad + k2bf + k3ce))
# Handle -\delta_{ad} \delta_{be} \delta_{cf} after FT.
# The Fourier transform is spin-conserving.
if spinless or (
(
dual_basis_action[0][0] % 2
== dual_basis_action[3][0] % 2
== orbital1 % 2
)
and (
dual_basis_action[1][0] % 2
== dual_basis_action[4][0] % 2
== orbital2 % 2
)
and (
dual_basis_action[2][0] % 2
== dual_basis_action[5][0] % 2
== orbital3 % 2
)
):
expectation_value -= numpy.exp(-1j * (k1ad + k2be + k3cf))
# Handle -\delta_{ae} \delta_{bf} \delta_{cd} after FT.
# The Fourier transform is spin-conserving.
if spinless or (
(
dual_basis_action[0][0] % 2
== dual_basis_action[4][0] % 2
== orbital1 % 2
)
and (
dual_basis_action[1][0] % 2
== dual_basis_action[5][0] % 2
== orbital2 % 2