|
1 | | -use std::borrow::{Borrow, BorrowMut}; |
| 1 | +use std::borrow::BorrowMut; |
2 | 2 |
|
3 | | -use itertools::Itertools; |
4 | 3 | use openvm_circuit::{ |
5 | 4 | arch::{ |
6 | | - CustomBorrow, ExecutionError, ExecutionState, MultiRowLayout, MultiRowMetadata, |
7 | | - PreflightExecutor, RecordArena, Streams, TraceFiller, VmChipWrapper, VmStateMut, |
| 5 | + CustomBorrow, ExecutionError, MultiRowLayout, MultiRowMetadata, PreflightExecutor, |
| 6 | + RecordArena, TraceFiller, VmChipWrapper, VmStateMut, |
8 | 7 | }, |
9 | 8 | system::{ |
10 | | - memory::{online::TracingMemory, MemoryAuxColsFactory, MemoryController}, |
11 | | - native_adapter::util::{ |
12 | | - memory_read_native, tracing_read_native, tracing_write_native_inplace, |
13 | | - }, |
| 9 | + memory::{online::TracingMemory, MemoryAuxColsFactory}, |
| 10 | + native_adapter::util::{memory_read_native, tracing_write_native_inplace}, |
14 | 11 | }, |
15 | 12 | }; |
16 | 13 | use openvm_instructions::{instruction::Instruction, program::DEFAULT_PC_STEP, LocalOpcode}; |
17 | | -use openvm_native_compiler::{conversion::AS, SumcheckOpcode::SUMCHECK_LAYER_EVAL}; |
18 | | -use openvm_stark_backend::{ |
19 | | - p3_field::{Field, PrimeField, PrimeField32}, |
20 | | - p3_matrix::{dense::RowMajorMatrix, Matrix}, |
21 | | - p3_maybe_rayon::prelude::{IntoParallelIterator, ParallelIterator, ParallelSlice}, |
22 | | -}; |
| 14 | +use openvm_native_compiler::SumcheckOpcode::SUMCHECK_LAYER_EVAL; |
| 15 | +use openvm_stark_backend::p3_field::PrimeField32; |
23 | 16 |
|
24 | 17 | use crate::{ |
25 | 18 | field_extension::{FieldExtension, EXT_DEG}, |
26 | 19 | fri::elem_to_ext, |
27 | 20 | mem_fill_helper, |
28 | | - sumcheck::{ |
29 | | - air::NativeSumcheckAir, |
30 | | - columns::{HeaderSpecificCols, LogupSpecificCols, NativeSumcheckCols, ProdSpecificCols}, |
| 21 | + sumcheck::columns::{ |
| 22 | + HeaderSpecificCols, LogupSpecificCols, NativeSumcheckCols, ProdSpecificCols, |
31 | 23 | }, |
32 | 24 | tracing_read_native_helper, |
33 | | - utils::const_max, |
34 | 25 | }; |
35 | 26 |
|
36 | 27 | const CONTEXT_ARR_BASE_LEN: usize = EXT_DEG * 2; |
|
0 commit comments