sp1_core_machine/cpu/
mod.rs

1
2
3
4
5
6
7
8
9
10
pub mod air;
pub mod columns;
pub mod trace;

/// The maximum log degree of the CPU chip to avoid lookup multiplicity overflow.
pub const MAX_CPU_LOG_DEGREE: usize = 22;

/// A chip that implements the CPU.
#[derive(Default)]
pub struct CpuChip;