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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
use crate::cycle::CycleList;
use crate::cycle::{CycleId, CycleIndex};
use crate::instruction::{Instruction, InstructionId};
use crate::operation::OpCode;
use crate::operation::OperationSet;
use crate::operation::{
CircuitOperation, DirectiveOperation, ExpressionOperation, OpKind, Operation,
};
use crate::param::{Argument as ParameterEntry, ArgumentList, ParameterVector};
use crate::wire::Wire;
use crate::wire::WireList;
use qudit_core::Radices;
use qudit_core::array::Tensor;
use qudit_core::{
ClassicalSystem, ComplexScalar, HasParams, HybridSystem, ParamIndices, ParamInfo, QuditSystem,
};
use qudit_expr::index::IndexDirection;
use qudit_expr::{
BraSystemExpression, FUNCTION, KetExpression, KrausOperatorsExpression, TensorExpression,
UnitaryExpression, UnitarySystemExpression,
};
use qudit_tensor::{QuditCircuitTensorNetworkBuilder, QuditTensor, QuditTensorNetwork};
use rustc_hash::FxHashMap;
use std::collections::HashMap;
/// A quantum circuit that can be defined with qudits and classical bits.
///
/// The circuit is internally represented as a list of cycles, where each
/// cycles represents an abstract moment in time. In each cycle, instructions
/// can direct operations to be applied to quantum and/or classical wires.
/// This data structure holds invariant that there never will be an empty
/// cycle. As a result, cycles can be removed automatically from anywhere in
/// the circuit, when operations are removed. However, cycles are identified
/// by a persistent identifier, which never changes and enables fast O(1) lookup.
/// This additionally enables instruction identifiers that will always point
/// to their correct instruction, no matter how the circuit changes underneath.
#[derive(Clone)]
pub struct QuditCircuit {
/// The QuditRadices object that describes the quantum dimension of the circuit.
qudit_radices: Radices,
/// The QuditRadices object that describes the classical dimension of the circuit.
dit_radices: Radices,
/// All instructions in the circuit stored in cycles.
cycles: CycleList,
/// The set of cached operations in the circuit.
operations: OperationSet,
/// The stored parameters of the circuit.
params: ParameterVector,
/// A pointer to the first operation on each wire.
front: FxHashMap<Wire, CycleId>,
/// A pointer to the last operation on each wire.
rear: FxHashMap<Wire, CycleId>,
}
/// Constructors
impl QuditCircuit {
/// Creates a new QuditCircuit object.
///
/// # Arguments
///
/// * `qudit_radices` - The radices that describes the qudit system.
///
/// * `dit_radices` - The radices that describes the classical system.
///
/// # Examples
///
/// We can define hybrid quantum-classical circuits:
/// ```
/// use qudit_circuit::QuditCircuit;
///
/// let two_qubit_circuit = QuditCircuit::new([2, 2], [2, 2]);
/// let two_qutrit_circuit = QuditCircuit::new([3, 3], [3, 3]);
/// ```
pub fn new<T1: Into<Radices>, T2: Into<Radices>>(
qudit_radices: T1,
dit_radices: T2,
) -> QuditCircuit {
QuditCircuit::with_capacity(qudit_radices, dit_radices, 4)
}
/// Creates a new purely-quantum QuditCircuit object.
///
/// # Arguments
///
/// * `qudit_radices` - The radices that describes the qudit system.
///
/// # Examples
///
/// We can define purely quantum kernels without classical bits:
/// ```
/// # use qudit_circuit::QuditCircuit;
/// let two_qubit_circuit = QuditCircuit::pure([2, 2]);
/// let two_qutrit_circuit = QuditCircuit::pure([3, 3]);
/// let hybrid_circuit = QuditCircuit::pure([2, 2, 3, 3]);
/// ```
pub fn pure<T: Into<Radices>>(qudit_radices: T) -> QuditCircuit {
QuditCircuit::with_capacity(qudit_radices, Radices::from(&[] as &[usize]), 1)
}
/// Creates a new QuditCircuit object with a given cycle capacity.
///
/// # Arguments
///
/// * `qudit_radices` - The radices that describes the qudit system.
///
/// * `dit_radices` - The radices that describes the classical system.
///
/// * `capacity` - The number of cycles to pre-allocate.
///
/// # Examples
///
/// ```
/// # use qudit_circuit::QuditCircuit;
/// let two_qubit_circuit = QuditCircuit::with_capacity([2, 2], [2, 2], 10);
/// ```
pub fn with_capacity<T1: Into<Radices>, T2: Into<Radices>>(
qudit_radices: T1,
dit_radices: T2,
capacity: usize,
) -> QuditCircuit {
let qudit_radices = qudit_radices.into();
let dit_radices = dit_radices.into();
QuditCircuit {
qudit_radices,
dit_radices,
cycles: CycleList::with_capacity(capacity),
front: FxHashMap::default(),
rear: FxHashMap::default(),
operations: OperationSet::new(),
params: ParameterVector::default(),
}
}
}
/// Properties
impl QuditCircuit {
/// Returns the number of cycles in the circuit.
///
/// # Performance
///
/// This method is O(1).
pub fn num_cycles(&self) -> usize {
self.cycles.len()
}
/// Returns the number of parameters in the circuit.
///
/// # Performance
///
/// This method is O(1).
pub fn num_params(&self) -> usize {
self.params.len()
}
/// Returns the number of operations in the circuit.
///
/// # Performance
///
/// This method is O(|t|) where
/// - `t` is the number of distinct instruction types in the circuit.
pub fn num_operations(&self) -> usize {
self.operations.num_operations()
}
/// Returns a vector of active qudit indices.
///
/// An active qudit is one that participates in at least one operation.
///
/// # Returns
///
/// A vector containing the indices of qudits that are active.
///
/// # Performance
///
/// This method is O(w) where
/// - `w` is the number of wires in the circuit.
pub fn active_qudits(&self) -> Vec<usize> {
self.front
.iter()
.filter_map(|(wire, _)| {
if wire.is_quantum() {
Some(wire.index())
} else {
None
}
})
.collect()
}
/// Returns a vector of active classical dit indices.
///
/// An active classical dit is one that participates in at least one operation.
///
/// # Returns
///
/// A vector containing the indices of classical dits that are active.
///
/// # Performance
///
/// This method is O(w) where
/// - `w` is the number of wires in the circuit.
pub fn active_dits(&self) -> Vec<usize> {
self.front
.iter()
.filter_map(|(wire, _)| {
if wire.is_classical() {
Some(wire.index())
} else {
None
}
})
.collect()
}
/// A reference to the parameters of the circuit.
pub fn params(&self) -> &ParameterVector {
&self.params
}
/// Checks if the circuit is empty.
///
/// # Returns
///
/// `true` if the circuit contains no cycles, `false` otherwise.
///
/// # Examples
///
/// ```
/// # use qudit_circuit::QuditCircuit;
/// let circuit = QuditCircuit::pure([2, 2]);
/// assert!(circuit.is_empty());
/// ```
///
/// # Performance
///
/// This method is O(1).
pub fn is_empty(&self) -> bool {
self.cycles.is_empty()
}
}
impl QuditCircuit {
/// Counts the amount of an operation in the circuit.
pub fn count(&self, op_code: OpCode) -> usize {
self.operations.count(op_code)
}
/// Checks if `wires` is a valid set of wires in the circuit.
///
/// A wire list is valid if all qudit indices are less than the
/// number of qudits in the circuit and all classical dit indices
/// are less than the number of classical dits in the circuit.
///
/// # Arguments
///
/// * `wires` - The set of wires to check.
///
/// # Returns
///
/// `true` if `wires` is valid, `false` otherwise.
///
/// # Performance
///
/// This method is O(w) where
/// - `w` is the number of wires in the input list.
///
/// # Examples
///
/// ```
/// # use qudit_circuit::QuditCircuit;
/// # use qudit_circuit::WireList;
/// let circuit = QuditCircuit::new([2, 2], [2, 2]);
/// assert!(circuit.is_valid_wires(WireList::from([0, 1])));
/// assert!(circuit.is_valid_wires(WireList::from(([0, 1], [0, 1]))));
/// assert!(circuit.is_valid_wires(WireList::from((0, 0))));
/// assert!(!circuit.is_valid_wires(WireList::from(([0, 1], [0, 2]))));
/// assert!(!circuit.is_valid_wires(WireList::from([0, 1, 2])));
/// assert!(!circuit.is_valid_wires(WireList::from(([0, 1], [2]))));
/// ```
pub fn is_valid_wires<W: AsRef<WireList>>(&self, wires: W) -> bool {
let wires = wires.as_ref();
wires.qudits().all(|q| q < self.num_qudits()) && wires.dits().all(|c| c < self.num_dits())
}
/// Check if an instruction identifier points to a valid instruction in the circuit.
///
/// # Arguments
///
/// * `inst_id` - The instruction id to check.
///
/// # Returns
///
/// `true` if `inst_id` is valid, `false` otherwise.
///
/// # Performance
///
/// This method is O(1).
///
/// # Examples
///
/// ```
/// # use qudit_circuit::QuditCircuit;
/// # use qudit_expr::library::PGate;
/// let mut circuit = QuditCircuit::new([2, 2], [2, 2]);
/// let p_id = circuit.append(PGate(2), 0, None);
/// assert!(circuit.is_valid_id(p_id));
/// ```
pub fn is_valid_id<P: Into<InstructionId>>(&self, inst_id: P) -> bool {
let inst_id = inst_id.into();
match self.cycles.get_from_id(inst_id.cycle()) {
None => false,
Some(cycle) => cycle.is_valid_id(inst_id.inner()),
}
}
/// Finds the first available cycle for qudits in `location`.
///
/// An available cycle for `location` is one where it and all
/// cycles after it are unoccupied for `location`.
///
/// # Arguments
///
/// * `location` - The location to check for cycle availability.
///
/// # Returns
///
/// The index of the first available cycle for `location` or `None`
///
/// # Performance
///
/// This method is O(|location|).
///
/// # Panics
///
/// If `location` is not a valid location in the circuit.
///
/// # Examples
///
/// ```
/// # use qudit_circuit::QuditCircuit;
/// # use qudit_circuit::WireList;
/// # use qudit_expr::library::PGate;
/// let mut circuit = QuditCircuit::new([2, 2], [2, 2]);
/// circuit.append(PGate(2), 0, None);
/// assert!(circuit.find_available_cycle(WireList::from([0])).is_none());
/// assert!(circuit.find_available_cycle(WireList::from([1])).is_some_and(|c| c == 0));
/// ```
pub fn find_available_cycle<W: AsRef<WireList>>(&self, wires: W) -> Option<CycleIndex> {
if !self.is_valid_wires(&wires) {
// TODO: Really, panic over this? This it totally a recoverable error.
// Cmon, you know better now. Get some proper error handling going already.
panic!("Cannot find available cycle for invalid location.");
}
if self.cycles.is_empty() {
return None;
}
let last_occupied_cycle_option = wires
.as_ref()
.wires()
.filter_map(|w| self.rear.get(&w))
.map(|cycle_id| {
self.cycles
.id_to_index(*cycle_id)
.expect("Expected cycle to exist.")
})
.max_by(Ord::cmp);
match last_occupied_cycle_option {
Some(cycle_index) => {
if cycle_index + 1u64 < CycleIndex(self.num_cycles() as u64) {
Some(cycle_index + 1u64)
} else {
None
}
}
None => {
// Circuit is not empty due to above check,
// but no gates on location
Some(CycleIndex(0))
}
}
}
/// Find first or create new available cycle and return its index
fn find_available_or_append_cycle<W: AsRef<WireList>>(&mut self, wires: W) -> CycleIndex {
// Location validity implicitly checked in find_available_cycle
if let Some(cycle_index) = self.find_available_cycle(wires) {
cycle_index
} else {
self.cycles.push()
}
}
/// Intern an operation in the circuit's operation cache
///
/// This allows further additions by OpCodes.
pub fn cache_operation<O: Into<Operation>>(&mut self, op: O) -> OpCode {
self.operations.insert(op.into())
}
// fn _insert_ref(
// &mut self,
// cycle_index: CycleIndex,
// op_code: OpCode,
// wires: WireList,
// params: ParamIndices,
// ) -> InstructionId {
// // TODO: Check cycle_index is valid
// // Two options: cycle_index is available at location
// // or not
// //
// // if available at location, then insert there, but then we need to update
// // prev and next of the prev and next without knowing exactly where they are at: costly
// //
// // if not available at location, need to insert a new cycle, but now I know who
// // prev and next are
// for wire in wires.wires() {
// }
// todo!()
// }
fn _append_ref(
&mut self,
op_code: OpCode,
wires: WireList,
params: ParamIndices,
) -> InstructionId {
// TODO: check valid operation for radix match, measurement bandwidth etc
// TODO: check params is valid: length is equal to op_params, existing exist, etc..
// Find cycle placement (location validity implicitly checked here)
let cycle_index = self.find_available_or_append_cycle(&wires);
let cycle_id = self.cycles.index_to_id(cycle_index);
// Update quantum DAG info
for wire in wires.wires() {
if let Some(&rear_cycle_id) = self.rear.get(&wire) {
self.cycles
.get_mut_from_id(rear_cycle_id)
.expect("Expected cycle to exist.")
.set_next(wire, cycle_id);
self.cycles[cycle_index].set_prev(wire, rear_cycle_id);
} else {
// If rear is none, nothing exists on this wire, so update front too.
self.front.insert(wire, cycle_id);
}
self.rear.insert(wire, cycle_id);
}
// Build instruction reference
let inst_ref = Instruction::new(op_code, wires, params);
// Add op to cycle
let inner_id = self.cycles[cycle_index].push(inst_ref);
InstructionId::new(cycle_id, inner_id)
}
/// Append an operation to the circuit
pub fn append<O, W, A>(&mut self, op: O, wires: W, args: A) -> InstructionId
where
O: Into<Operation>,
W: Into<WireList>,
A: TryInto<Option<ArgumentList>>,
{
let op = op.into();
let args = match args.try_into() {
Err(_) => panic!("Get some proper error handling going already..."),
Ok(Some(args)) => args,
Ok(None) => ArgumentList::new(vec![ParameterEntry::Unspecified; op.num_params()]),
};
// let args: ArgumentList = if args.is_none() {
// ArgumentList::new(vec![ParameterEntry::Unspecified; op.num_params()])
// } else {
// match args.unwrap().try_into() {
// Err(_) => panic!("Get some proper error handling going already..."),
// Ok(args) => args,
// }
// };
match op {
Operation::Expression(e) => self.append_expression(e, wires, args),
Operation::Subcircuit(s) => self.append_subcircuit(s, wires, args),
Operation::Directive(d) => self.append_directive(d, wires, args),
}
}
/// Append an operation already interned by the circuit provided by an OpCode
pub fn append_by_code<W, A>(&mut self, op: OpCode, wires: W, args: A) -> InstructionId
where
W: Into<WireList>,
A: TryInto<ArgumentList>,
{
let args: ArgumentList = match args.try_into() {
Err(_) => panic!("Get some proper error handling going already..."),
Ok(args) => args,
};
if args.requires_expression_modification() {
todo!()
}
let param_ids = self.params.parse(&args); // persistent ids; not indices
let wires = wires.into();
self.operations.increment(op); // Need to inform self.operations
self._append_ref(op, wires, param_ids)
}
/// Append an expression to the circuit
pub fn append_expression<O, L, P>(&mut self, op: O, loc: L, params: P) -> InstructionId
where
O: Into<ExpressionOperation>,
L: Into<WireList>,
P: Into<ArgumentList>,
{
let op: ExpressionOperation = op.into();
let loc: WireList = loc.into();
let args: ArgumentList = params.into();
let param_ids = self.params.parse(&args); // persistent ids; not indices
// Modify expression with new parameter expressions
let new_variables = args.variables();
let expressions = args.expressions();
// Substitute params into op
let subbed_op = match op {
ExpressionOperation::UnitaryGate(e) => {
let e: TensorExpression = e.into();
let subbed_expr: UnitaryExpression = e
.substitute_parameters(&new_variables, &expressions)
.try_into()
.unwrap();
ExpressionOperation::UnitaryGate(subbed_expr)
}
ExpressionOperation::KrausOperators(e) => {
let e: TensorExpression = e.into();
let subbed_expr: KrausOperatorsExpression = e
.substitute_parameters(&new_variables, &expressions)
.try_into()
.unwrap();
ExpressionOperation::KrausOperators(subbed_expr)
}
ExpressionOperation::TerminatingMeasurement(e) => {
let e: TensorExpression = e.into();
let subbed_expr: BraSystemExpression = e
.substitute_parameters(&new_variables, &expressions)
.try_into()
.unwrap();
ExpressionOperation::TerminatingMeasurement(subbed_expr)
}
ExpressionOperation::ClassicallyControlledUnitary(e) => {
let e: TensorExpression = e.into();
let subbed_expr: UnitarySystemExpression = e
.substitute_parameters(&new_variables, &expressions)
.try_into()
.unwrap();
ExpressionOperation::ClassicallyControlledUnitary(subbed_expr)
}
ExpressionOperation::QuditInitialization(e) => {
let e: TensorExpression = e.into();
let subbed_expr: KetExpression = e
.substitute_parameters(&new_variables, &expressions)
.try_into()
.unwrap();
ExpressionOperation::QuditInitialization(subbed_expr)
}
};
let op_code = self.operations.insert_expression_with_dits(
subbed_op,
&loc.dits()
.map(|d| self.dit_radices[d].into())
.collect::<Vec<_>>(),
);
self._append_ref(op_code, loc, param_ids)
}
/// Append a subcircuit to the circuit
pub fn append_subcircuit<L, P>(
&mut self,
_op: CircuitOperation,
loc: L,
params: P,
) -> InstructionId
where
L: Into<WireList>,
P: Into<ArgumentList>,
{
let _loc = loc.into();
let _params = params.into();
todo!()
}
/// Append a circuit directive to the circuit
pub fn append_directive<L, P>(
&mut self,
_op: DirectiveOperation,
loc: L,
params: P,
) -> InstructionId
where
L: Into<WireList>,
P: Into<ArgumentList>,
{
let _loc = loc.into();
let _params = params.into();
todo!()
}
/// Checks if a qudit is inactive
pub fn is_qudit_inactive(&self, index: usize) -> bool {
!self.front.contains_key(&Wire::quantum(index))
}
/// Initialize the qudits specified in a zero state
pub fn zero_initialize<W: Into<WireList>>(&mut self, wires: W) {
let wires = wires.into();
let location_radices = wires
.qudits()
.map(|q| self.qudit_radices[q])
.collect::<Radices>();
let state = KetExpression::zero(location_radices);
let op = ExpressionOperation::QuditInitialization(state);
self.append(op, wires, None::<ArgumentList>);
}
/// Remove the operation at `point` from the circuit
pub fn remove(&mut self, inst_id: InstructionId) -> Option<Instruction> {
if !self.is_valid_id(inst_id) {
// TODO: log warning?
return None;
}
let wires = self
.cycles
.get_from_id(inst_id.cycle())
.expect("Expected valid cycle.")
.get_wires_from_id(inst_id.inner())
.expect("Expected valid instruction.");
// Update circuit quantum DAG info
for wire in &wires {
let cycle = self
.cycles
.get_from_id(inst_id.cycle())
.expect("Expected valid cycle.");
let next = cycle.get_next(wire);
let prev = cycle.get_prev(wire);
match (next, prev) {
(Some(next_cycle_id), Some(prev_cycle_id)) => {
self.cycles
.get_mut_from_id(next_cycle_id)
.expect("Expected valid cycle.")
.set_prev(wire, prev_cycle_id);
self.cycles
.get_mut_from_id(prev_cycle_id)
.expect("Expected valid cycle.")
.set_next(wire, next_cycle_id);
}
(Some(next_cycle_id), None) => {
self.cycles
.get_mut_from_id(next_cycle_id)
.expect("Expected valid cycle.")
.reset_prev(wire);
debug_assert!(*self.front.get(&wire).unwrap() == inst_id.cycle());
self.front.insert(wire, next_cycle_id);
}
(None, Some(prev_cycle_id)) => {
self.cycles
.get_mut_from_id(prev_cycle_id)
.expect("Expected valid cycle.")
.reset_next(wire);
debug_assert!(*self.rear.get(&wire).unwrap() == inst_id.cycle());
self.rear.insert(wire, prev_cycle_id);
}
(None, None) => {
debug_assert!(*self.front.get(&wire).unwrap() == inst_id.cycle());
debug_assert!(*self.rear.get(&wire).unwrap() == inst_id.cycle());
self.front.remove(&wire);
self.rear.remove(&wire);
}
}
}
let cycle = self
.cycles
.get_mut_from_id(inst_id.cycle())
.expect("Expected valid cycle.");
let inst = cycle
.remove(
wires
.wires()
.next()
.expect("Corrupted instruction acting on no wires."),
)
.expect("Expected instruction to remove.");
if cycle.num_ops() == 0 {
// Empty cycles cannot exist; must be removed
self.cycles.remove_id(inst_id.cycle());
}
for param in &inst.params() {
self.params.decrement(param);
}
self.operations.decrement(inst.op_code());
Some(inst)
}
}
/// DAG Methods
impl QuditCircuit {
/// Distill the circuit front nodes into a hashmap.
///
/// # Returns
///
/// A mapping from qudit or dit index to a circuit point of the first
/// operation in the circuit on that qudit or clbit.
///
/// # Performance
///
/// This method is O(|width|) where width includes both the number of
/// qudits and number of classical dits in the circuit.
///
/// # Notes
///
/// The same instruction id may be pointed to
/// by two different keys in the hash map if it is at the front of
/// the circuit at multiple spots. For example, if a cnot was at the
/// front of the circuit, then it would be pointed to by both the
/// control and target qudit indices.
///
/// # Examples
///
/// ```
/// # use qudit_circuit::QuditCircuit;
/// # use qudit_circuit::Wire;
/// # use qudit_expr::library::{PGate, HGate};
/// let mut circuit = QuditCircuit::pure([2, 2]);
/// let p_id = circuit.append(PGate(2), 0, None);
/// let h_id = circuit.append(HGate(2), 1, None);
/// assert_eq!(circuit.front().len(), 2);
/// assert_eq!(circuit.front()[&Wire::quantum(0)], p_id);
/// assert_eq!(circuit.front()[&Wire::quantum(1)], h_id);
/// ```
pub fn front(&self) -> HashMap<Wire, InstructionId> {
self.front
.iter()
.map(|(wire, front_cycle_id)| {
let front_cycle = self
.cycles
.get_from_id(*front_cycle_id)
.expect("Expected cycle to exist.");
let front_inst_id = front_cycle
.get_id_from_wire(*wire)
.expect("Expected there to be an instruction here?");
(*wire, InstructionId::new(*front_cycle_id, front_inst_id))
})
.collect()
}
/// Distill the circuit rear nodes into a hashmap.
///
/// See [`QuditCircuit::front`] for more information.
pub fn rear(&self) -> HashMap<Wire, InstructionId> {
self.rear
.iter()
.map(|(wire, rear_cycle_id)| {
let rear_cycle = self
.cycles
.get_from_id(*rear_cycle_id)
.expect("Expected cycle to exist.");
let rear_inst_id = rear_cycle
.get_id_from_wire(*wire)
.expect("Expected there to be an instruction here?");
(*wire, InstructionId::new(*rear_cycle_id, rear_inst_id))
})
.collect()
}
/// Get the first instruction on a wire.
///
/// # Returns
///
/// An instruction id pointing to the first instruction on the specified wire
/// if it exists. None, otherwise.
///
/// # Performance
///
/// This method is O(1)
///
/// # Examples
///
/// ```
/// # use qudit_circuit::QuditCircuit;
/// # use qudit_circuit::Wire;
/// # use qudit_expr::library::PGate;
/// let mut circuit = QuditCircuit::pure([2]);
/// let p_id = circuit.append(PGate(2), 0, None);
/// assert_eq!(circuit.first_on(Wire::quantum(0)), Some(p_id));
/// ```
pub fn first_on<W: Into<Wire>>(&self, wire: W) -> Option<InstructionId> {
let wire = wire.into();
self.front.get(&wire).map(|cycle_id| {
InstructionId::new(
*cycle_id,
self.cycles[*cycle_id]
.get_id_from_wire(wire)
.expect("Expected instruction to exist."),
)
})
}
/// Get the last instruction on a wire.
///
/// See [`QuditCircuit::first_on`] for more information.
pub fn last_on<W: Into<Wire>>(&self, wire: W) -> Option<InstructionId> {
let wire = wire.into();
self.rear.get(&wire).map(|cycle_id| {
InstructionId::new(
*cycle_id,
self.cycles[*cycle_id]
.get_id_from_wire(wire)
.expect("Expected instruction to exist."),
)
})
}
/// Gather the points of the next operations from the point of an operation.
///
/// # Arguments
///
/// * `point` - The point to get the next operations from. This needs refer
/// to a valid point in the circuit.
///
/// # Returns
///
/// A mapping from qudit or clbit index to the point of the next operation
/// on that qudit or clbit.
///
/// # Performance
///
/// This method is O(|op-width|) where op-width includes both the number of
/// qudits and number of classical dits in the operation referred to by
/// `point`.
///
/// # Panics
///
/// If `point` is not a valid point in the circuit.
///
/// # Notes
///
/// The same operation may be pointed to by two different keys in the hash
/// map if it is the next of the operation at multiple spots. For
/// example, if a cnot is after the pointed operation, then it would be
/// pointed to by both the control and target qudit indices in the returned
/// map.
///
/// # Examples
///
/// ```
/// # use qudit_circuit::QuditCircuit;
/// # use qudit_circuit::Wire;
/// # use qudit_expr::library::{PGate, HGate};
/// let mut circuit = QuditCircuit::pure([2]);
/// let first_inst = circuit.append(PGate(2), 0, None);
/// let second_inst = circuit.append(HGate(2), 0, None);
///
/// let next_insts = circuit.next(first_inst);
/// assert_eq!(next_insts.len(), 1);
/// assert_eq!(next_insts[&Wire::quantum(0)], second_inst);
/// ```
pub fn next(&self, inst_id: InstructionId) -> HashMap<Wire, InstructionId> {
let cycle = self
.cycles
.get_from_id(inst_id.cycle())
.expect("Invalid instruction id.");
let wires = cycle.get_wires_from_id(inst_id.inner());
match wires {
Some(wires) => wires
.wires()
.filter_map(|wire| {
cycle.get_next(wire).map(|next_cycle_id| {
let next_cycle = self
.cycles
.get_from_id(next_cycle_id)
.expect("Expected cycle to exist.");
let next_inst_id = next_cycle
.get_id_from_wire(wire)
.expect("Expected there to be an instruction here?");
(wire, InstructionId::new(next_cycle_id, next_inst_id))
})
})
.collect(),
None => HashMap::new(),
}
}
/// Gather the points of the previous operations from the point of an
/// operation.
///
/// See [`QuditCircuit::next`] for more information.
pub fn prev(&self, inst_id: InstructionId) -> HashMap<Wire, InstructionId> {
let cycle = self
.cycles
.get_from_id(inst_id.cycle())
.expect("Invalid instruction id.");
let wires = cycle.get_wires_from_id(inst_id.inner());
match wires {
Some(wires) => wires
.wires()
.filter_map(|wire| {
cycle.get_prev(wire).map(|prev_cycle_id| {
let prev_cycle = self
.cycles
.get_from_id(prev_cycle_id)
.expect("Expected cycle to exist.");
let prev_inst_id = prev_cycle
.get_id_from_wire(wire)
.expect("Expected there to be an instruction here?");
(wire, InstructionId::new(prev_cycle_id, prev_inst_id))
})
})
.collect(),
None => HashMap::new(),
}
}
}
/// Iteration
impl QuditCircuit {
/// Return an iterator over the operations in the circuit.
///
/// The ordering is not guaranteed to be consistent, but it will
/// be in a simulation/topological order. For more control over the
/// ordering of iteration see [QuditCircuit::iter_sorted]
pub fn iter(&self) -> impl Iterator<Item = &Instruction> + '_ {
self.cycles.iter().flat_map(|cycle| cycle.iter())
}
/// Return a sorted iterator over the instructions in the circuit.
///
/// Will always iterate over the instructions in the same order. This
/// iteration is a valid simulation order.
pub fn iter_sorted(&self) -> impl Iterator<Item = &Instruction> + '_ {
self.cycles.iter().flat_map(|cycle| cycle.iter_sorted())
}
}
/// Evaluation
impl QuditCircuit {
/// Calculate the Kraus Operators that describe this circuit as a program
pub fn kraus_ops<C: ComplexScalar>(&self, args: &[C::R]) -> Tensor<C, 3> {
let network = self.to_tensor_network();
let code = qudit_tensor::compile_network(network);
let mut tnvm =
qudit_tensor::TNVM::<C, FUNCTION>::new(&code, Some(&self.params.const_map()));
let result = tnvm.evaluate::<FUNCTION>(args);
result.get_fn_result2().unpack_tensor3d().to_owned()
}
/// Convert the circuit to a symbolic tensor network
pub fn to_tensor_network(&self) -> QuditTensorNetwork {
self.as_tensor_network_builder().build()
}
/// Convert the circuit to a tensor network builder
pub fn as_tensor_network_builder(&self) -> QuditCircuitTensorNetworkBuilder {
let mut network = QuditCircuitTensorNetworkBuilder::new(
self.qudit_radices(),
Some(self.operations.expressions()),
);
for inst in self.iter() {
if inst.op_code().kind() == OpKind::Expression {
let indices = self.operations.indices(inst.op_code());
let param_indices = self.params.convert_ids_to_indices(inst.params());
let constant = param_indices
.iter()
.map(|i| self.params[i].is_constant())
.collect();
let param_info = ParamInfo::new(param_indices, constant);
let input_index_map = if indices
.iter()
.any(|idx| idx.direction() == IndexDirection::Input && idx.index_size() > 1)
{
inst.wires().qudits().collect()
} else {
vec![]
};
let output_index_map = if indices
.iter()
.any(|idx| idx.direction() == IndexDirection::Output && idx.index_size() > 1)
{
inst.wires().qudits().collect()
} else {
vec![]
};
let batch_index_map: Vec<String> =
inst.wires().dits().map(|id| id.to_string()).collect();
let tensor = QuditTensor::new(indices, inst.op_code().id(), param_info);
// println!("Adding new tensor {} to network builder with in qudits: {:?}; out qudits: {:?}, batch indices: {:?}", self.operations.name(inst.op_code()), input_index_map.clone(), output_index_map.clone(), batch_index_map.clone());
network =
network.prepend(tensor, input_index_map, output_index_map, batch_index_map)
}
}
network
}
}
impl QuditSystem for QuditCircuit {
#[inline(always)]
fn num_qudits(&self) -> usize {
self.qudit_radices.num_qudits()
}
#[inline(always)]
fn dimension(&self) -> usize {
self.qudit_radices.dimension()
}
fn radices(&self) -> Radices {
self.qudit_radices.clone()
}
}
impl HasParams for QuditCircuit {
#[inline(always)]
fn num_params(&self) -> usize {
self.params.len()
}
}
impl ClassicalSystem for QuditCircuit {
fn radices(&self) -> Radices {
self.dit_radices.clone()
}
#[inline(always)]
fn num_dits(&self) -> usize {
self.dit_radices.num_qudits()
}
}
impl HybridSystem for QuditCircuit {}
#[cfg(test)]
mod tests {
use super::*;
use qudit_core::c32;
use qudit_expr::GRADIENT;
use qudit_expr::library::Controlled;
use qudit_expr::library::U3Gate;
use qudit_expr::library::XGate;
pub fn build_qsearch_thin_step_circuit(n: usize) -> QuditCircuit {
let block_expr = U3Gate()
.otimes(U3Gate())
.dot(Controlled(XGate(2), [2].into(), None));
let mut circ = QuditCircuit::pure(vec![2; n]);
for i in 0..n {
circ.append(U3Gate(), [i], None);
}
for _ in 0..2 {
for i in 0..(n - 1) {
circ.append(block_expr.clone(), [i, i + 1], None);
}
}
circ
}
#[test]
fn build_qsearch_thin_step_circuit_test() {
build_qsearch_thin_step_circuit(3);
build_qsearch_thin_step_circuit(4);
build_qsearch_thin_step_circuit(5);
build_qsearch_thin_step_circuit(6);
build_qsearch_thin_step_circuit(7);
}
#[test]
fn build_qsearch_thin_step_circuit_to_tensor_test() {
const N: usize = 3;
let circ = build_qsearch_thin_step_circuit(N);
let network = circ.to_tensor_network();
let code = qudit_tensor::compile_network(network);
let mut tnvm =
qudit_tensor::TNVM::<c32, GRADIENT>::new(&code, Some(&circ.params.const_map()));
let result = tnvm.evaluate::<GRADIENT>(&[1.7; (3 * N) + (6 * (N - 1) * 2)]);
let _unitary = result.get_fn_result().unpack_matrix();
}
}
#[cfg(feature = "python")]
mod python {
use super::*;
use crate::python::PyCircuitRegistrar;
use ndarray::ArrayViewMut3;
use numpy::PyArray3;
use numpy::PyArrayMethods;
use pyo3::exceptions::PyTypeError;
use pyo3::prelude::*;
use pyo3::types::PyTuple;
use qudit_core::c64;
/// Helper function to parse a Python object that can be
/// either an integer or an iterable of integers.
fn parse_int_or_iterable<'py>(input: &Bound<'py, PyAny>) -> PyResult<Vec<usize>> {
// First, try to extract the input as a single integer.
if let Ok(val) = input.extract::<usize>() {
// If successful, create a Vec of that length filled with the value 2.
Ok(vec![2; val])
} else {
// If it's not an integer, try to treat it as an iterable.
// This will raise a TypeError if the object is not iterable
// or its elements are not integers.
pyo3::types::PyIterator::from_object(input)?
.map(|item| item?.extract::<usize>())
.collect::<PyResult<Vec<usize>>>()
}
}
#[pyclass]
#[pyo3(name = "QuditCircuit")]
#[derive(Clone)]
pub struct PyQuditCircuit {
circuit: QuditCircuit,
}
#[pymethods]
impl PyQuditCircuit {
/// Creates a new QuditCircuit instance.
///
/// Args:
/// qudits (int | Iterable[int]): An integer specifying number of qudits
/// or an iterable of qudit radices.
/// dits (int | Iterable[int] | None): An integer, an iterable, or None.
/// Defaults to None, which results in no classical dits.
#[new]
#[pyo3(signature = (qudits, dits = None))]
fn new<'py>(
qudits: &Bound<'py, PyAny>,
dits: Option<&Bound<'py, PyAny>>,
) -> PyResult<PyQuditCircuit> {
let qudits_vec = parse_int_or_iterable(qudits)?;
let dits_vec = match dits {
Some(pyany) => parse_int_or_iterable(pyany)?,
None => Vec::new(),
};
Ok(PyQuditCircuit {
circuit: QuditCircuit::new(qudits_vec, dits_vec),
})
}
fn clone(&self) -> PyQuditCircuit {
Clone::clone(self)
}
// --- Properties ---
//
/// Returns the number of qudits in the circuit.
#[getter]
fn num_qudits(&self) -> PyResult<usize> {
Ok(self.circuit.num_qudits())
}
/// Returns the number of parameters in the circuit.
#[getter]
fn num_params(&self) -> PyResult<usize> {
Ok(self.circuit.num_params())
}
/// Returns the number of operations in the circuit.
#[getter]
fn num_operations(&self) -> PyResult<usize> {
Ok(self.circuit.num_operations())
}
/// Returns the number of cycles in the circuit.
#[getter]
fn num_cycles(&self) -> PyResult<usize> {
Ok(self.circuit.num_cycles())
}
#[getter]
fn is_empty(&self) -> PyResult<bool> {
Ok(self.circuit.is_empty())
}
#[getter]
fn active_qudits(&self) -> PyResult<Vec<usize>> {
Ok(self.circuit.active_qudits())
}
#[getter]
fn active_dits(&self) -> PyResult<Vec<usize>> {
Ok(self.circuit.active_dits())
}
// @property def params(self) -> Parameters?
// @property def coupling_graph(self) -> CouplingGraph?
// @property def gate_set(self) -> GateSet?
// Metrics
//
// def depth(self, *, filter: Optional[Callable] = None, recursive: bool = True) -> int:
// def parallelism(self) -> float:
// def gate_counts(self, *, filter: Optional[Callable] = None, recursive: bool = True) -> int:
//
// Qudit Methods
//
// def append_qudit(self, radix: int = 2) -> None:
// def extend_qudits(self, radixes: Iterable[int]) -> None:
// def insert_qudit(self, qudit_index: int, radix: int = 2) -> None:
// def pop_qudit(self, qudit_index: int) -> None:
// def is_qudit_in_range(self, qudit_index: int) -> bool:
// def is_qudit_idle(self, qudit_index: int) -> bool:
// def renumber_qudits(self, qudit_permutation: Iterable[int]) -> None:
//
// Cycle Methods
//
// def pop_cycle(self, cycle_index: int) -> None?
//
// DAG Methods:
#[getter]
fn front(&self) -> HashMap<Wire, InstructionId> {
self.circuit.front()
}
#[getter]
fn rear(&self) -> HashMap<Wire, InstructionId> {
self.circuit.rear()
}
fn first_on(&self, wire: Wire) -> Option<InstructionId> {
self.circuit.first_on(wire)
}
fn last_on(&self, wire: Wire) -> Option<InstructionId> {
self.circuit.last_on(wire)
}
fn next(&self, inst_id: InstructionId) -> HashMap<Wire, InstructionId> {
self.circuit.next(inst_id)
}
fn prev(&self, inst_id: InstructionId) -> HashMap<Wire, InstructionId> {
self.circuit.prev(inst_id)
}
// At Methods:
//
// def get_operation(self, point: CircuitPointLike) -> Operation:
//
// def point(
// self,
// op: Operation | Gate,
// start: CircuitPointLike = (0, 0),
// end: CircuitPointLike | None = None,
// ) -> CircuitPoint:
//
// def append(self, op: Operation) -> int:
/// Returns the Kraus operators of the circuit as a NumPy array.
#[pyo3(signature = (args = None))]
pub fn kraus_ops<'py>(
&self,
py: Python<'py>,
args: Option<&Bound<'py, PyAny>>,
) -> PyResult<Bound<'py, PyArray3<c64>>> {
let rust_args: Vec<f64> = match args {
Some(py_args) => py_args.extract()?,
None => {
if self.circuit.num_params() != 0 {
return Err(PyTypeError::new_err(
"Circuit has parameters, but no arguments were provided to kraus_ops.",
));
}
Vec::new()
}
};
// Call the underlying Rust method
let tensor: Tensor<c64, 3> = self.circuit.kraus_ops(&rust_args);
let shape = tensor.dims();
let py_array: Bound<'py, PyArray3<c64>> = PyArray3::zeros(py, *shape, false);
{
let mut readwrite = py_array.readwrite();
let mut py_array_view: ArrayViewMut3<c64> = readwrite.as_array_mut();
for k in 0..shape[0] {
let kraus_op = tensor.subtensor_ref(k);
for (j, col) in kraus_op.col_iter().enumerate() {
for (i, val) in col.iter().enumerate() {
py_array_view[[k, i, j]] = *val;
}
}
}
}
Ok(py_array)
}
#[pyo3(signature = (op, loc, args = None))]
pub fn append<'py>(
&mut self,
op: Operation,
loc: &Bound<'py, PyAny>,
args: Option<ArgumentList>,
) -> PyResult<()> {
let num_qudits = op.num_qudits();
// 2. Parse 'loc' as an int, iterable of ints, or tuple of iterables
let parsed_loc = if let Ok(single_loc) = loc.extract::<usize>() {
WireList::pure([single_loc])
} else if let Ok(tuple) = loc.cast::<PyTuple>() {
if tuple.len() == 2 {
let item0 = tuple.get_item(0)?;
let item1 = tuple.get_item(1)?;
// Try parsing as (iterable, iterable)
if let (Ok(vec0), Ok(vec1)) =
(item0.extract::<Vec<usize>>(), item1.extract::<Vec<usize>>())
{
WireList::new(vec0, vec1)
}
// Else, try parsing as (int, int)
else if let (Ok(int0), Ok(int1)) =
(item0.extract::<usize>(), item1.extract::<usize>())
{
if num_qudits.is_some() && num_qudits == Some(1) {
WireList::new(vec![int0], vec![int1])
} else {
WireList::pure([int0, int1])
}
} else {
return Err(PyTypeError::new_err(
"A 2-element 'loc' tuple must contain (int, int) or (iterable, iterable)",
));
}
} else {
let mut qudit_register = tuple.extract::<Vec<usize>>()?;
let dit_register = qudit_register.split_off(num_qudits.unwrap());
WireList::new(qudit_register, dit_register)
}
} else if let Ok(list_loc) = loc.extract::<Vec<usize>>() {
let mut qudit_register = list_loc.clone();
let dit_register = qudit_register.split_off(num_qudits.unwrap());
WireList::new(qudit_register, dit_register)
} else {
return Err(PyTypeError::new_err(
"Argument 'loc' must be an int, an iterable of ints, or a tuple of two iterables of ints",
));
};
self.circuit.append(op, parsed_loc, args);
Ok(())
}
pub fn cache(&mut self, op: Operation) -> OpCode {
self.circuit.cache_operation(op)
}
// def append_gate
// def append_circuit
// def extend
// def insert
// def insert_gate
// def insert_circuit
// def remove(op)
fn remove(&mut self, inst_id: InstructionId) -> Option<Instruction> {
self.circuit.remove(inst_id)
}
// def remove_all
fn count(&self, op_code: OpCode) -> usize {
self.circuit.count(op_code)
}
// def pop(point)
// def batch_pop(points)
// def replace(point, op)
// def replace_all(op, op)
// def batch_replace(points, ops)
// def replace_gate
// def replace_with_circuit(... as circuit_gate = False)
//
// But like also, initializations, barriers, measurements, kraus ops, classical controls
//
// Movement/Ownership
//
// def copy()
// def become()
// def clear()
//
// Parameter Methods?
// def un-constant?
// def freeze
// Specified vs Constant appends are funky, A user should edit their expression
// before hand if they want to hardcode a constant into it, otherwise, circuits
// should track constant parameters, whether they are added as specified or const.
//
// User's should have ability to safely `def freeze(self, parameter_index: int, value: Constant)` and
// `def thaw(self, parameter_index: int)`
//
// For this, might need to add a new type of Parameter => Frozen({value: Constant, name:
// Option<String>}), when a named parameter is frozen, the name is stored for future thaws
// Also, if I add an expression with the same parameter, it should also be frozen.
//
// Advanced Algorithms
//
// def compress()
// def surround() // Need to seriously think about subcircuits/regions/grouping
// def invert()
// def evaluate(args)
// def evaluate_gradient(args)
// def evaluate_hessian(args)
// def instantiate(...)
//
// dunder methods
//
// __getitem__
// __iter__
// __reversed__
// __contains__
// __len__
// __invert__
// __eq__
// __ne__
// __add__
// __mul__
// __radd__
// __iadd__
// __imul__
// __str__
// __repr__
// operations/operations_with_cycles
//
// IO
//
// save
// to
// from_file
// from_unitary
// __reduce__
// rebuild_circuit
}
impl<'py> IntoPyObject<'py> for QuditCircuit {
type Target = <PyQuditCircuit as IntoPyObject<'py>>::Target;
type Output = <PyQuditCircuit as IntoPyObject<'py>>::Output;
type Error = <PyQuditCircuit as IntoPyObject<'py>>::Error;
fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
PyQuditCircuit::from(self).into_pyobject(py)
}
}
impl<'a, 'py> FromPyObject<'a, 'py> for QuditCircuit {
type Error = PyErr;
fn extract(obj: Borrowed<'a, 'py, PyAny>) -> PyResult<Self> {
let py_circuit_ref = obj.cast::<PyQuditCircuit>()?;
Ok(py_circuit_ref.borrow().circuit.clone())
}
}
impl From<QuditCircuit> for PyQuditCircuit {
fn from(value: QuditCircuit) -> Self {
PyQuditCircuit { circuit: value }
}
}
impl From<PyQuditCircuit> for QuditCircuit {
fn from(value: PyQuditCircuit) -> Self {
value.circuit
}
}
/// Registers the QuditCircuit class with the Python module.
fn register(parent_module: &Bound<'_, PyModule>) -> PyResult<()> {
parent_module.add_class::<PyQuditCircuit>()?;
Ok(())
}
inventory::submit!(PyCircuitRegistrar { func: register });
}