Skip to content

Commit

Permalink
Set default K = 16 (#266)
Browse files Browse the repository at this point in the history
* Add RISC-V Trace benchmark for Core

Summary:

Test Plan:

* Set default `K = 16`

Summary:

Test Plan:

---------

Co-authored-by: duc-nx <>
  • Loading branch information
duc-nx authored Aug 21, 2024
1 parent af531a2 commit 7aa6829
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 7aa6829

Please sign in to comment.