Skip to content

Commit 3ef19c0

Browse files
chore: Cargo.toml fixes (#2416)
1 parent 0d4be62 commit 3ef19c0

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

crates/verify-stark/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ thiserror.workspace = true
1919
zstd.workspace = true
2020

2121
[features]
22-
default = ["parallel"]
23-
parallel = ["openvm-stark-backend/parallel"]
22+
default = []

crates/vm/src/arch/vm.rs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,12 +1547,9 @@ mod vm_metrics {
15471547
for (pk, height) in zip(&self.pk.per_air, heights.iter()) {
15481548
let width = &pk.vk.params.width;
15491549
main_cells_used += width.main_width() * *height;
1550-
total_cells_used +=
1551-
width.total_width(
1552-
<<E::SC as StarkProtocolConfig>::Challenge as BasedVectorSpace<
1553-
Val<E::SC>,
1554-
>>::DIMENSION,
1555-
) * *height;
1550+
total_cells_used += width.total_width(
1551+
<<E::SC as StarkProtocolConfig>::EF as BasedVectorSpace<Val<E::SC>>>::DIMENSION,
1552+
) * *height;
15561553
}
15571554
tracing::debug!(?heights);
15581555
tracing::info!(main_cells_used, total_cells_used);

crates/vm/src/metrics/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use openvm_instructions::{
88
exe::{FnBound, FnBounds},
99
program::ProgramDebugInfo,
1010
};
11-
use openvm_stark_backend::prover::{hal::ProverBackend, types::DeviceMultiStarkProvingKey};
11+
use openvm_stark_backend::prover::{DeviceMultiStarkProvingKey, ProverBackend};
1212

1313
use crate::{
1414
arch::{

0 commit comments

Comments
 (0)