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
//! Circuit builder and executable circuit types.
use crate::protocols::{Gate, Plain};
use crate::SubCircuitGate;
use bytemuck::Pod;
use either::Either;
use num_integer::Integer;
use petgraph::adj::IndexType;
use serde::{Deserialize, Serialize};
use std::fmt::Debug;
use std::hash::Hash;
use std::iter;
use std::num::NonZeroUsize;

pub mod base_circuit;
pub mod builder;
pub(crate) mod circuit_connections;
pub mod dyn_layers;
pub mod static_layers;

pub use crate::protocols::boolean_gmw::BooleanGate;
pub use base_circuit::{BaseCircuit, GateId};
pub use builder::{CircuitBuilder, SharedCircuit, SubCircCache};

macro_rules! circ_path {
    ($file:expr) => {
        include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/circuits/", $file))
    };
}
// TODO the plain text of these bristol circuits is currently always embedded into the binary
//  maybe we can find a better solution for this, or toggle this via a feature
pub const BRISTOL_ADD_8: &str = circ_path!("int_add8_depth.bristol");
pub const BRISTOL_ADD_16: &str = circ_path!("int_add16_depth.bristol");
pub const BRISTOL_ADD_32: &str = circ_path!("int_add32_depth.bristol");
pub const BRISTOL_ADD_64: &str = circ_path!("int_add64_depth.bristol");

pub type CircuitId = u32;

pub trait GateIdx:
    IndexType
    + Integer
    + Copy
    + Send
    + Sync
    + TryFrom<usize>
    + TryFrom<u32>
    + TryFrom<u16>
    + Into<GateId<Self>>
    + Pod
{
}

impl<T> GateIdx for T where
    T: IndexType
        + Integer
        + Copy
        + Send
        + Sync
        + TryFrom<usize>
        + TryFrom<u32>
        + TryFrom<u16>
        + Into<GateId<Self>>
        + Pod
{
}

pub type DefaultIdx = u32;

pub trait LayerIterable {
    type Layer;
    type LayerIter<'this>: Iterator<Item = Self::Layer>
    where
        Self: 'this;

    fn layer_iter(&self) -> Self::LayerIter<'_>;
}

#[derive(Debug, Serialize, Deserialize)]
#[serde(bound = "\
    G: serde::Serialize + serde::de::DeserializeOwned,\
    Idx: GateIdx + Ord + Eq + Hash + serde::Serialize + serde::de::DeserializeOwned")]
pub enum ExecutableCircuit<P, G, Idx> {
    DynLayers(dyn_layers::Circuit<P, G, Idx>),
    StaticLayers(static_layers::Circuit<G, Idx>),
}

pub enum ExecutableLayer<'c, P, G, Idx: Hash + PartialEq + Eq> {
    DynLayer(dyn_layers::CircuitLayer<P, G, Idx>),
    StaticLayer(static_layers::ScLayerIterator<'c, G, Idx>),
}

impl<P, G, Idx> ExecutableCircuit<P, G, Idx> {
    pub fn interactive_count(&self) -> usize {
        match self {
            ExecutableCircuit::DynLayers(circ) => circ.interactive_count(),
            ExecutableCircuit::StaticLayers(circ) => circ.interactive_count(),
        }
    }

    // Returns interactive count and treats each interactive gate in a SIMD circuit as <simd_size>
    // interactive gates.
    pub fn interactive_count_times_simd(&self) -> usize {
        match self {
            ExecutableCircuit::DynLayers(circ) => circ.interactive_count_times_simd(),
            ExecutableCircuit::StaticLayers(circ) => circ.interactive_count_times_simd(),
        }
    }

    pub fn input_count(&self) -> usize {
        match self {
            ExecutableCircuit::DynLayers(circ) => circ.input_count(),
            ExecutableCircuit::StaticLayers(circ) => circ.input_count(),
        }
    }

    pub fn output_count(&self) -> usize {
        match self {
            ExecutableCircuit::DynLayers(circ) => circ.output_count(),
            ExecutableCircuit::StaticLayers(circ) => circ.output_count(),
        }
    }

    pub fn input_gates(&self) -> &[GateId<Idx>] {
        match self {
            ExecutableCircuit::DynLayers(circ) => circ.get_circ(0).input_gates(),
            ExecutableCircuit::StaticLayers(circ) => circ.input_gates(),
        }
    }

    pub fn output_gates(&self) -> &[GateId<Idx>] {
        match self {
            ExecutableCircuit::DynLayers(circ) => circ.get_circ(0).output_gates(),
            ExecutableCircuit::StaticLayers(circ) => circ.output_gates(),
        }
    }

    pub fn simd_size(&self, circ_id: CircuitId) -> Option<NonZeroUsize> {
        match self {
            ExecutableCircuit::DynLayers(circ) => circ.get_circ(circ_id).simd_size(),
            ExecutableCircuit::StaticLayers(circ) => circ.get_circ(circ_id).simd_size(),
        }
    }
}

impl<P: Plain, G: Gate<P>, Idx: GateIdx> ExecutableCircuit<P, G, Idx> {
    pub fn precompute_layers(self) -> Self {
        match self {
            ExecutableCircuit::DynLayers(circ) => {
                ExecutableCircuit::StaticLayers(circ.precompute_layers())
            }
            compressed @ ExecutableCircuit::StaticLayers(_) => compressed,
        }
    }

    pub fn gate_count(&self) -> usize {
        match self {
            ExecutableCircuit::DynLayers(circ) => circ.gate_count(),
            ExecutableCircuit::StaticLayers(circ) => circ.gate_count(),
        }
    }

    /// Returns iterator over tuples of (gate_count, simd_size) for each sub_circuit
    pub fn gate_counts(&self) -> impl Iterator<Item = (usize, Option<NonZeroUsize>)> + '_ {
        match self {
            ExecutableCircuit::DynLayers(circ) => Either::Left(
                circ.iter_circs()
                    .map(|bc| (bc.gate_count(), bc.simd_size())),
            ),
            ExecutableCircuit::StaticLayers(circ) => Either::Right(circ.gate_counts()),
        }
    }

    pub fn iter(&self) -> impl Iterator<Item = (G, SubCircuitGate<Idx>)> + Clone + '_ {
        match self {
            ExecutableCircuit::DynLayers(circ) => Either::Left(circ.iter()),
            ExecutableCircuit::StaticLayers(circ) => Either::Right(circ.iter()),
        }
    }

    pub fn iter_with_parents(
        &self,
    ) -> impl Iterator<
        Item = (
            G,
            SubCircuitGate<Idx>,
            impl Iterator<Item = SubCircuitGate<Idx>> + '_,
        ),
    > + '_ {
        match self {
            ExecutableCircuit::DynLayers(circ) => {
                let iter = circ
                    .iter()
                    .map(|(g, idx)| (g, idx, Either::Left(circ.parent_gates(idx))));
                Either::Left(iter)
            }
            ExecutableCircuit::StaticLayers(circ) => Either::Right(
                circ.iter_with_parents()
                    .map(|(g, idx, parents)| (g, idx, Either::Right(parents))),
            ),
        }
    }

    pub fn interactive_iter(&self) -> impl Iterator<Item = (G, SubCircuitGate<Idx>)> + Clone + '_ {
        match self {
            ExecutableCircuit::DynLayers(circ) => Either::Left(circ.interactive_iter()),
            ExecutableCircuit::StaticLayers(circ) => Either::Right(circ.interactive_iter()),
        }
    }

    pub fn interactive_with_parents_iter(
        &self,
    ) -> impl Iterator<
        Item = (
            G,
            SubCircuitGate<Idx>,
            impl Iterator<Item = SubCircuitGate<Idx>> + '_,
        ),
    > + '_ {
        match self {
            ExecutableCircuit::DynLayers(circ) => Either::Left(
                circ.interactive_iter()
                    .map(|(g, idx)| (g, idx, Either::Left(circ.parent_gates(idx)))),
            ),
            ExecutableCircuit::StaticLayers(circ) => Either::Right(
                circ.interactive_with_parents_iter()
                    .map(|(g, idx, parents)| (g, idx, Either::Right(parents))),
            ),
        }
    }

    pub fn layer_iter(&self) -> impl Iterator<Item = ExecutableLayer<'_, P, G, Idx>> + '_ {
        match self {
            ExecutableCircuit::DynLayers(circ) => {
                Either::Left(dyn_layers::CircuitLayerIter::new(circ).map(ExecutableLayer::DynLayer))
            }
            ExecutableCircuit::StaticLayers(circ) => Either::Right(
                static_layers::LayerIterator::new(circ).map(ExecutableLayer::StaticLayer),
            ),
        }
    }
}

impl<P: Clone, G: Clone, Idx: GateIdx> Clone for ExecutableCircuit<P, G, Idx> {
    fn clone(&self) -> Self {
        match self {
            Self::DynLayers(circ) => Self::DynLayers(circ.clone()),
            Self::StaticLayers(circ) => Self::StaticLayers(circ.clone()),
        }
    }
}

impl<'c, P: Plain, G: Gate<P>, Idx: GateIdx> ExecutableLayer<'c, P, G, Idx> {
    pub fn interactive_count(&self) -> usize {
        match self {
            ExecutableLayer::DynLayer(layer) => layer.interactive_iter().count(),
            ExecutableLayer::StaticLayer(layer_iter) => layer_iter
                .clone()
                .map(|layer| layer.interactive_count())
                .sum(),
        }
    }

    pub fn interactive_count_times_simd(&self) -> usize {
        match self {
            ExecutableLayer::DynLayer(layer) => layer.interactive_count_times_simd(),
            ExecutableLayer::StaticLayer(layer_iter) => layer_iter.interactive_count_times_simd(),
        }
    }

    pub fn interactive_iter(&self) -> impl Iterator<Item = (G, SubCircuitGate<Idx>)> + Clone + '_ {
        match self {
            ExecutableLayer::DynLayer(layer) => Either::Left(layer.interactive_iter()),
            ExecutableLayer::StaticLayer(layer_iter) => {
                Either::Right(layer_iter.clone().flat_map(|layer| {
                    layer
                        .interactive_iter()
                        .map(move |(g, id)| (g, SubCircuitGate::new(layer.sc_id, id)))
                }))
            }
        }
    }

    pub fn interactive_gates<'s>(&'s self) -> impl Iterator<Item = &'s [G]> + Clone
    where
        'c: 's,
    {
        match self {
            ExecutableLayer::DynLayer(layer) => Either::Left(
                layer
                    .sc_layers
                    .iter()
                    .map(|(_, _, base_layer)| &base_layer.interactive_gates[..]),
            ),
            ExecutableLayer::StaticLayer(layer_iter) => {
                Either::Right(layer_iter.clone().map(|layer| layer.interactive_gates()))
            }
        }
    }

    pub fn interactive_indices<'s>(
        &'s self,
    ) -> impl Iterator<Item = (CircuitId, &'s [GateId<Idx>])> + Clone
    where
        'c: 's,
    {
        match self {
            ExecutableLayer::DynLayer(layer) => Either::Left(
                layer
                    .sc_layers
                    .iter()
                    .map(|(sc_id, _, base_layer)| (*sc_id, &base_layer.interactive_ids[..])),
            ),
            ExecutableLayer::StaticLayer(layer_iter) => Either::Right(
                layer_iter
                    .clone()
                    .map(|layer| (layer.sc_id, layer.interactive_indices())),
            ),
        }
    }

    pub fn interactive_parents_iter<'s>(
        &'s self,
        circ: &'c ExecutableCircuit<P, G, Idx>,
    ) -> impl Iterator<Item = impl Iterator<Item = SubCircuitGate<Idx>> + 'c> + 's
    where
        'c: 's,
    {
        match (self, circ) {
            (ExecutableLayer::DynLayer(layer), ExecutableCircuit::DynLayers(circ)) => Either::Left(
                layer
                    .interactive_iter()
                    .map(|(_, id)| Either::Left(circ.parent_gates(id))),
            ),
            (ExecutableLayer::StaticLayer(layer_iter), ExecutableCircuit::StaticLayers(circ)) => {
                Either::Right(
                    layer_iter
                        .clone()
                        .flat_map(|layer| layer.interactive_parents_iter(circ).map(Either::Right)),
                )
            }
            _ => panic!("Non matching ExecutableLayer and ExecutableCircuit"),
        }
    }

    pub fn non_interactive_iter(
        &self,
    ) -> impl Iterator<Item = (G, SubCircuitGate<Idx>)> + Clone + '_ {
        match self {
            ExecutableLayer::DynLayer(layer) => Either::Left(layer.non_interactive_iter()),
            ExecutableLayer::StaticLayer(layer_iter) => {
                Either::Right(layer_iter.clone().flat_map(|layer| {
                    layer
                        .non_interactive_iter()
                        .map(move |(g, id)| (g, SubCircuitGate::new(layer.sc_id, id)))
                }))
            }
        }
    }

    pub fn non_interactive_with_parents_iter<'s>(
        &'s self,
        circ: &'c ExecutableCircuit<P, G, Idx>,
    ) -> impl Iterator<
        Item = (
            (G, SubCircuitGate<Idx>),
            impl Iterator<Item = SubCircuitGate<Idx>> + 'c,
        ),
    > + 's
    where
        'c: 's,
    {
        match (self, circ) {
            (ExecutableLayer::DynLayer(layer), ExecutableCircuit::DynLayers(circ)) => Either::Left(
                layer
                    .non_interactive_iter()
                    .map(|(g, id)| ((g, id), Either::Left(circ.parent_gates(id)))),
            ),
            (ExecutableLayer::StaticLayer(layer_iter), ExecutableCircuit::StaticLayers(circ)) => {
                Either::Right(layer_iter.clone().flat_map(|layer| {
                    let non_inter_active_iter = layer
                        .non_interactive_iter()
                        .map(move |(g, id)| (g, SubCircuitGate::new(layer.sc_id, id)));

                    iter::zip(
                        non_inter_active_iter,
                        layer.non_interactive_parents_iter(circ).map(Either::Right),
                    )
                }))
            }
            _ => panic!("Non matching ExecutableLayer and ExecutableCircuit"),
        }
    }

    // Returns freeable SIMD gates
    pub(crate) fn freeable_simd_gates(&self) -> impl Iterator<Item = SubCircuitGate<Idx>> + '_ {
        match self {
            ExecutableLayer::DynLayer(layer) => Either::Left(layer.freeable_simd_gates()),
            ExecutableLayer::StaticLayer(_) => Either::Right(iter::empty()),
        }
    }

    /// Split layer into (scalar, simd) gates
    pub(crate) fn split_simd(self) -> (Self, Self) {
        match self {
            Self::DynLayer(layer) => {
                let (scalar, simd) = layer.split_simd();
                (Self::DynLayer(scalar), Self::DynLayer(simd))
            }
            Self::StaticLayer(layer_iter) => {
                let (scalar, simd) = layer_iter.split_simd();
                (Self::StaticLayer(scalar), Self::StaticLayer(simd))
            }
        }
    }
}