-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Real world test #822
Real world test #822
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks pretty good! Just a few minor nits.
src/query/runner/oprf_ipa.rs
Outdated
let sz = usize::from(query_size); | ||
|
||
let input = if config.plaintext_match_keys { | ||
let mut v = assert_stream_send(RecordsStream::< |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we absolutely need this "assert_stream_send" call? Can you try to remove that and see if it compiles?
@@ -24,6 +24,11 @@ pub enum IpaSecurityModel { | |||
Malicious, | |||
} | |||
|
|||
pub enum IpaQueryStyle { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so many types of ipa queries...
4a65f64
to
0e9f41b
Compare
src/cli/playbook/ipa.rs
Outdated
do_processing::<F>(inputs, query_size, clients, query_id, query_config).await | ||
} | ||
|
||
pub async fn do_processing<F>( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's select a better name =)
b4760d9
into
private-attribution:main
No description provided.