Skip to content

Commit

Permalink
chore: update example
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpwang committed Jul 27, 2023
1 parent 2fac78b commit 782df4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion halo2_proofs/examples/serialization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ fn main() -> std::io::Result<()> {
let vk = keygen_vk(&params, &circuit).expect("vk should not fail");
let pk = keygen_pk(&params, vk, &circuit).expect("pk should not fail");

for buf_size in [1024, 1024 * 1024, 1024 * 1024 * 1024] {
for buf_size in [1024, 8 * 1024, 1024 * 1024, 1024 * 1024 * 1024] {
println!("buf_size: {buf_size}");
// Using halo2_proofs serde implementation
let f = File::create("serialization-test.pk")?;
Expand Down

0 comments on commit 782df4a

Please sign in to comment.