-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathsimulator_sse.h
More file actions
864 lines (715 loc) · 25.5 KB
/
simulator_sse.h
File metadata and controls
864 lines (715 loc) · 25.5 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
// Copyright 2019 Google LLC. All Rights Reserved.
//
// 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
//
// https://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.
#ifndef SIMULATOR_SSE_H_
#define SIMULATOR_SSE_H_
#include <smmintrin.h>
#include <complex>
#include <cstdint>
#include <functional>
#include <vector>
#include "simulator.h"
#include "statespace_sse.h"
namespace qsim {
/**
* Quantum circuit simulator with SSE vectorization.
*/
template <typename For>
class SimulatorSSE final : public SimulatorBase {
public:
using StateSpace = StateSpaceSSE<For>;
using State = typename StateSpace::State;
using fp_type = typename StateSpace::fp_type;
template <typename... ForArgs>
explicit SimulatorSSE(ForArgs&&... args) : for_(args...) {}
/**
* Applies a gate using SSE instructions.
* @param qs Indices of the qubits affected by this gate.
* @param matrix Matrix representation of the gate to be applied.
* @param state The state of the system, to be updated by this method.
*/
void ApplyGate(const std::vector<unsigned>& qs,
const fp_type* matrix, State& state) const {
// Assume qs[0] < qs[1] < qs[2] < ... .
switch (qs.size()) {
case 0:
ApplyGateH<0>(qs, matrix, state);
break;
case 1:
if (qs[0] > 1) {
ApplyGateH<1>(qs, matrix, state);
} else {
ApplyGateL<0, 1>(qs, matrix, state);
}
break;
case 2:
if (qs[0] > 1) {
ApplyGateH<2>(qs, matrix, state);
} else if (qs[1] > 1) {
ApplyGateL<1, 1>(qs, matrix, state);
} else {
ApplyGateL<0, 2>(qs, matrix, state);
}
break;
case 3:
if (qs[0] > 1) {
ApplyGateH<3>(qs, matrix, state);
} else if (qs[1] > 1) {
ApplyGateL<2, 1>(qs, matrix, state);
} else {
ApplyGateL<1, 2>(qs, matrix, state);
}
break;
case 4:
if (qs[0] > 1) {
ApplyGateH<4>(qs, matrix, state);
} else if (qs[1] > 1) {
ApplyGateL<3, 1>(qs, matrix, state);
} else {
ApplyGateL<2, 2>(qs, matrix, state);
}
break;
case 5:
if (qs[0] > 1) {
ApplyGateH<5>(qs, matrix, state);
} else if (qs[1] > 1) {
ApplyGateL<4, 1>(qs, matrix, state);
} else {
ApplyGateL<3, 2>(qs, matrix, state);
}
break;
case 6:
if (qs[0] > 1) {
ApplyGateH<6>(qs, matrix, state);
} else if (qs[1] > 1) {
ApplyGateL<5, 1>(qs, matrix, state);
} else {
ApplyGateL<4, 2>(qs, matrix, state);
}
break;
default:
// Not implemented.
break;
}
}
/**
* Applies a controlled gate using SSE instructions.
* @param qs Indices of the qubits affected by this gate.
* @param cqs Indices of control qubits.
* @param cvals Bit mask of control qubit values.
* @param matrix Matrix representation of the gate to be applied.
* @param state The state of the system, to be updated by this method.
*/
void ApplyControlledGate(const std::vector<unsigned>& qs,
const std::vector<unsigned>& cqs, uint64_t cvals,
const fp_type* matrix, State& state) const {
// Assume qs[0] < qs[1] < qs[2] < ... .
// Assume cqs[0] < cqs[1] < cqs[2] < ... .
if (cqs.size() == 0) {
ApplyGate(qs, matrix, state);
return;
}
switch (qs.size()) {
case 0:
if (cqs[0] > 1) {
ApplyControlledGateHH<0>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateHL<0>(qs, cqs, cvals, matrix, state);
}
break;
case 1:
if (qs[0] > 1) {
if (cqs[0] > 1) {
ApplyControlledGateHH<1>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateHL<1>(qs, cqs, cvals, matrix, state);
}
} else {
if (cqs[0] > 1) {
ApplyControlledGateL<0, 1, 1>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateL<0, 1, 0>(qs, cqs, cvals, matrix, state);
}
}
break;
case 2:
if (qs[0] > 1) {
if (cqs[0] > 1) {
ApplyControlledGateHH<2>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateHL<2>(qs, cqs, cvals, matrix, state);
}
} else if (qs[1] > 1) {
if (cqs[0] > 1) {
ApplyControlledGateL<1, 1, 1>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateL<1, 1, 0>(qs, cqs, cvals, matrix, state);
}
} else {
if (cqs[0] > 1) {
ApplyControlledGateL<0, 2, 1>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateL<0, 2, 0>(qs, cqs, cvals, matrix, state);
}
}
break;
case 3:
if (qs[0] > 1) {
if (cqs[0] > 1) {
ApplyControlledGateHH<3>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateHL<3>(qs, cqs, cvals, matrix, state);
}
} else if (qs[1] > 1) {
if (cqs[0] > 1) {
ApplyControlledGateL<2, 1, 1>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateL<2, 1, 0>(qs, cqs, cvals, matrix, state);
}
} else {
if (cqs[0] > 1) {
ApplyControlledGateL<1, 2, 1>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateL<1, 2, 0>(qs, cqs, cvals, matrix, state);
}
}
break;
case 4:
if (qs[0] > 1) {
if (cqs[0] > 1) {
ApplyControlledGateHH<4>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateHL<4>(qs, cqs, cvals, matrix, state);
}
} else if (qs[1] > 1) {
if (cqs[0] > 1) {
ApplyControlledGateL<3, 1, 1>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateL<3, 1, 0>(qs, cqs, cvals, matrix, state);
}
} else {
if (cqs[0] > 1) {
ApplyControlledGateL<2, 2, 1>(qs, cqs, cvals, matrix, state);
} else {
ApplyControlledGateL<2, 2, 0>(qs, cqs, cvals, matrix, state);
}
}
break;
default:
// Not implemented.
break;
}
}
/**
* Computes the expectation value of an operator using SSE instructions.
* @param qs Indices of the qubits the operator acts on.
* @param matrix The operator matrix.
* @param state The state of the system.
* @return The computed expectation value.
*/
std::complex<double> ExpectationValue(const std::vector<unsigned>& qs,
const fp_type* matrix,
const State& state) const {
// Assume qs[0] < qs[1] < qs[2] < ... .
switch (qs.size()) {
case 1:
if (qs[0] > 1) {
return ExpectationValueH<1>(qs, matrix, state);
} else {
return ExpectationValueL<0, 1>(qs, matrix, state);
}
break;
case 2:
if (qs[0] > 1) {
return ExpectationValueH<2>(qs, matrix, state);
} else if (qs[1] > 1) {
return ExpectationValueL<1, 1>(qs, matrix, state);
} else {
return ExpectationValueL<0, 2>(qs, matrix, state);
}
break;
case 3:
if (qs[0] > 1) {
return ExpectationValueH<3>(qs, matrix, state);
} else if (qs[1] > 1) {
return ExpectationValueL<2, 1>(qs, matrix, state);
} else {
return ExpectationValueL<1, 2>(qs, matrix, state);
}
break;
case 4:
if (qs[0] > 1) {
return ExpectationValueH<4>(qs, matrix, state);
} else if (qs[1] > 1) {
return ExpectationValueL<3, 1>(qs, matrix, state);
} else {
return ExpectationValueL<2, 2>(qs, matrix, state);
}
break;
case 5:
if (qs[0] > 1) {
return ExpectationValueH<5>(qs, matrix, state);
} else if (qs[1] > 1) {
return ExpectationValueL<4, 1>(qs, matrix, state);
} else {
return ExpectationValueL<3, 2>(qs, matrix, state);
}
break;
case 6:
if (qs[0] > 1) {
return ExpectationValueH<6>(qs, matrix, state);
} else if (qs[1] > 1) {
return ExpectationValueL<5, 1>(qs, matrix, state);
} else {
return ExpectationValueL<4, 2>(qs, matrix, state);
}
break;
default:
// Not implemented.
break;
}
return 0;
}
/**
* @return The size of SIMD register if applicable.
*/
static unsigned SIMDRegisterSize() {
return 4;
}
private:
template <unsigned H>
void ApplyGateH(const std::vector<unsigned>& qs,
const fp_type* matrix, State& state) const {
auto f = [](unsigned n, unsigned m, uint64_t i, const fp_type* v,
const uint64_t* ms, const uint64_t* xss, fp_type* rstate) {
constexpr unsigned hsize = 1 << H;
__m128 ru, iu, rn, in;
__m128 rs[hsize], is[hsize];
i *= 4;
uint64_t ii = i & ms[0];
for (unsigned j = 1; j <= H; ++j) {
i *= 2;
ii |= i & ms[j];
}
auto p0 = rstate + 2 * ii;
for (unsigned k = 0; k < hsize; ++k) {
rs[k] = _mm_load_ps(p0 + xss[k]);
is[k] = _mm_load_ps(p0 + xss[k] + 4);
}
uint64_t j = 0;
for (unsigned k = 0; k < hsize; ++k) {
ru = _mm_set1_ps(v[j]);
iu = _mm_set1_ps(v[j + 1]);
rn = _mm_mul_ps(rs[0], ru);
in = _mm_mul_ps(rs[0], iu);
rn = _mm_sub_ps(rn, _mm_mul_ps(is[0], iu));
in = _mm_add_ps(in, _mm_mul_ps(is[0], ru));
j += 2;
for (unsigned l = 1; l < hsize; ++l) {
ru = _mm_set1_ps(v[j]);
iu = _mm_set1_ps(v[j + 1]);
rn = _mm_add_ps(rn, _mm_mul_ps(rs[l], ru));
in = _mm_add_ps(in, _mm_mul_ps(rs[l], iu));
rn = _mm_sub_ps(rn, _mm_mul_ps(is[l], iu));
in = _mm_add_ps(in, _mm_mul_ps(is[l], ru));
j += 2;
}
_mm_store_ps(p0 + xss[k], rn);
_mm_store_ps(p0 + xss[k] + 4, in);
}
};
uint64_t ms[H + 1];
uint64_t xss[1 << H];
FillIndices<H>(state.num_qubits(), qs, ms, xss);
unsigned k = 2 + H;
unsigned n = state.num_qubits() > k ? state.num_qubits() - k : 0;
uint64_t size = uint64_t{1} << n;
for_.Run(size, f, matrix, ms, xss, state.get());
}
template <unsigned H, unsigned L>
void ApplyGateL(const std::vector<unsigned>& qs,
const fp_type* matrix, State& state) const {
auto f = [](unsigned n, unsigned m, uint64_t i, const __m128* w,
const uint64_t* ms, const uint64_t* xss,
unsigned q0, fp_type* rstate) {
constexpr unsigned gsize = 1 << (H + L);
constexpr unsigned hsize = 1 << H;
constexpr unsigned lsize = 1 << L;
__m128 rn, in;
__m128 rs[gsize], is[gsize];
i *= 4;
uint64_t ii = i & ms[0];
for (unsigned j = 1; j <= H; ++j) {
i *= 2;
ii |= i & ms[j];
}
auto p0 = rstate + 2 * ii;
for (unsigned k = 0; k < hsize; ++k) {
unsigned k2 = lsize * k;
rs[k2] = _mm_load_ps(p0 + xss[k]);
is[k2] = _mm_load_ps(p0 + xss[k] + 4);
if (L == 1) {
rs[k2 + 1] = q0 == 0 ? _mm_shuffle_ps(rs[k2], rs[k2], 177)
: _mm_shuffle_ps(rs[k2], rs[k2], 78);
is[k2 + 1] = q0 == 0 ? _mm_shuffle_ps(is[k2], is[k2], 177)
: _mm_shuffle_ps(is[k2], is[k2], 78);
} else if (L == 2) {
rs[k2 + 1] = _mm_shuffle_ps(rs[k2], rs[k2], 57);
is[k2 + 1] = _mm_shuffle_ps(is[k2], is[k2], 57);
rs[k2 + 2] = _mm_shuffle_ps(rs[k2], rs[k2], 78);
is[k2 + 2] = _mm_shuffle_ps(is[k2], is[k2], 78);
rs[k2 + 3] = _mm_shuffle_ps(rs[k2], rs[k2], 147);
is[k2 + 3] = _mm_shuffle_ps(is[k2], is[k2], 147);
}
}
uint64_t j = 0;
for (unsigned k = 0; k < hsize; ++k) {
rn = _mm_mul_ps(rs[0], w[j]);
in = _mm_mul_ps(rs[0], w[j + 1]);
rn = _mm_sub_ps(rn, _mm_mul_ps(is[0], w[j + 1]));
in = _mm_add_ps(in, _mm_mul_ps(is[0], w[j]));
j += 2;
for (unsigned l = 1; l < gsize; ++l) {
rn = _mm_add_ps(rn, _mm_mul_ps(rs[l], w[j]));
in = _mm_add_ps(in, _mm_mul_ps(rs[l], w[j + 1]));
rn = _mm_sub_ps(rn, _mm_mul_ps(is[l], w[j + 1]));
in = _mm_add_ps(in, _mm_mul_ps(is[l], w[j]));
j += 2;
}
_mm_store_ps(p0 + xss[k], rn);
_mm_store_ps(p0 + xss[k] + 4, in);
}
};
uint64_t ms[H + 1];
uint64_t xss[1 << H];
__m128 w[1 << (1 + 2 * H + L)];
auto m = GetMasks11<L>(qs);
FillIndices<H, L>(state.num_qubits(), qs, ms, xss);
FillMatrix<H, L, 2>(m.qmaskl, matrix, (fp_type*) w);
unsigned k = 2 + H;
unsigned n = state.num_qubits() > k ? state.num_qubits() - k : 0;
uint64_t size = uint64_t{1} << n;
for_.Run(size, f, w, ms, xss, qs[0], state.get());
}
template <unsigned H>
void ApplyControlledGateHH(const std::vector<unsigned>& qs,
const std::vector<unsigned>& cqs, uint64_t cvals,
const fp_type* matrix, State& state) const {
auto f = [](unsigned n, unsigned m, uint64_t i, const fp_type* v,
const uint64_t* ms, const uint64_t* xss, uint64_t cvalsh,
uint64_t cmaskh, fp_type* rstate) {
constexpr unsigned hsize = 1 << H;
__m128 ru, iu, rn, in;
__m128 rs[hsize], is[hsize];
i *= 4;
uint64_t ii = i & ms[0];
for (unsigned j = 1; j <= H; ++j) {
i *= 2;
ii |= i & ms[j];
}
if ((ii & cmaskh) != cvalsh) return;
auto p0 = rstate + 2 * ii;
for (unsigned k = 0; k < hsize; ++k) {
rs[k] = _mm_load_ps(p0 + xss[k]);
is[k] = _mm_load_ps(p0 + xss[k] + 4);
}
uint64_t j = 0;
for (unsigned k = 0; k < hsize; ++k) {
ru = _mm_set1_ps(v[j]);
iu = _mm_set1_ps(v[j + 1]);
rn = _mm_mul_ps(rs[0], ru);
in = _mm_mul_ps(rs[0], iu);
rn = _mm_sub_ps(rn, _mm_mul_ps(is[0], iu));
in = _mm_add_ps(in, _mm_mul_ps(is[0], ru));
j += 2;
for (unsigned l = 1; l < hsize; ++l) {
ru = _mm_set1_ps(v[j]);
iu = _mm_set1_ps(v[j + 1]);
rn = _mm_add_ps(rn, _mm_mul_ps(rs[l], ru));
in = _mm_add_ps(in, _mm_mul_ps(rs[l], iu));
rn = _mm_sub_ps(rn, _mm_mul_ps(is[l], iu));
in = _mm_add_ps(in, _mm_mul_ps(is[l], ru));
j += 2;
}
_mm_store_ps(p0 + xss[k], rn);
_mm_store_ps(p0 + xss[k] + 4, in);
}
};
uint64_t ms[H + 1];
uint64_t xss[1 << H];
auto m = GetMasks7(state.num_qubits(), qs, cqs, cvals);
FillIndices<H>(state.num_qubits(), qs, ms, xss);
unsigned k = 2 + H;
unsigned n = state.num_qubits() > k ? state.num_qubits() - k : 0;
uint64_t size = uint64_t{1} << n;
for_.Run(size, f, matrix, ms, xss, m.cvalsh, m.cmaskh, state.get());
}
template <unsigned H>
void ApplyControlledGateHL(const std::vector<unsigned>& qs,
const std::vector<unsigned>& cqs, uint64_t cvals,
const fp_type* matrix, State& state) const {
auto f = [](unsigned n, unsigned m, uint64_t i, const __m128* w,
const uint64_t* ms, const uint64_t* xss, uint64_t cvalsh,
uint64_t cmaskh, fp_type* rstate) {
constexpr unsigned hsize = 1 << H;
__m128 rn, in;
__m128 rs[hsize], is[hsize];
i *= 4;
uint64_t ii = i & ms[0];
for (unsigned j = 1; j <= H; ++j) {
i *= 2;
ii |= i & ms[j];
}
if ((ii & cmaskh) != cvalsh) return;
auto p0 = rstate + 2 * ii;
for (unsigned k = 0; k < hsize; ++k) {
rs[k] = _mm_load_ps(p0 + xss[k]);
is[k] = _mm_load_ps(p0 + xss[k] + 4);
}
uint64_t j = 0;
for (unsigned k = 0; k < hsize; ++k) {
rn = _mm_mul_ps(rs[0], w[j]);
in = _mm_mul_ps(rs[0], w[j + 1]);
rn = _mm_sub_ps(rn, _mm_mul_ps(is[0], w[j + 1]));
in = _mm_add_ps(in, _mm_mul_ps(is[0], w[j]));
j += 2;
for (unsigned l = 1; l < hsize; ++l) {
rn = _mm_add_ps(rn, _mm_mul_ps(rs[l], w[j]));
in = _mm_add_ps(in, _mm_mul_ps(rs[l], w[j + 1]));
rn = _mm_sub_ps(rn, _mm_mul_ps(is[l], w[j + 1]));
in = _mm_add_ps(in, _mm_mul_ps(is[l], w[j]));
j += 2;
}
_mm_store_ps(p0 + xss[k], rn);
_mm_store_ps(p0 + xss[k] + 4, in);
}
};
uint64_t ms[H + 1];
uint64_t xss[1 << H];
__m128 w[1 << (1 + 2 * H)];
auto m = GetMasks8<2>(state.num_qubits(), qs, cqs, cvals);
FillIndices<H>(state.num_qubits(), qs, ms, xss);
FillControlledMatrixH<H, 2>(m.cvalsl, m.cmaskl, matrix, (fp_type*) w);
unsigned r = 2 + H;
unsigned n = state.num_qubits() > r ? state.num_qubits() - r : 0;
uint64_t size = uint64_t{1} << n;
for_.Run(size, f, w, ms, xss, m.cvalsh, m.cmaskh, state.get());
}
template <unsigned H, unsigned L, bool CH>
void ApplyControlledGateL(const std::vector<unsigned>& qs,
const std::vector<unsigned>& cqs, uint64_t cvals,
const fp_type* matrix, State& state) const {
auto f = [](unsigned n, unsigned m, uint64_t i, const __m128* w,
const uint64_t* ms, const uint64_t* xss, uint64_t cvalsh,
uint64_t cmaskh, unsigned q0, fp_type* rstate) {
constexpr unsigned gsize = 1 << (H + L);
constexpr unsigned hsize = 1 << H;
constexpr unsigned lsize = 1 << L;
__m128 rn, in;
__m128 rs[gsize], is[gsize];
i *= 4;
uint64_t ii = i & ms[0];
for (unsigned j = 1; j <= H; ++j) {
i *= 2;
ii |= i & ms[j];
}
if ((ii & cmaskh) != cvalsh) return;
auto p0 = rstate + 2 * ii;
for (unsigned k = 0; k < hsize; ++k) {
unsigned k2 = lsize * k;
rs[k2] = _mm_load_ps(p0 + xss[k]);
is[k2] = _mm_load_ps(p0 + xss[k] + 4);
if (L == 1) {
rs[k2 + 1] = q0 == 0 ? _mm_shuffle_ps(rs[k2], rs[k2], 177)
: _mm_shuffle_ps(rs[k2], rs[k2], 78);
is[k2 + 1] = q0 == 0 ? _mm_shuffle_ps(is[k2], is[k2], 177)
: _mm_shuffle_ps(is[k2], is[k2], 78);
} else if (L == 2) {
rs[k2 + 1] = _mm_shuffle_ps(rs[k2], rs[k2], 57);
is[k2 + 1] = _mm_shuffle_ps(is[k2], is[k2], 57);
rs[k2 + 2] = _mm_shuffle_ps(rs[k2], rs[k2], 78);
is[k2 + 2] = _mm_shuffle_ps(is[k2], is[k2], 78);
rs[k2 + 3] = _mm_shuffle_ps(rs[k2], rs[k2], 147);
is[k2 + 3] = _mm_shuffle_ps(is[k2], is[k2], 147);
}
}
uint64_t j = 0;
for (unsigned k = 0; k < hsize; ++k) {
rn = _mm_mul_ps(rs[0], w[j]);
in = _mm_mul_ps(rs[0], w[j + 1]);
rn = _mm_sub_ps(rn, _mm_mul_ps(is[0], w[j + 1]));
in = _mm_add_ps(in, _mm_mul_ps(is[0], w[j]));
j += 2;
for (unsigned l = 1; l < gsize; ++l) {
rn = _mm_add_ps(rn, _mm_mul_ps(rs[l], w[j]));
in = _mm_add_ps(in, _mm_mul_ps(rs[l], w[j + 1]));
rn = _mm_sub_ps(rn, _mm_mul_ps(is[l], w[j + 1]));
in = _mm_add_ps(in, _mm_mul_ps(is[l], w[j]));
j += 2;
}
_mm_store_ps(p0 + xss[k], rn);
_mm_store_ps(p0 + xss[k] + 4, in);
}
};
uint64_t ms[H + 1];
uint64_t xss[1 << H];
__m128 w[1 << (1 + 2 * H + L)];
FillIndices<H, L>(state.num_qubits(), qs, ms, xss);
unsigned r = 2 + H;
unsigned n = state.num_qubits() > r ? state.num_qubits() - r : 0;
uint64_t size = uint64_t{1} << n;
if (CH) {
auto m = GetMasks9<L>(state.num_qubits(), qs, cqs, cvals);
FillMatrix<H, L, 2>(m.qmaskl, matrix, (fp_type*) w);
for_.Run(size, f, w, ms, xss, m.cvalsh, m.cmaskh, qs[0], state.get());
} else {
auto m = GetMasks10<L, 2>(state.num_qubits(), qs, cqs, cvals);
FillControlledMatrixL<H, L, 2>(
m.cvalsl, m.cmaskl, m.qmaskl, matrix, (fp_type*) w);
for_.Run(size, f, w, ms, xss, m.cvalsh, m.cmaskh, qs[0], state.get());
}
}
template <unsigned H>
std::complex<double> ExpectationValueH(const std::vector<unsigned>& qs,
const fp_type* matrix,
const State& state) const {
auto f = [](unsigned n, unsigned m, uint64_t i, const fp_type* v,
const uint64_t* ms, const uint64_t* xss,
const fp_type* rstate) {
constexpr unsigned hsize = 1 << H;
__m128 ru, iu, rn, in;
__m128 rs[hsize], is[hsize];
i *= 4;
uint64_t ii = i & ms[0];
for (unsigned j = 1; j <= H; ++j) {
i *= 2;
ii |= i & ms[j];
}
auto p0 = rstate + 2 * ii;
for (unsigned k = 0; k < hsize; ++k) {
rs[k] = _mm_load_ps(p0 + xss[k]);
is[k] = _mm_load_ps(p0 + xss[k] + 4);
}
double re = 0;
double im = 0;
uint64_t j = 0;
for (unsigned k = 0; k < hsize; ++k) {
ru = _mm_set1_ps(v[j]);
iu = _mm_set1_ps(v[j + 1]);
rn = _mm_mul_ps(rs[0], ru);
in = _mm_mul_ps(rs[0], iu);
rn = _mm_sub_ps(rn, _mm_mul_ps(is[0], iu));
in = _mm_add_ps(in, _mm_mul_ps(is[0], ru));
j += 2;
for (unsigned l = 1; l < hsize; ++l) {
ru = _mm_set1_ps(v[j]);
iu = _mm_set1_ps(v[j + 1]);
rn = _mm_add_ps(rn, _mm_mul_ps(rs[l], ru));
in = _mm_add_ps(in, _mm_mul_ps(rs[l], iu));
rn = _mm_sub_ps(rn, _mm_mul_ps(is[l], iu));
in = _mm_add_ps(in, _mm_mul_ps(is[l], ru));
j += 2;
}
__m128 v_re = _mm_add_ps(_mm_mul_ps(rs[k], rn), _mm_mul_ps(is[k], in));
__m128 v_im = _mm_sub_ps(_mm_mul_ps(rs[k], in), _mm_mul_ps(is[k], rn));
re += detail::HorizontalSumSSE(v_re);
im += detail::HorizontalSumSSE(v_im);
}
return std::complex<double>{re, im};
};
uint64_t ms[H + 1];
uint64_t xss[1 << H];
FillIndices<H>(state.num_qubits(), qs, ms, xss);
unsigned k = 2 + H;
unsigned n = state.num_qubits() > k ? state.num_qubits() - k : 0;
uint64_t size = uint64_t{1} << n;
using Op = std::plus<std::complex<double>>;
return for_.RunReduce(size, f, Op(), matrix, ms, xss, state.get());
}
template <unsigned H, unsigned L>
std::complex<double> ExpectationValueL(const std::vector<unsigned>& qs,
const fp_type* matrix,
const State& state) const {
auto f = [](unsigned n, unsigned m, uint64_t i, const __m128* w,
const uint64_t* ms, const uint64_t* xss, unsigned q0,
const fp_type* rstate) {
constexpr unsigned gsize = 1 << (H + L);
constexpr unsigned hsize = 1 << H;
constexpr unsigned lsize = 1 << L;
__m128 rn, in;
__m128 rs[gsize], is[gsize];
i *= 4;
uint64_t ii = i & ms[0];
for (unsigned j = 1; j <= H; ++j) {
i *= 2;
ii |= i & ms[j];
}
auto p0 = rstate + 2 * ii;
for (unsigned k = 0; k < hsize; ++k) {
unsigned k2 = lsize * k;
rs[k2] = _mm_load_ps(p0 + xss[k]);
is[k2] = _mm_load_ps(p0 + xss[k] + 4);
if (L == 1) {
rs[k2 + 1] = q0 == 0 ? _mm_shuffle_ps(rs[k2], rs[k2], 177)
: _mm_shuffle_ps(rs[k2], rs[k2], 78);
is[k2 + 1] = q0 == 0 ? _mm_shuffle_ps(is[k2], is[k2], 177)
: _mm_shuffle_ps(is[k2], is[k2], 78);
} else if (L == 2) {
rs[k2 + 1] = _mm_shuffle_ps(rs[k2], rs[k2], 57);
is[k2 + 1] = _mm_shuffle_ps(is[k2], is[k2], 57);
rs[k2 + 2] = _mm_shuffle_ps(rs[k2], rs[k2], 78);
is[k2 + 2] = _mm_shuffle_ps(is[k2], is[k2], 78);
rs[k2 + 3] = _mm_shuffle_ps(rs[k2], rs[k2], 147);
is[k2 + 3] = _mm_shuffle_ps(is[k2], is[k2], 147);
}
}
double re = 0;
double im = 0;
uint64_t j = 0;
for (unsigned k = 0; k < hsize; ++k) {
rn = _mm_mul_ps(rs[0], w[j]);
in = _mm_mul_ps(rs[0], w[j + 1]);
rn = _mm_sub_ps(rn, _mm_mul_ps(is[0], w[j + 1]));
in = _mm_add_ps(in, _mm_mul_ps(is[0], w[j]));
j += 2;
for (unsigned l = 1; l < gsize; ++l) {
rn = _mm_add_ps(rn, _mm_mul_ps(rs[l], w[j]));
in = _mm_add_ps(in, _mm_mul_ps(rs[l], w[j + 1]));
rn = _mm_sub_ps(rn, _mm_mul_ps(is[l], w[j + 1]));
in = _mm_add_ps(in, _mm_mul_ps(is[l], w[j]));
j += 2;
}
unsigned m = lsize * k;
__m128 v_re = _mm_add_ps(_mm_mul_ps(rs[m], rn), _mm_mul_ps(is[m], in));
__m128 v_im = _mm_sub_ps(_mm_mul_ps(rs[m], in), _mm_mul_ps(is[m], rn));
re += detail::HorizontalSumSSE(v_re);
im += detail::HorizontalSumSSE(v_im);
}
return std::complex<double>{re, im};
};
uint64_t ms[H + 1];
uint64_t xss[1 << H];
__m128 w[1 << (1 + 2 * H + L)];
auto m = GetMasks11<L>(qs);
FillIndices<H, L>(state.num_qubits(), qs, ms, xss);
FillMatrix<H, L, 2>(m.qmaskl, matrix, (fp_type*) w);
unsigned k = 2 + H;
unsigned n = state.num_qubits() > k ? state.num_qubits() - k : 0;
uint64_t size = uint64_t{1} << n;
using Op = std::plus<std::complex<double>>;
return for_.RunReduce(size, f, Op(), w, ms, xss, qs[0], state.get());
}
For for_;
};
} // namespace qsim
#endif // SIMULATOR_SSE_H_