Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
500ed08
save local changes before pull
DanielLacina Jun 16, 2026
43bdb18
resolve merge conflict
DanielLacina Jun 16, 2026
0288deb
working on algorithm
DanielLacina Jun 17, 2026
605f91e
working
DanielLacina Jun 17, 2026
87aee84
working
DanielLacina Jun 17, 2026
6799114
working
DanielLacina Jun 17, 2026
9a03c33
working
DanielLacina Jun 18, 2026
705196d
Merge branch 'Pometry:db_v4' into algo_optimization
DanielLacina Jun 18, 2026
a760028
working
DanielLacina Jun 18, 2026
b2a1977
working
DanielLacina Jun 18, 2026
c2bfd49
working
DanielLacina Jun 19, 2026
d438a3d
working
DanielLacina Jun 22, 2026
8075fbe
made graphs smaller
DanielLacina Jun 22, 2026
afff25e
Merge branch 'db_v4' into algo_optimization
fabubaker Jul 16, 2026
6e960de
format and sync repository
DanielLacina Jul 21, 2026
a88a188
add comments
DanielLacina Jul 21, 2026
958d7bc
Merge branch 'db_v4' into algo_optimization
DanielLacina Jul 21, 2026
8367335
fix louvain issue
DanielLacina Jul 21, 2026
56a7337
made it so theres small graphs for heavier algorithms
DanielLacina Jul 22, 2026
027dbc8
Merge branch 'db_v4' into algo_optimization
DanielLacina Jul 22, 2026
6ded065
Merge branch 'db_v4' into algo_optimization
DanielLacina Aug 3, 2026
7d0f37c
working on algo bench
DanielLacina Aug 3, 2026
a4383e5
mdify benchmark yml
DanielLacina Aug 3, 2026
1ed6792
got rid of confusing prefixes
DanielLacina Aug 3, 2026
292972e
wip
DanielLacina Aug 4, 2026
bdb06d2
Revert "wip"
DanielLacina Aug 5, 2026
7d712fd
fix deadlocks
DanielLacina Aug 5, 2026
0edf2ce
Merge branch 'db_v4' into algo_optimization
DanielLacina Aug 5, 2026
2979a84
got rid of internal benchmarks and other unecessary things
DanielLacina Aug 6, 2026
973b30e
fmt
DanielLacina Aug 6, 2026
27ee9a2
Merge branch 'algo_optimization' of https://github.com/DanielLacina/R…
DanielLacina Aug 6, 2026
c3145ec
change measurement sec to 5 for each algo benchmark
DanielLacina Aug 6, 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
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Run benchmark (Unix)
run: |
set -o pipefail
cargo bench --bench base --bench algobench -p raphtory-benchmark -- --output-format=bencher | tee benchmark-result.txt
cargo bench --bench base --bench algobench_fast --bench algobench_medium --bench algobench_slow -p raphtory-benchmark -- --output-format=bencher | tee benchmark-result.txt
- name: Restore Cargo.lock to avoid dirty working tree
run: git checkout -- Cargo.lock
- name: Store benchmark results from master branch
Expand Down
10 changes: 9 additions & 1 deletion raphtory-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,15 @@ name = "graph_ops"
harness = false

[[bench]]
name = "algobench"
name = "algobench_fast"
harness = false

[[bench]]
name = "algobench_medium"
harness = false

[[bench]]
name = "algobench_slow"
harness = false

[[bench]]
Expand Down
143 changes: 0 additions & 143 deletions raphtory-benchmark/benches/algobench.rs

This file was deleted.

Loading
Loading