Skip to content

Commit

Permalink
that's it?
Browse files Browse the repository at this point in the history
  • Loading branch information
tyurek committed Dec 12, 2024
1 parent ff37b8a commit 982dc32
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ipa-core/src/query/runner/hybrid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ use crate::{
replicated::semi_honest::AdditiveShare as Replicated, BitDecomposed, TransposeFrom,
Vectorizable,
},
seq_join::seq_join,
sharding::{ShardConfiguration, Sharded},
};

Expand Down Expand Up @@ -130,10 +131,12 @@ where
}))
})
.try_flatten()
.take(sz);
.take(sz)
.map(|v| async move { v });

let (decrypted_reports, resharded_tags) = reshard_aad(
ctx.narrow(&HybridStep::ReshardByTag),
stream,
seq_join(ctx.active_work(), stream),
|ctx, _, tag| tag.shard_picker(ctx.shard_count()),
)
.await?;
Expand Down

0 comments on commit 982dc32

Please sign in to comment.