Skip to content

Commit

Permalink
Merge branch 'main' into finish_prover
Browse files Browse the repository at this point in the history
  • Loading branch information
dlubarov committed Jan 23, 2024
2 parents 213198c + 3019431 commit 1b439f7
Show file tree
Hide file tree
Showing 24 changed files with 388 additions and 76 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ jobs:
- name: Checkout Plonky3
uses: actions/checkout@v4
with:
repository: Plonky3/Plonky3
repository: lita-xyz/Plonky3
path: Plonky3

ref: batch_prover

- name: Checkout Valida
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -48,8 +49,9 @@ jobs:
- name: Checkout Plonky3
uses: actions/checkout@v4
with:
repository: Plonky3/Plonky3
repository: lita-xyz/Plonky3
path: Plonky3
ref: batch_prover

- name: Checkout Valida
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion alu_u32/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ p3-baby-bear = { path = "../../Plonky3/baby-bear" }
p3-field = { path = "../../Plonky3/field" }
p3-matrix = { path = "../../Plonky3/matrix" }
p3-maybe-rayon = { path = "../../Plonky3/maybe-rayon" }

p3-uni-stark = { path = "../../Plonky3/uni-stark" }
valida-bus = { path = "../bus" }
valida-derive = { path = "../derive" }
valida-machine = { path = "../machine" }
Expand Down
4 changes: 2 additions & 2 deletions alu_u32/src/div/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ use columns::{Div32Cols, DIV_COL_MAP, NUM_DIV_COLS};
use core::mem::transmute;
use valida_bus::MachineWithGeneralBus;
use valida_cpu::MachineWithCpuChip;
use valida_machine::config::StarkConfig;
use valida_machine::core::SDiv;
use valida_machine::{instructions, Chip, Instruction, Interaction, Operands, Word};
use valida_opcodes::{DIV32, SDIV32};
use valida_range::MachineWithRangeChip;
use valida_util::pad_to_power_of_two;

use p3_air::VirtualPairCol;
use p3_field::{AbstractField, Field, PrimeField};
use p3_matrix::dense::RowMajorMatrix;
use p3_maybe_rayon::prelude::*;
use valida_machine::config::StarkConfig;
use valida_util::pad_to_power_of_two;

pub mod columns;
pub mod stark;
Expand Down
2 changes: 1 addition & 1 deletion alu_u32/src/lt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ use p3_air::VirtualPairCol;
use p3_field::{AbstractField, Field, PrimeField};
use p3_matrix::dense::RowMajorMatrix;
use p3_maybe_rayon::prelude::*;

use valida_machine::config::StarkConfig;
use valida_util::pad_to_power_of_two;

pub mod columns;
pub mod stark;

Expand Down
11 changes: 9 additions & 2 deletions basic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,15 @@ p3-baby-bear = { path = "../../Plonky3/baby-bear" }
p3-field = { path = "../../Plonky3/field" }
p3-maybe-rayon = { path = "../../Plonky3/maybe-rayon" }
p3-util = { path = "../../Plonky3/util" }

p3-goldilocks = {path = "../../Plonky3/goldilocks" }
p3-uni-stark = {path = "../../Plonky3/uni-stark" }
p3-commit = { path = "../../Plonky3/commit" }
p3-air = { path = "../../Plonky3/air" }
p3-matrix = { path = "../../Plonky3/matrix" }
[dev-dependencies]

p3-challenger = { path = "../../Plonky3/challenger" }
p3-commit = { path = "../../Plonky3/commit" }

p3-dft = { path = "../../Plonky3/dft" }
p3-field = { path = "../../Plonky3/field" }
p3-fri = { path = "../../Plonky3/fri" }
Expand All @@ -40,4 +45,6 @@ p3-mds = { path = "../../Plonky3/mds" }
p3-merkle-tree = { path = "../../Plonky3/merkle-tree" }
p3-poseidon = { path = "../../Plonky3/poseidon" }
p3-symmetric = { path = "../../Plonky3/symmetric" }


rand = "0.8.5"
Loading

0 comments on commit 1b439f7

Please sign in to comment.