Update a TODO

This commit is contained in:
Daniel Lubarov 2021-07-21 21:25:52 -07:00
parent 2f46ddc4e5
commit 01461ce388
2 changed files with 2 additions and 2 deletions

View File

@ -65,6 +65,8 @@ impl<F: Field> ListPolynomialCommitment<F> {
rate_bits: usize,
blinding: bool,
) -> Self {
// TODO: Could try parallelizing the transpose, or not doing it explicitly, instead having
// MerkleTree do it implicitly.
let mut leaves = timed!(transpose(&lde_values), "to transpose LDEs");
reverse_index_bits_in_place(&mut leaves);
let merkle_tree = timed!(MerkleTree::new(leaves, false), "to build Merkle tree");

View File

@ -68,8 +68,6 @@ pub(crate) fn prove<F: Extendable<D>, const D: usize>(
"to compute wire polynomials"
);
// TODO: Could try parallelizing the transpose, or not doing it explicitly, instead having
// merkle_root_bit_rev_order do it implicitly.
let wires_commitment = timed!(
ListPolynomialCommitment::new(
wires_values,