Struct calyx_ir::BackendConf
source · pub struct BackendConf {
pub synthesis_mode: bool,
pub enable_verification: bool,
pub initialize_inputs: bool,
pub flat_assign: bool,
}
Expand description
Configuration information for the backends.
Fields§
§synthesis_mode: bool
Enables synthesis mode.
enable_verification: bool
Enables verification checks.
initialize_inputs: bool
Generate initial assignments for input ports
flat_assign: bool
Use flat (ANF) assignments for guards instead of deep expression trees.
Trait Implementations§
source§impl Default for BackendConf
impl Default for BackendConf
source§fn default() -> BackendConf
fn default() -> BackendConf
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for BackendConf
impl Send for BackendConf
impl Sync for BackendConf
impl Unpin for BackendConf
impl UnwindSafe for BackendConf
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