openvm_rv32im_circuit/branch_lt/
mod.rs1use openvm_circuit::arch::{VmAirWrapper, VmChipWrapper};
2
3use super::adapters::{RV32_CELL_BITS, RV32_REGISTER_NUM_LIMBS};
4use crate::adapters::{Rv32BranchAdapterAir, Rv32BranchAdapterExecutor, Rv32BranchAdapterFiller};
5
6mod core;
7mod execution;
8pub use core::*;
9
10#[cfg(feature = "cuda")]
11mod cuda;
12#[cfg(feature = "cuda")]
13pub use cuda::*;
14
15#[cfg(test)]
16mod tests;
17
18pub type Rv32BranchLessThanAir = VmAirWrapper<
19 Rv32BranchAdapterAir,
20 BranchLessThanCoreAir<RV32_REGISTER_NUM_LIMBS, RV32_CELL_BITS>,
21>;
22pub type Rv32BranchLessThanExecutor =
23 BranchLessThanExecutor<Rv32BranchAdapterExecutor, RV32_REGISTER_NUM_LIMBS, RV32_CELL_BITS>;
24pub type Rv32BranchLessThanChip<F> = VmChipWrapper<
25 F,
26 BranchLessThanFiller<Rv32BranchAdapterFiller, RV32_REGISTER_NUM_LIMBS, RV32_CELL_BITS>,
27>;