Skip to content
Merged
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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Both branches support Stwo prover opcodes (Blake2s, QM31) since v2.0.0.
---

#### Upcoming Changes
* fix: decrease spamming logs level to trace [#2385](https://github.com/starkware-libs/cairo-vm/pull/2385)

* feat: add `test_helpers` module (`error_utils`, `test_utils`) with `assert_mr_eq`, `load_cairo_program!` macro and `expect_*` error checkers, behind `test_utils` feature flag [#2381](https://github.com/starkware-libs/cairo-vm/pull/2381)

* feat(makefile,ci): add `cairo_test_suite_programs` Makefile target and CI integration to compile Cairo test suite programs before running tests [#2380](https://github.com/starkware-libs/cairo-vm/pull/2380)
Expand Down
6 changes: 3 additions & 3 deletions vm/src/vm/runners/cairo_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ use super::{
cairo_pie::{self, CairoPie, CairoPieMetadata, CairoPieVersion},
};
use crate::types::instance_definitions::mod_instance_def::ModInstanceDef;
use tracing::info;
use tracing::{info, trace};

pub const ORDERED_BUILTIN_LIST: &[BuiltinName] = &[
BuiltinName::output,
Expand Down Expand Up @@ -1004,15 +1004,15 @@ impl CairoRunner {
return Err(RunnerError::EndRunCalledTwice.into());
}

info!("Relocating memory.");
trace!("Relocating memory.");
self.vm.segments.memory.relocate_memory()?;
self.vm.end_run(&self.exec_scopes, fill_holes)?;

if disable_finalize_all {
return Ok(());
}

info!("Computing effective sizes of segments.");
trace!("Computing effective sizes of segments.");
self.vm.segments.compute_effective_sizes();
if self.is_proof_mode() && !disable_trace_padding {
info!("in proof mode and enabling trace padding, running until next power of 2.");
Expand Down
Loading