Skip to content

Commit

Permalink
Increase batch size for breakdown reveal aggregation
Browse files Browse the repository at this point in the history
  • Loading branch information
andyleiserson committed Sep 27, 2024
1 parent d2512f1 commit 2333492
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ipa-core/src/protocol/ipa_prf/prf_sharding/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ use crate::{
Context, DZKPContext, DZKPUpgraded, MaliciousProtocolSteps, UpgradableContext,
},
ipa_prf::{
aggregation::aggregate_values_proof_chunk,
boolean_ops::{
addition_sequential::integer_add,
comparison_and_subtraction_sequential::{compare_gt, integer_sub},
Expand Down Expand Up @@ -541,7 +540,9 @@ where
protocol: &Step::Aggregate,
validate: &Step::AggregateValidate,
},
aggregate_values_proof_chunk(B, usize::try_from(TV::BITS).unwrap()),
// TODO: add batching for breakdown reveal aggregation
//aggregate_values_proof_chunk(B, usize::try_from(TV::BITS).unwrap()),
1 << 30,
);
let user_contributions = flattened_user_results.try_collect::<Vec<_>>().await?;
let result =
Expand Down

0 comments on commit 2333492

Please sign in to comment.