Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
79bbe35
README includes install instructions
davidchuyaya Jun 8, 2026
2636e5d
Network calibration without restarting for different sizes, more Amaz…
davidchuyaya Jun 9, 2026
9d00754
Parse process results for network calibrator
davidchuyaya Jun 12, 2026
26f2602
Deploy to us-east-1 for capacity reasons
davidchuyaya Jun 12, 2026
aed706b
Use fewer client machines
davidchuyaya Jun 12, 2026
293d437
Amazon linux install instructions
davidchuyaya Jun 12, 2026
7fb4513
Remove socket counts from network costs, estimated costs extremely lo…
davidchuyaya Jun 15, 2026
6485c34
Use musl instead of glibc for compilation, parsing shows process sars…
davidchuyaya Jun 16, 2026
19b60d4
Merge branch 'ec2_launcher' of https://github.com/hydro-project/hydro…
davidchuyaya Jun 16, 2026
ca893a1
Limit networking cores for performance, apply batch limit to regular …
davidchuyaya Jun 17, 2026
101ae0c
Decouple analysis correctly accounts for the cardinality of broadcasts
davidchuyaya Jun 20, 2026
17341a5
Partition map insertion fix
davidchuyaya Jun 23, 2026
6ca560c
Optimization folder overwriting fix, limit number of unstable through…
davidchuyaya Jun 23, 2026
45c228f
Partitioning fix (network not counted as relevant operator, filtered …
davidchuyaya Jun 25, 2026
144800e
Fix CLUSTER_SELF_IDs inserted for decoupling + partitioning
davidchuyaya Jun 25, 2026
9152f39
Fix clients considered bottleneck, calibration after optimization
davidchuyaya Jun 27, 2026
a55c36f
Fix clients detected as bottleneck
davidchuyaya Jun 27, 2026
3d5c0a3
Fix partitioning for existing networks where output type and input ty…
davidchuyaya Jun 27, 2026
23d9e64
Run rewrites up to budget 10
davidchuyaya Jun 27, 2026
4bd4e1f
Fix partitioning existing network
davidchuyaya Jun 27, 2026
3b604df
CAS fix write throughput 0 for write-only workloads with more clients…
davidchuyaya Jun 27, 2026
9db318e
No EDB decoupling
davidchuyaya Jun 30, 2026
7070bf9
Benchmarking works for protocols with multiple workloads, simplificat…
davidchuyaya Jun 30, 2026
4306533
CAS fixes: Reads were labeled as blocked if there were no previous wr…
davidchuyaya Jun 30, 2026
ccd961d
Fix send from partitions own ID bug
davidchuyaya Jun 30, 2026
6609377
Prioritize partitioning over less specific fields for uniform distrib…
davidchuyaya Jun 30, 2026
4b692da
Implement hash for partitioning
davidchuyaya Jun 30, 2026
3780f2e
Support partitioning on sender ID
davidchuyaya Jul 1, 2026
ba06f8e
Plotting script
davidchuyaya Jul 1, 2026
41be723
cargo fmt + clippy
davidchuyaya Jul 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[build]

[env]
# Stack backtraces.
RUST_BACKTRACE = "1"
# Set output levels for `tracing` logging.
# Certain wasm crates emit a lot of `debug` logs, set to `info`.
RUST_LOG = "info,hydro_lang=debug,dfir_rs=trace,walrus=info,wasm_bindgen_cli_support=info,wasm_bindgen_wasm_interpreter=info"
# DFIR generate for `/docs/` website.
DFIR_GENERATE_DOCS = "1"
DFIR_BASE_DIR = { value = ".", relative = true }

[target.aarch64-apple-darwin]
linker = "rust-lld"

[target.x86_64-apple-darwin]
linker = "rust-lld"

[target.x86_64-unknown-linux-musl]
linker = "rust-lld"


[target.x86_64-pc-windows-msvc]
linker = "rust-lld.exe"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ scripts/*.png
.hydro
out*.txt
benchmark_results/
result_backup/

# Neovim stuff
tmux*
Loading
Loading