-
Notifications
You must be signed in to change notification settings - Fork 47
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
benchmark to test how expensive mapping into/out of joins is #478
Draft
zzlk
wants to merge
588
commits into
hydro-project:main
Choose a base branch
from
zzlk:join-map-perf
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* replace refs in book: "Core API" -> "Surface API" * remove dead examples/book * split Graph Reachability into two subsections * explain vec![0] and remove refs to pull * explain vec![0] * fix link to design doc * fix bug/typo where pull should have been push * more careful discussion of the space of partitionings * restore refs to Core API, other small edits * clarify that example_4_1 illustrates multiple outputs
…mpsc::unbounded_channel` Breaking change
To check subgraph partitioning bug in linear chains
…se later pull-push conflicts
Make sure to set the correct spans in codegen
* replace refs in book: "Core API" -> "Surface API" * remove dead examples/book * split Graph Reachability into two subsections * explain vec![0] and remove refs to pull * explain vec![0] * fix link to design doc * fix bug/typo where pull should have been push * more careful discussion of the space of partitionings * restore refs to Core API, other small edits * clarify that example_4_1 illustrates multiple outputs
Instead of waiting when ANY stratum has no work
* add flatten op to surface syntax * handle push case in flatten and test it
* first draft of hydroflow chat * share a single UDP port among all message channels * remove bad comments * remove stray keystroke * more examples ported to surface syntax * remove two_pc from Cargo.toml * make clippy happy * remove unfinished two_pc example * make clippy happy * use cross_join in chat * pretty up the chat code * move chat helpers out of protocol * hydroflow for 2PC * address clippy and PR feedback * make clippy happy with a flatten op * persistent aggregation in 2PC * remove leftover comments from surface API in README
Seems there are two code paths. For surface syntax: ```rust hf.serde_graph().unwrap().to_mermaid() ``` For deprecated surface API. And core API, kinda ```rust hf.generate_mermaid() ``` ref hydro-project#219
Related: hydro-project#59, hydro-project#219 Also add ```rust // TODO(mingwei): Need rust-analyzer support ``` As needed for new clippy lint. New syntax doesn't work with rust-analyzer yet.
… on the fly (hydro-project#441 10/14)
- Cleanup (`DiMulGraph`) graph docs - Unify/organize `HydroflowGraph` edge methods - Update `HydroflowGraph` subgraph method naming - Unify/organize `HydroflowGraph` node methods - Add `ExactSizeIterator` to predecessor/successor methods
jhellerstein
approved these changes
Mar 16, 2023
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.
Lgtm
I wonder if this has changed now that we have LTO turned on, maybe now there is no difference (although I'm not sure why that would be?) |
b0c3916
to
5d48544
Compare
e9a87eb
to
6039078
Compare
4f84634
to
0e64791
Compare
fb8b3b3
to
a2ec110
Compare
b569212
to
fb8393a
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#185