Skip to content

Commit

Permalink
Minor change (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
alon-f authored Feb 12, 2025
1 parent 7515349 commit 81d1fe3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/prover/src/core/pcs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ mod tests {
pow_bits: 42,
fri_config: super::FriConfig::new(10, 10, 70),
};
// 10 * 70 + 42 = 742
assert!(config.security_bits() == 742);
assert!(config.security_bits() == 10 * 70 + 42);
}
}

1 comment on commit 81d1fe3

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 81d1fe3 Previous: 394f839 Ratio
iffts/simd ifft/27 568685253 ns/iter (± 42974429) 269533636 ns/iter (± 2406787) 2.11
merkle throughput/simd merkle 31811600 ns/iter (± 321788) 13123349 ns/iter (± 484950) 2.42

This comment was automatically generated by workflow using github-action-benchmark.

CC: @shaharsamocha7

Please sign in to comment.