Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jolt-core/benches/e2e_profiling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ fn prove_example(
let mut tasks = Vec::new();
let mut program = host::Program::new(example_name);
let (bytecode, init_memory_state, _) = program.decode();
let (_, trace, _, program_io) = program.trace(&serialized_input, &[], &[]);
let (_lazy_trace, trace, _, program_io) = program.trace(&serialized_input, &[], &[]);
let padded_trace_len = (trace.len() + 1).next_power_of_two();
drop(trace);

Expand Down
1 change: 1 addition & 0 deletions jolt-core/src/poly/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ pub mod identity_poly;
pub mod lagrange_poly;
pub mod lt_poly;
pub mod multilinear_polynomial;
pub mod multiquadratic_poly;
pub mod one_hot_polynomial;
pub mod opening_proof;
pub mod prefix_suffix;
Expand Down
Loading