Skip to content

Commit

Permalink
Set default K = 16
Browse files Browse the repository at this point in the history
Summary:

Test Plan:
  • Loading branch information
duc-nx committed Aug 13, 2024
1 parent 7b94aac commit 6c88c1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdk/src/hypernova/seq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub use nexus_core::prover::hypernova::types::SRS;
use std::marker::PhantomData;

// hard-coded number of vm instructions to pack per recursion step
const K: usize = 64;
const K: usize = 16;

/// Errors that occur while proving using Nova.
#[derive(Debug, Error)]
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/nova/seq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub use nexus_core::prover::nova::types::SeqPP as PP;
use std::marker::PhantomData;

// hard-coded number of vm instructions to pack per recursion step
const K: usize = 64;
const K: usize = 16;

/// Errors that occur while proving using Nova.
#[derive(Debug, Error)]
Expand Down

0 comments on commit 6c88c1c

Please sign in to comment.