Enum seec::circuit::ExecutableCircuit
source · pub enum ExecutableCircuit<P, G, Idx> {
DynLayers(Circuit<P, G, Idx>),
StaticLayers(Circuit<G, Idx>),
}
Variants§
Implementations§
source§impl<P, G, Idx> ExecutableCircuit<P, G, Idx>
impl<P, G, Idx> ExecutableCircuit<P, G, Idx>
pub fn interactive_count(&self) -> usize
pub fn interactive_count_times_simd(&self) -> usize
pub fn input_count(&self) -> usize
pub fn output_count(&self) -> usize
pub fn input_gates(&self) -> &[GateId<Idx>]
pub fn output_gates(&self) -> &[GateId<Idx>]
pub fn simd_size(&self, circ_id: CircuitId) -> Option<NonZeroUsize>
source§impl<P: Plain, G: Gate<P>, Idx: GateIdx> ExecutableCircuit<P, G, Idx>
impl<P: Plain, G: Gate<P>, Idx: GateIdx> ExecutableCircuit<P, G, Idx>
sourcepub fn precompute_layers(self) -> Self
pub fn precompute_layers(self) -> Self
Examples found in repository?
crates/seec/examples/aes_cbc.rs (line 135)
131 132 133 134 135 136 137 138 139 140 141 142
fn compile(args: &CompileArgs) -> Result<()> {
let input_bits = args.input_blocks * 128;
let circ = build_enc_circuit(input_bits, args.use_sc).context("failed to construct circuit")?;
let circ = if args.static_layers {
circ.precompute_layers()
} else {
circ
};
let out = BufWriter::new(File::create(&args.output).context("failed to create output file")?);
bincode::serialize_into(out, &circ).context("failed to serialize circuit")?;
Ok(())
}
More examples
crates/seec/examples/fuse.rs (line 105)
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
fn compile(compile_args: CompileArgs) -> Result<()> {
let call_mode = match compile_args.inline_circuits {
true => CallMode::InlineCircuits,
false => CallMode::CallCircuits,
};
let converter = FuseConverter::<u32>::new(call_mode);
let circ = converter
.convert(&compile_args.circuit)
.ok()
.context("Unable to load and convert FUSE circuit")?;
let mut circ = ExecutableCircuit::DynLayers(circ);
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/bristol.rs (line 140)
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
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(())
}
impl ProgArgs {
fn log(&self) -> Option<&PathBuf> {
match self {
ProgArgs::Compile(args) => args.log.as_ref(),
ProgArgs::Execute(args) => args.log.as_ref(),
}
}
}
async fn execute(execute_args: ExecuteArgs) -> Result<()> {
let circ_name = execute_args
.circuit
.file_stem()
.unwrap()
.to_string_lossy()
.to_string();
let circuit = load_circ(&execute_args).context("failed to load circuit")?;
let create_party = |id, circ| {
let mut party = BenchParty::<BooleanGmw, u32>::new(id)
.explicit_circuit(circ)
.repeat(execute_args.repeat)
.insecure_setup(execute_args.insecure_setup)
.interleave_setup(execute_args.interleave_setup)
.metadata(circ_name.clone());
if let Some(domain) = &execute_args.domain {
party = party.tls_domain(domain.clone());
}
match (&execute_args.cert, &execute_args.cert_pk) {
(Some(cert), Some(pk)) => {
party = party.tls_config(ServerTlsConfig {
private_key_file: pk.clone(),
certificate_chain_file: cert.clone(),
});
}
(Some(_), None) | (None, Some(_)) => {
anyhow::bail!("Must provide both --cert and --cert-pk or neither")
}
_ => {}
}
if let Some(path) = &execute_args.stored_mts {
party = party.stored_mts(path);
}
if let Some(server) = execute_args.server {
party = party.server(server)
}
Ok(party)
};
let results = if let Some(id) = execute_args.id {
let party = create_party(id, circuit)?;
party.bench().await.context("Failed to run benchmark")?
} else {
let party0 = create_party(0, circuit.clone())?;
let party1 = create_party(1, circuit)?;
let bench0 = tokio::spawn(party0.bench());
let bench1 = tokio::spawn(party1.bench());
let (res0, _res1) = tokio::try_join!(bench0, bench1).context("Failed to join parties")?;
res0.context("Failed to run benchmark")?
};
// Depending on whether a --stats file is set, create a file writer or stdout
let mut writer: Box<dyn Write> = match execute_args.stats {
Some(path) => {
let file = File::create(path)?;
Box::new(file)
}
None => Box::new(stdout()),
};
// serde_json is used to write the statistics in json format. `.csv` is currently not
// supported.
serde_json::to_writer_pretty(&mut writer, &results)?;
writeln!(writer)?;
Ok(())
}
fn load_circ(args: &ExecuteArgs) -> Result<ExecutableCircuit<bool, BooleanGate, u32>> {
let res = bincode::deserialize_from(BufReader::new(
File::open(&args.circuit).context("Failed to open circuit file")?,
));
match res {
Ok(circ) => Ok(circ),
Err(_) => {
// try to load as bristol
Ok(ExecutableCircuit::DynLayers(
BaseCircuit::load_bristol(&args.circuit, Load::Circuit)
.context("Circuit is neither .seec file or bristol")?
.into(),
)
.precompute_layers())
}
}
}
sourcepub fn gate_count(&self) -> usize
pub fn gate_count(&self) -> usize
Examples found in repository?
crates/seec/examples/privmail.rs (line 249)
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(())
}
More examples
crates/seec/examples/privmail_sc.rs (line 252)
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 gate_counts(
&self
) -> impl Iterator<Item = (usize, Option<NonZeroUsize>)> + '_
pub fn gate_counts( &self ) -> impl Iterator<Item = (usize, Option<NonZeroUsize>)> + '_
Returns iterator over tuples of (gate_count, simd_size) for each sub_circuit
pub fn iter( &self ) -> impl Iterator<Item = (G, SubCircuitGate<Idx>)> + Clone + '_
pub fn iter_with_parents( &self ) -> impl Iterator<Item = (G, SubCircuitGate<Idx>, impl Iterator<Item = SubCircuitGate<Idx>> + '_)> + '_
pub fn interactive_iter( &self ) -> impl Iterator<Item = (G, SubCircuitGate<Idx>)> + Clone + '_
pub fn interactive_with_parents_iter( &self ) -> impl Iterator<Item = (G, SubCircuitGate<Idx>, impl Iterator<Item = SubCircuitGate<Idx>> + '_)> + '_
pub fn layer_iter( &self ) -> impl Iterator<Item = ExecutableLayer<'_, P, G, Idx>> + '_
Trait Implementations§
source§impl<'de, P, G, Idx> Deserialize<'de> for ExecutableCircuit<P, G, Idx>where
G: Serialize + DeserializeOwned,
Idx: GateIdx + Ord + Eq + Hash + Serialize + DeserializeOwned,
impl<'de, P, G, Idx> Deserialize<'de> for ExecutableCircuit<P, G, Idx>where
G: Serialize + DeserializeOwned,
Idx: GateIdx + Ord + Eq + Hash + Serialize + DeserializeOwned,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<P, G, Idx> Serialize for ExecutableCircuit<P, G, Idx>where
G: Serialize + DeserializeOwned,
Idx: GateIdx + Ord + Eq + Hash + Serialize + DeserializeOwned,
impl<P, G, Idx> Serialize for ExecutableCircuit<P, G, Idx>where
G: Serialize + DeserializeOwned,
Idx: GateIdx + Ord + Eq + Hash + Serialize + DeserializeOwned,
Auto Trait Implementations§
impl<P, G, Idx> Freeze for ExecutableCircuit<P, G, Idx>
impl<P, G, Idx> RefUnwindSafe for ExecutableCircuit<P, G, Idx>
impl<P, G, Idx> Send for ExecutableCircuit<P, G, Idx>
impl<P, G, Idx> Sync for ExecutableCircuit<P, G, Idx>
impl<P, G, Idx> Unpin for ExecutableCircuit<P, G, Idx>
impl<P, G, Idx> UnwindSafe for ExecutableCircuit<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> CloneAny for T
impl<T> CloneAny for T
§impl<T> CloneDebuggableStorage for Twhere
T: DebuggableStorage + Clone,
impl<T> CloneDebuggableStorage for Twhere
T: DebuggableStorage + Clone,
fn clone_storage(&self) -> Box<dyn CloneDebuggableStorage>
§impl<T> CloneableStorage for T
impl<T> CloneableStorage for T
fn clone_storage(&self) -> Box<dyn CloneableStorage>
§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
source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer ) -> Result<(), ErrorImpl>
§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.