quantrs2-circuit 0.1.3

Quantum circuit representation and DSL for the QuantRS2 framework
Documentation
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
//! Abstract Syntax Tree for `OpenQASM` 3.0

use std::collections::HashMap;
use std::fmt;

/// Represents a complete QASM program
#[derive(Debug, Clone, PartialEq)]
pub struct QasmProgram {
    /// Version declaration
    pub version: String,
    /// Include statements
    pub includes: Vec<String>,
    /// Global declarations
    pub declarations: Vec<Declaration>,
    /// Statements in the program
    pub statements: Vec<QasmStatement>,
}

/// Declaration types
#[derive(Debug, Clone, PartialEq)]
pub enum Declaration {
    /// Quantum register declaration
    QuantumRegister(QasmRegister),
    /// Classical register declaration
    ClassicalRegister(QasmRegister),
    /// Gate definition
    GateDefinition(GateDefinition),
    /// Constant declaration
    Constant(String, Expression),
}

/// Register declaration
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct QasmRegister {
    /// Register name
    pub name: String,
    /// Size of the register
    pub size: usize,
}

/// Custom gate definition
#[derive(Debug, Clone, PartialEq)]
pub struct GateDefinition {
    /// Gate name
    pub name: String,
    /// Parameter names
    pub params: Vec<String>,
    /// Qubit arguments
    pub qubits: Vec<String>,
    /// Gate body
    pub body: Vec<QasmStatement>,
}

/// QASM statement types
#[derive(Debug, Clone, PartialEq)]
pub enum QasmStatement {
    /// Gate application
    Gate(QasmGate),
    /// Measurement
    Measure(Measurement),
    /// Reset operation
    Reset(Vec<QubitRef>),
    /// Barrier
    Barrier(Vec<QubitRef>),
    /// Classical assignment
    Assignment(String, Expression),
    /// If statement
    If(Condition, Box<Self>),
    /// For loop
    For(ForLoop),
    /// While loop
    While(Condition, Vec<Self>),
    /// Function call
    Call(String, Vec<Expression>),
    /// Delay
    Delay(Expression, Vec<QubitRef>),
}

/// Gate application
#[derive(Debug, Clone, PartialEq)]
pub struct QasmGate {
    /// Gate name
    pub name: String,
    /// Parameters (angles, etc.)
    pub params: Vec<Expression>,
    /// Qubit operands
    pub qubits: Vec<QubitRef>,
    /// Control modifier
    pub control: Option<usize>,
    /// Inverse modifier
    pub inverse: bool,
    /// Power modifier
    pub power: Option<Expression>,
}

/// Qubit reference
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum QubitRef {
    /// Single qubit: reg\[index\]
    Single { register: String, index: usize },
    /// Register slice: reg\[start:end\]
    Slice {
        register: String,
        start: usize,
        end: usize,
    },
    /// Entire register: reg
    Register(String),
}

/// Measurement operation
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Measurement {
    /// Qubits to measure
    pub qubits: Vec<QubitRef>,
    /// Classical bits to store results
    pub targets: Vec<ClassicalRef>,
}

/// Classical bit reference
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ClassicalRef {
    /// Single bit: reg\[index\]
    Single { register: String, index: usize },
    /// Register slice: reg\[start:end\]
    Slice {
        register: String,
        start: usize,
        end: usize,
    },
    /// Entire register: reg
    Register(String),
}

/// Expression types
#[derive(Debug, Clone, PartialEq)]
pub enum Expression {
    /// Literal value
    Literal(Literal),
    /// Variable reference
    Variable(String),
    /// Binary operation
    Binary(BinaryOp, Box<Self>, Box<Self>),
    /// Unary operation
    Unary(UnaryOp, Box<Self>),
    /// Function call
    Function(String, Vec<Self>),
    /// Array index
    Index(String, Box<Self>),
}

/// Literal values
#[derive(Debug, Clone, PartialEq)]
pub enum Literal {
    /// Integer
    Integer(i64),
    /// Floating point
    Float(f64),
    /// Boolean
    Bool(bool),
    /// String
    String(String),
    /// Pi constant
    Pi,
    /// Euler's number
    Euler,
    /// Tau (2*pi)
    Tau,
}

/// Binary operators
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum BinaryOp {
    Add,
    Sub,
    Mul,
    Div,
    Mod,
    Pow,
    Eq,
    Ne,
    Lt,
    Le,
    Gt,
    Ge,
    And,
    Or,
    Xor,
    BitAnd,
    BitOr,
    BitXor,
    Shl,
    Shr,
}

/// Unary operators
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum UnaryOp {
    Neg,
    Not,
    BitNot,
    Sin,
    Cos,
    Tan,
    Asin,
    Acos,
    Atan,
    Exp,
    Ln,
    Sqrt,
}

/// Condition for control flow
#[derive(Debug, Clone, PartialEq)]
pub struct Condition {
    /// Left operand
    pub left: Expression,
    /// Comparison operator
    pub op: ComparisonOp,
    /// Right operand
    pub right: Expression,
}

/// Comparison operators
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ComparisonOp {
    Eq,
    Ne,
    Lt,
    Le,
    Gt,
    Ge,
}

/// For loop structure
#[derive(Debug, Clone, PartialEq)]
pub struct ForLoop {
    /// Loop variable
    pub variable: String,
    /// Start value
    pub start: Expression,
    /// End value
    pub end: Expression,
    /// Step value (optional)
    pub step: Option<Expression>,
    /// Loop body
    pub body: Vec<QasmStatement>,
}

// Display implementations for pretty printing
impl fmt::Display for QasmProgram {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        writeln!(f, "OPENQASM {};", self.version)?;

        for include in &self.includes {
            writeln!(f, "include \"{include}\";")?;
        }

        if !self.includes.is_empty() {
            writeln!(f)?;
        }

        for decl in &self.declarations {
            writeln!(f, "{decl}")?;
        }

        if !self.declarations.is_empty() {
            writeln!(f)?;
        }

        for stmt in &self.statements {
            writeln!(f, "{stmt}")?;
        }

        Ok(())
    }
}

impl fmt::Display for Declaration {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::QuantumRegister(reg) => write!(f, "qubit[{}] {};", reg.size, reg.name),
            Self::ClassicalRegister(reg) => write!(f, "bit[{}] {};", reg.size, reg.name),
            Self::GateDefinition(def) => {
                write!(f, "gate {}", def.name)?;
                if !def.params.is_empty() {
                    write!(f, "({})", def.params.join(", "))?;
                }
                write!(f, " {}", def.qubits.join(", "))?;
                writeln!(f, " {{")?;
                for stmt in &def.body {
                    writeln!(f, "  {stmt}")?;
                }
                write!(f, "}}")
            }
            Self::Constant(name, expr) => write!(f, "const {name} = {expr};"),
        }
    }
}

impl fmt::Display for QasmStatement {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Gate(gate) => write!(f, "{gate}"),
            Self::Measure(meas) => {
                write!(f, "measure ")?;
                for (i, (q, c)) in meas.qubits.iter().zip(&meas.targets).enumerate() {
                    if i > 0 {
                        write!(f, ", ")?;
                    }
                    write!(f, "{q} -> {c}")?;
                }
                write!(f, ";")
            }
            Self::Reset(qubits) => {
                write!(f, "reset ")?;
                for (i, q) in qubits.iter().enumerate() {
                    if i > 0 {
                        write!(f, ", ")?;
                    }
                    write!(f, "{q}")?;
                }
                write!(f, ";")
            }
            Self::Barrier(qubits) => {
                write!(f, "barrier")?;
                if !qubits.is_empty() {
                    write!(f, " ")?;
                    for (i, q) in qubits.iter().enumerate() {
                        if i > 0 {
                            write!(f, ", ")?;
                        }
                        write!(f, "{q}")?;
                    }
                }
                write!(f, ";")
            }
            Self::Assignment(var, expr) => write!(f, "{var} = {expr};"),
            Self::If(cond, stmt) => write!(f, "if ({cond}) {stmt}"),
            Self::For(for_loop) => {
                writeln!(
                    f,
                    "for {} in [{}:{}] {{",
                    for_loop.variable, for_loop.start, for_loop.end
                )?;
                for stmt in &for_loop.body {
                    writeln!(f, "  {stmt}")?;
                }
                write!(f, "}}")
            }
            Self::While(cond, body) => {
                writeln!(f, "while ({cond}) {{")?;
                for stmt in body {
                    writeln!(f, "  {stmt}")?;
                }
                write!(f, "}}")
            }
            Self::Call(name, args) => {
                write!(f, "{name}(")?;
                for (i, arg) in args.iter().enumerate() {
                    if i > 0 {
                        write!(f, ", ")?;
                    }
                    write!(f, "{arg}")?;
                }
                write!(f, ");")
            }
            Self::Delay(duration, qubits) => {
                write!(f, "delay[{duration}]")?;
                if !qubits.is_empty() {
                    write!(f, " ")?;
                    for (i, q) in qubits.iter().enumerate() {
                        if i > 0 {
                            write!(f, ", ")?;
                        }
                        write!(f, "{q}")?;
                    }
                }
                write!(f, ";")
            }
        }
    }
}

impl fmt::Display for QasmGate {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        if let Some(ctrl) = self.control {
            write!(f, "ctrl({ctrl}) ")?;
        }
        if self.inverse {
            write!(f, "inv ")?;
        }
        if let Some(power) = &self.power {
            write!(f, "pow({power}) ")?;
        }

        write!(f, "{}", self.name)?;

        if !self.params.is_empty() {
            write!(f, "(")?;
            for (i, param) in self.params.iter().enumerate() {
                if i > 0 {
                    write!(f, ", ")?;
                }
                write!(f, "{param}")?;
            }
            write!(f, ")")?;
        }

        write!(f, " ")?;
        for (i, qubit) in self.qubits.iter().enumerate() {
            if i > 0 {
                write!(f, ", ")?;
            }
            write!(f, "{qubit}")?;
        }
        write!(f, ";")
    }
}

impl fmt::Display for QubitRef {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Single { register, index } => write!(f, "{register}[{index}]"),
            Self::Slice {
                register,
                start,
                end,
            } => write!(f, "{register}[{start}:{end}]"),
            Self::Register(name) => write!(f, "{name}"),
        }
    }
}

impl fmt::Display for ClassicalRef {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Single { register, index } => write!(f, "{register}[{index}]"),
            Self::Slice {
                register,
                start,
                end,
            } => write!(f, "{register}[{start}:{end}]"),
            Self::Register(name) => write!(f, "{name}"),
        }
    }
}

impl fmt::Display for Expression {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Literal(lit) => write!(f, "{lit}"),
            Self::Variable(name) => write!(f, "{name}"),
            Self::Binary(op, left, right) => write!(f, "({left} {op} {right})"),
            Self::Unary(op, expr) => write!(f, "({op}{expr})"),
            Self::Function(name, args) => {
                write!(f, "{name}(")?;
                for (i, arg) in args.iter().enumerate() {
                    if i > 0 {
                        write!(f, ", ")?;
                    }
                    write!(f, "{arg}")?;
                }
                write!(f, ")")
            }
            Self::Index(name, idx) => write!(f, "{name}[{idx}]"),
        }
    }
}

impl fmt::Display for Literal {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Integer(n) => write!(f, "{n}"),
            Self::Float(x) => write!(f, "{x}"),
            Self::Bool(b) => write!(f, "{b}"),
            Self::String(s) => write!(f, "\"{s}\""),
            Self::Pi => write!(f, "pi"),
            Self::Euler => write!(f, "e"),
            Self::Tau => write!(f, "tau"),
        }
    }
}

impl fmt::Display for BinaryOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let op = match self {
            Self::Add => "+",
            Self::Sub => "-",
            Self::Mul => "*",
            Self::Div => "/",
            Self::Mod => "%",
            Self::Pow => "**",
            Self::Eq => "==",
            Self::Ne => "!=",
            Self::Lt => "<",
            Self::Le => "<=",
            Self::Gt => ">",
            Self::Ge => ">=",
            Self::And => "&&",
            Self::Or => "||",
            Self::Xor => "^^",
            Self::BitAnd => "&",
            Self::BitOr => "|",
            Self::BitXor => "^",
            Self::Shl => "<<",
            Self::Shr => ">>",
        };
        write!(f, "{op}")
    }
}

impl fmt::Display for UnaryOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let op = match self {
            Self::Neg => "-",
            Self::Not => "!",
            Self::BitNot => "~",
            Self::Sin => "sin",
            Self::Cos => "cos",
            Self::Tan => "tan",
            Self::Asin => "asin",
            Self::Acos => "acos",
            Self::Atan => "atan",
            Self::Exp => "exp",
            Self::Ln => "ln",
            Self::Sqrt => "sqrt",
        };
        write!(f, "{op}")
    }
}

impl fmt::Display for Condition {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{} {} {}", self.left, self.op, self.right)
    }
}

impl fmt::Display for ComparisonOp {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let op = match self {
            Self::Eq => "==",
            Self::Ne => "!=",
            Self::Lt => "<",
            Self::Le => "<=",
            Self::Gt => ">",
            Self::Ge => ">=",
        };
        write!(f, "{op}")
    }
}