Struct seec::circuit::builder::CircuitBuilder
source · pub struct CircuitBuilder<P = bool, G = BooleanGate, Idx = DefaultIdx> { /* private fields */ }
Implementations§
source§impl<P: Plain, G: Gate<P>, Idx: GateIdx> CircuitBuilder<P, G, Idx>
impl<P: Plain, G: Gate<P>, Idx: GateIdx> CircuitBuilder<P, G, Idx>
pub fn install(self) -> Self
pub fn get_global_circuit(id: CircuitId) -> Option<SharedCircuit<P, G, Idx>>
pub fn push_global_circuit(circuit: SharedCircuit<P, G, Idx>) -> CircuitId
sourcepub fn with_global<R, F>(op: F) -> Rwhere
F: FnOnce(&mut CircuitBuilder<P, G, Idx>) -> R,
pub fn with_global<R, F>(op: F) -> Rwhere
F: FnOnce(&mut CircuitBuilder<P, G, Idx>) -> R,
Examples found in repository?
crates/seec/examples/aes_cbc.rs (lines 444-447)
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
fn aes128(
key: &[Secret<BooleanGmw, usize>],
chunk: &[Secret<BooleanGmw, usize>],
use_sc: bool,
) -> Vec<Secret<BooleanGmw, usize>> {
static AES_CIRC: Lazy<SharedCircuit<bool, BooleanGate, usize>> = Lazy::new(|| {
let aes_circ_str = include_str!("../test_resources/bristol-circuits/aes_128.bristol");
BaseCircuit::from_bristol(
seec::bristol::circuit(aes_circ_str).expect("parsing AES circuit failed"),
Load::SubCircuit,
)
.expect("converting AES circuit failed")
.into_shared()
});
let inp = [chunk, key].concat();
if use_sc {
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
let circ_id = builder.push_circuit(AES_CIRC.clone());
(builder.connect_sub_circuit(&inp, circ_id), circ_id)
});
output.connect_to_main(circ_id)
} else {
CircuitBuilder::with_global(|builder| {
let inp = inp.into_iter().map(|sh| {
assert_eq!(0, sh.circuit_id());
sh.gate_id()
});
let out = builder
.get_main_circuit()
.lock()
.add_sub_circuit(&AES_CIRC.lock(), inp);
out.into_iter()
.map(|gate_id| Secret::from_parts(0, gate_id))
.collect()
})
}
}
More examples
crates/seec/examples/bristol.rs (lines 124-129)
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
fn compile(compile_args: CompileArgs) -> Result<()> {
let load = match compile_args.simd {
Some(_) => Load::SubCircuit,
None => Load::Circuit,
};
let mut bc: BaseCircuit = BaseCircuit::load_bristol(&compile_args.circuit, load)
.expect("failed to load bristol circuit");
let mut circ = match compile_args.simd {
Some(size) => {
bc.set_simd_size(size);
let circ_input_size = bc.sub_circuit_input_count();
let inputs = inputs::<u32>(circ_input_size);
let bc = bc.into_shared();
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
builder.get_main_circuit().lock().set_simd_size(size);
let circ_id = builder.push_circuit(bc);
let output = builder.connect_sub_circuit(&inputs, circ_id);
(output, circ_id)
});
let main = output.connect_to_main(circ_id);
main.iter().for_each(|s| {
s.output();
});
let circ = CircuitBuilder::global_into_circuit();
ExecutableCircuit::DynLayers(circ)
}
None => ExecutableCircuit::DynLayers(bc.into()),
};
if !compile_args.dyn_layers {
circ = circ.precompute_layers();
}
let out =
BufWriter::new(File::create(&compile_args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
pub fn with_global_main_circ_mut<R, F>(f: F) -> Rwhere
F: FnOnce(&mut BaseCircuit<P, G, Idx>) -> R,
sourcepub fn global_into_circuit() -> Circuit<P, G, Idx>
pub fn global_into_circuit() -> Circuit<P, G, Idx>
Examples found in repository?
crates/seec/examples/aes_cbc.rs (lines 401-405)
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
fn build_enc_circuit(
data_size_bits: usize,
use_sc: bool,
) -> Result<ExecutableCircuit<bool, BooleanGate, usize>> {
assert_eq!(
data_size_bits % 128,
0,
"data_size must be multiple of 128 bits"
);
let key_size = 128;
let iv_size = 128;
let key = inputs(key_size);
let iv = inputs(iv_size);
let data = inputs(data_size_bits);
let mut chaining_state = iv;
data.chunks_exact(128)
.for_each(|chunk| aes_cbc_chunk(&key, chunk, &mut chaining_state, use_sc));
Ok(ExecutableCircuit::DynLayers(CircuitBuilder::<
bool,
BooleanGate,
usize,
>::global_into_circuit()))
}
More examples
crates/seec/examples/sub_circuits.rs (line 40)
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
fn main() {
tracing_subscriber::fmt()
.with_env_filter(EnvFilter::from_default_env())
.init();
let input_shares = inputs(8);
let and_outputs = input_shares
.chunks_exact(4)
.fold(vec![], |mut acc, input_chunk| {
let output = and_sc(input_chunk);
acc.push(output);
acc
});
let or_out = or_sc(&and_outputs);
(or_out ^ false).output();
let circuit: Circuit<bool, BooleanGate, DefaultIdx> = CircuitBuilder::global_into_circuit();
let layer_iter = CircuitLayerIter::new(&circuit);
for layer in layer_iter {
dbg!(layer);
}
// let circuit = circuit.into_base_circuit();
// eprintln!("into base");
// circuit.save_dot("sub_circuits.dot").unwrap();
}
crates/seec/examples/bristol.rs (line 134)
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
fn compile(compile_args: CompileArgs) -> Result<()> {
let load = match compile_args.simd {
Some(_) => Load::SubCircuit,
None => Load::Circuit,
};
let mut bc: BaseCircuit = BaseCircuit::load_bristol(&compile_args.circuit, load)
.expect("failed to load bristol circuit");
let mut circ = match compile_args.simd {
Some(size) => {
bc.set_simd_size(size);
let circ_input_size = bc.sub_circuit_input_count();
let inputs = inputs::<u32>(circ_input_size);
let bc = bc.into_shared();
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
builder.get_main_circuit().lock().set_simd_size(size);
let circ_id = builder.push_circuit(bc);
let output = builder.connect_sub_circuit(&inputs, circ_id);
(output, circ_id)
});
let main = output.connect_to_main(circ_id);
main.iter().for_each(|s| {
s.output();
});
let circ = CircuitBuilder::global_into_circuit();
ExecutableCircuit::DynLayers(circ)
}
None => ExecutableCircuit::DynLayers(bc.into()),
};
if !compile_args.dyn_layers {
circ = circ.precompute_layers();
}
let out =
BufWriter::new(File::create(&compile_args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
crates/seec/examples/simple.rs (line 108)
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
async fn main() -> Result<()> {
// Initialize logging, see top of file for instructions on how to get output.
tracing_subscriber::fmt()
.with_env_filter(EnvFilter::from_default_env())
.init();
// Create the Circuit. The operations on the Secret will use a lazily initialized
// global CircuitBuilder from which we can get the constructed Circuit
build_circuit();
// Save the circuit in .dot format for easy inspection and debugging
// circuit.lock().save_dot("examples/simple-circuit.dot")?;
// In an actual setting, we would have two parties on different hosts, each constructing the
// same circuit and evaluating it. To simulate that, we convert the shared Circuit into
// an owned Circuit and clone it. The conversion will fail if there are any outstanding clones
// of the SharedCircuit, e.g. when there are Secrets still alive.
// Each party has their own but identical circuit.
let circuit_party_0: Circuit = CircuitBuilder::global_into_circuit();
let circuit_party_1 = circuit_party_0.clone();
// Spawn separate tasks for each party
let party0 = tokio::spawn(async { party(circuit_party_0, 0).await.unwrap() });
// Sleep a little to ensure the server is started. In practice party 1 should retry the
// connection
sleep(Duration::from_millis(100)).await;
let party1 = tokio::spawn(async { party(circuit_party_1, 1).await.unwrap() });
// Join the handles returned by tokio::spawn to wait for the completion of the protocol
let (out_0, out_1) = tokio::try_join!(party0, party1)?;
// Xor the individual shares to get the final output
let out = out_0 ^ out_1;
println!("Output of the circuit: {out}");
Ok(())
}
crates/seec/examples/privmail.rs (line 222)
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
async fn main() -> anyhow::Result<()> {
let args: Args = Args::parse();
let search_query: SearchQuery =
serde_yaml::from_reader(File::open(args.query_file_path).expect("Opening query file"))
.expect("Deserializing query file");
let mails: Vec<Mail> = fs::read_dir(args.mail_dir_path)
.expect("Reading mail dir")
.map(|entry| {
let entry = entry.expect("Mail dir iteration");
serde_yaml::from_reader(File::open(entry.path()).expect("Opening mail file"))
.expect("Deserializing mail file")
})
.collect();
tracing_subscriber::fmt()
.with_env_filter(EnvFilter::from_default_env())
.init();
let (input, _) = priv_mail_search(
&search_query.keywords,
&search_query.modifier_chain_share,
&mails,
args.duplication_factor,
);
let circuit: ExecutableCircuit<bool, _, _> =
ExecutableCircuit::DynLayers(CircuitBuilder::global_into_circuit());
// if args.save_circuit {
// circuit.save_dot("privmail.dot")?;
// }
let (mut sender, bytes_written, mut receiver, bytes_read) = match args.my_id {
0 => seec_channel::tcp::listen(args.server).await?,
1 => seec_channel::tcp::connect(args.server).await?,
illegal => anyhow::bail!("Illegal party id {illegal}. Must be 0 or 1."),
};
let mut executor = {
let mt_provider = InsecureMTProvider::default();
BoolGmwExecutor::new(&circuit, args.my_id, mt_provider).await?
};
let (mut sender, mut receiver) =
sub_channels_for!(&mut sender, &mut receiver, 16, Message<BooleanGmw>).await?;
let output = executor
.execute(Input::Scalar(input), &mut sender, &mut receiver)
.await?;
info!(
my_id = %args.my_id,
output = ?output,
bytes_written = bytes_written.get(),
bytes_read = bytes_read.get(),
gate_count = circuit.gate_count()
);
Ok(())
}
crates/seec/examples/privmail_sc.rs (line 211)
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
async fn main() -> anyhow::Result<()> {
let args: Args = Args::parse();
let search_query: SearchQuery =
serde_yaml::from_reader(File::open(args.query_file_path).expect("Opening query file"))
.expect("Deserializing query file");
let mails: Vec<Mail> = fs::read_dir(args.mail_dir_path)
.expect("Reading mail dir")
.map(|entry| {
let entry = entry.expect("Mail dir iteration");
serde_yaml::from_reader(File::open(entry.path()).expect("Opening mail file"))
.expect("Deserializing mail file")
})
.collect();
tracing_subscriber::fmt()
.with_env_filter(EnvFilter::from_default_env())
.init();
let now = Instant::now();
let (input, _) = priv_mail_search(
&search_query.keywords,
&search_query.modifier_chain_share,
&mails,
args.duplication_factor,
);
let circuit = ExecutableCircuit::DynLayers(CircuitBuilder::global_into_circuit());
info!("Building circuit took: {}", now.elapsed().as_secs_f32());
// circuit = circuit.clone().into_base_circuit().into();
// if args.save_circuit {
// bc.save_dot("privmail.dot")?;
// }
// dbg!(&circuit);
let (mut sender, bytes_written, mut receiver, bytes_read) = match args.my_id {
0 => seec_channel::tcp::listen(args.server).await?,
1 => seec_channel::tcp::connect(args.server).await?,
illegal => anyhow::bail!("Illegal party id {illegal}. Must be 0 or 1."),
};
let (ch1, mut ch2) = sub_channels_for!(
&mut sender,
&mut receiver,
64,
seec_channel::Sender<ot_ext::ExtOTMsg>,
Message<BooleanGmw>
)
.await?;
let mut executor = {
let mt_provider = OtMTProvider::new(
OsRng,
ot_ext::Sender::default(),
ot_ext::Receiver::default(),
ch1.0,
ch1.1,
);
BoolGmwExecutor::new(&circuit, args.my_id, mt_provider).await?
};
let output = executor
.execute(Input::Scalar(input), &mut ch2.0, &mut ch2.1)
.await?;
info!(
my_id = %args.my_id,
output = ?output,
bytes_written = bytes_written.get(),
bytes_read = bytes_read.get(),
gate_count = circuit.gate_count(),
);
Ok(())
}
sourcepub fn connect_sub_circuit<Prot>(
&mut self,
inputs: &[Secret<Prot, Idx>],
sc_id: CircuitId
) -> Vec<Secret<Prot, Idx>>where
Prot: Protocol<Gate = G>,
pub fn connect_sub_circuit<Prot>(
&mut self,
inputs: &[Secret<Prot, Idx>],
sc_id: CircuitId
) -> Vec<Secret<Prot, Idx>>where
Prot: Protocol<Gate = G>,
Examples found in repository?
crates/seec/examples/aes_cbc.rs (line 446)
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
fn aes128(
key: &[Secret<BooleanGmw, usize>],
chunk: &[Secret<BooleanGmw, usize>],
use_sc: bool,
) -> Vec<Secret<BooleanGmw, usize>> {
static AES_CIRC: Lazy<SharedCircuit<bool, BooleanGate, usize>> = Lazy::new(|| {
let aes_circ_str = include_str!("../test_resources/bristol-circuits/aes_128.bristol");
BaseCircuit::from_bristol(
seec::bristol::circuit(aes_circ_str).expect("parsing AES circuit failed"),
Load::SubCircuit,
)
.expect("converting AES circuit failed")
.into_shared()
});
let inp = [chunk, key].concat();
if use_sc {
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
let circ_id = builder.push_circuit(AES_CIRC.clone());
(builder.connect_sub_circuit(&inp, circ_id), circ_id)
});
output.connect_to_main(circ_id)
} else {
CircuitBuilder::with_global(|builder| {
let inp = inp.into_iter().map(|sh| {
assert_eq!(0, sh.circuit_id());
sh.gate_id()
});
let out = builder
.get_main_circuit()
.lock()
.add_sub_circuit(&AES_CIRC.lock(), inp);
out.into_iter()
.map(|gate_id| Secret::from_parts(0, gate_id))
.collect()
})
}
}
More examples
crates/seec/examples/bristol.rs (line 127)
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
fn compile(compile_args: CompileArgs) -> Result<()> {
let load = match compile_args.simd {
Some(_) => Load::SubCircuit,
None => Load::Circuit,
};
let mut bc: BaseCircuit = BaseCircuit::load_bristol(&compile_args.circuit, load)
.expect("failed to load bristol circuit");
let mut circ = match compile_args.simd {
Some(size) => {
bc.set_simd_size(size);
let circ_input_size = bc.sub_circuit_input_count();
let inputs = inputs::<u32>(circ_input_size);
let bc = bc.into_shared();
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
builder.get_main_circuit().lock().set_simd_size(size);
let circ_id = builder.push_circuit(bc);
let output = builder.connect_sub_circuit(&inputs, circ_id);
(output, circ_id)
});
let main = output.connect_to_main(circ_id);
main.iter().for_each(|s| {
s.output();
});
let circ = CircuitBuilder::global_into_circuit();
ExecutableCircuit::DynLayers(circ)
}
None => ExecutableCircuit::DynLayers(bc.into()),
};
if !compile_args.dyn_layers {
circ = circ.precompute_layers();
}
let out =
BufWriter::new(File::create(&compile_args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
sourcepub fn connect_circuits(
&mut self,
connections: impl IntoIterator<Item = (Secret<BooleanGmw, Idx>, Secret<BooleanGmw, Idx>)>
)
pub fn connect_circuits( &mut self, connections: impl IntoIterator<Item = (Secret<BooleanGmw, Idx>, Secret<BooleanGmw, Idx>)> )
source§impl<P, G: Gate<P>, Idx: GateIdx> CircuitBuilder<P, G, Idx>
impl<P, G: Gate<P>, Idx: GateIdx> CircuitBuilder<P, G, Idx>
pub fn new() -> Self
pub fn circuits_count(&self) -> usize
sourcepub fn get_main_circuit(&self) -> SharedCircuit<P, G, Idx>
pub fn get_main_circuit(&self) -> SharedCircuit<P, G, Idx>
Examples found in repository?
crates/seec/examples/aes_cbc.rs (line 456)
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
fn aes128(
key: &[Secret<BooleanGmw, usize>],
chunk: &[Secret<BooleanGmw, usize>],
use_sc: bool,
) -> Vec<Secret<BooleanGmw, usize>> {
static AES_CIRC: Lazy<SharedCircuit<bool, BooleanGate, usize>> = Lazy::new(|| {
let aes_circ_str = include_str!("../test_resources/bristol-circuits/aes_128.bristol");
BaseCircuit::from_bristol(
seec::bristol::circuit(aes_circ_str).expect("parsing AES circuit failed"),
Load::SubCircuit,
)
.expect("converting AES circuit failed")
.into_shared()
});
let inp = [chunk, key].concat();
if use_sc {
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
let circ_id = builder.push_circuit(AES_CIRC.clone());
(builder.connect_sub_circuit(&inp, circ_id), circ_id)
});
output.connect_to_main(circ_id)
} else {
CircuitBuilder::with_global(|builder| {
let inp = inp.into_iter().map(|sh| {
assert_eq!(0, sh.circuit_id());
sh.gate_id()
});
let out = builder
.get_main_circuit()
.lock()
.add_sub_circuit(&AES_CIRC.lock(), inp);
out.into_iter()
.map(|gate_id| Secret::from_parts(0, gate_id))
.collect()
})
}
}
More examples
crates/seec/examples/bristol.rs (line 125)
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
fn compile(compile_args: CompileArgs) -> Result<()> {
let load = match compile_args.simd {
Some(_) => Load::SubCircuit,
None => Load::Circuit,
};
let mut bc: BaseCircuit = BaseCircuit::load_bristol(&compile_args.circuit, load)
.expect("failed to load bristol circuit");
let mut circ = match compile_args.simd {
Some(size) => {
bc.set_simd_size(size);
let circ_input_size = bc.sub_circuit_input_count();
let inputs = inputs::<u32>(circ_input_size);
let bc = bc.into_shared();
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
builder.get_main_circuit().lock().set_simd_size(size);
let circ_id = builder.push_circuit(bc);
let output = builder.connect_sub_circuit(&inputs, circ_id);
(output, circ_id)
});
let main = output.connect_to_main(circ_id);
main.iter().for_each(|s| {
s.output();
});
let circ = CircuitBuilder::global_into_circuit();
ExecutableCircuit::DynLayers(circ)
}
None => ExecutableCircuit::DynLayers(bc.into()),
};
if !compile_args.dyn_layers {
circ = circ.precompute_layers();
}
let out =
BufWriter::new(File::create(&compile_args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
pub fn get_circuit(&self, id: CircuitId) -> Option<SharedCircuit<P, G, Idx>>
sourcepub fn push_circuit(&mut self, circuit: SharedCircuit<P, G, Idx>) -> CircuitId
pub fn push_circuit(&mut self, circuit: SharedCircuit<P, G, Idx>) -> CircuitId
Examples found in repository?
crates/seec/examples/aes_cbc.rs (line 445)
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
fn aes128(
key: &[Secret<BooleanGmw, usize>],
chunk: &[Secret<BooleanGmw, usize>],
use_sc: bool,
) -> Vec<Secret<BooleanGmw, usize>> {
static AES_CIRC: Lazy<SharedCircuit<bool, BooleanGate, usize>> = Lazy::new(|| {
let aes_circ_str = include_str!("../test_resources/bristol-circuits/aes_128.bristol");
BaseCircuit::from_bristol(
seec::bristol::circuit(aes_circ_str).expect("parsing AES circuit failed"),
Load::SubCircuit,
)
.expect("converting AES circuit failed")
.into_shared()
});
let inp = [chunk, key].concat();
if use_sc {
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
let circ_id = builder.push_circuit(AES_CIRC.clone());
(builder.connect_sub_circuit(&inp, circ_id), circ_id)
});
output.connect_to_main(circ_id)
} else {
CircuitBuilder::with_global(|builder| {
let inp = inp.into_iter().map(|sh| {
assert_eq!(0, sh.circuit_id());
sh.gate_id()
});
let out = builder
.get_main_circuit()
.lock()
.add_sub_circuit(&AES_CIRC.lock(), inp);
out.into_iter()
.map(|gate_id| Secret::from_parts(0, gate_id))
.collect()
})
}
}
More examples
crates/seec/examples/bristol.rs (line 126)
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
fn compile(compile_args: CompileArgs) -> Result<()> {
let load = match compile_args.simd {
Some(_) => Load::SubCircuit,
None => Load::Circuit,
};
let mut bc: BaseCircuit = BaseCircuit::load_bristol(&compile_args.circuit, load)
.expect("failed to load bristol circuit");
let mut circ = match compile_args.simd {
Some(size) => {
bc.set_simd_size(size);
let circ_input_size = bc.sub_circuit_input_count();
let inputs = inputs::<u32>(circ_input_size);
let bc = bc.into_shared();
let (output, circ_id) = CircuitBuilder::with_global(|builder| {
builder.get_main_circuit().lock().set_simd_size(size);
let circ_id = builder.push_circuit(bc);
let output = builder.connect_sub_circuit(&inputs, circ_id);
(output, circ_id)
});
let main = output.connect_to_main(circ_id);
main.iter().for_each(|s| {
s.output();
});
let circ = CircuitBuilder::global_into_circuit();
ExecutableCircuit::DynLayers(circ)
}
None => ExecutableCircuit::DynLayers(bc.into()),
};
if !compile_args.dyn_layers {
circ = circ.precompute_layers();
}
let out =
BufWriter::new(File::create(&compile_args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
pub fn into_circuit(self) -> Circuit<P, G, Idx>
pub fn add_cache<C: SubCircCache + Send + Sync>(&mut self, cache: &'static C)
pub fn clear_caches(&mut self)
Trait Implementations§
Auto Trait Implementations§
impl<P, G, Idx> Freeze for CircuitBuilder<P, G, Idx>
impl<P = bool, G = BooleanGate, Idx = u32> !RefUnwindSafe for CircuitBuilder<P, G, Idx>
impl<P, G, Idx> Send for CircuitBuilder<P, G, Idx>
impl<P, G, Idx> Sync for CircuitBuilder<P, G, Idx>
impl<P, G, Idx> Unpin for CircuitBuilder<P, G, Idx>where
Idx: Unpin,
impl<P = bool, G = BooleanGate, Idx = u32> !UnwindSafe for CircuitBuilder<P, G, Idx>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
Formats each item in a sequence. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.