Skip to content
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

Porting bfs #59

Draft
wants to merge 49 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
0caa9f9
Added parallel version of page rank
anubhavgoel26 Apr 9, 2024
51bcb93
Added parallel version of page rank
anubhavgoel26 Apr 9, 2024
20bd7df
minor fixes
anubhavgoel26 Apr 9, 2024
db4a735
pre-commit fixes
anubhavgoel26 Apr 9, 2024
65fc887
added skeleton
anubhavgoel26 Apr 9, 2024
3d9ede4
not compiling
divija95 Apr 14, 2024
ea51528
Compiler errors fixed!
anubhavgoel26 Apr 15, 2024
ce2ff4b
Remove redundant files
anubhavgoel26 Apr 15, 2024
e3772e1
minor edits
divija95 Apr 15, 2024
17a5eec
fix
Apr 15, 2024
f217a05
switching to bfs push version
divija95 Apr 16, 2024
e305c85
added functionality to add edges
anubhavgoel26 Apr 16, 2024
8dd0393
graph construction working correctly but bfs not running on the updat…
anubhavgoel26 Apr 16, 2024
a83fc69
pagerank
divija95 Apr 16, 2024
dede15b
Fixed single host batched bfs run
anubhavgoel26 Apr 16, 2024
1646bea
Add dist-stats
Apr 16, 2024
a0bae1f
Merge branch 'PortingBFS' of github.com:utcs-scea/graph-log-sketch in…
Apr 16, 2024
0447629
Added infrastructure to read files in our file format
anubhavgoel26 Apr 16, 2024
07164fd
Added infrastructure to read files in our file format
anubhavgoel26 Apr 16, 2024
c54a733
complete working edit scalability framework for a single host
anubhavgoel26 Apr 16, 2024
3a6a25b
adding update manager
anubhavgoel26 Apr 16, 2024
07992ae
unable to initialize graph update manager
anubhavgoel26 Apr 17, 2024
3215602
Add dist-exp scripts
nicelhc13 Apr 17, 2024
1c32d28
Add basic ls6 scripts
nicelhc13 Apr 17, 2024
065bfbb
Fix stats
nicelhc13 Apr 17, 2024
98e4c55
Fix pr
nicelhc13 Apr 17, 2024
ed70385
Refine scripts
nicelhc13 Apr 17, 2024
1f8685c
Add experiment scripts
Apr 17, 2024
449cb9f
Refine scripts
Apr 17, 2024
632bef0
slight update to sbatch
Apr 17, 2024
970f206
Working BFS code for multiple hosts (#65)
anubhavgoel26 Apr 18, 2024
087ac26
connected components working
divija95 Apr 18, 2024
f507fac
Add output path
Apr 18, 2024
4f7610b
Merge branch 'PortingBFS' of github.com:utcs-scea/graph-log-sketch in…
Apr 18, 2024
f262572
latest pagerank code - not working
anubhavgoel26 Apr 18, 2024
fc94817
Refine script
Apr 18, 2024
662fc5e
Merge branch 'PortingBFS' of github.com:utcs-scea/graph-log-sketch in…
Apr 18, 2024
25055f4
correct wrong template
divija95 Apr 18, 2024
7c59bdc
fixing typo
divija95 Apr 18, 2024
7c3dccc
fix format of python batch creation script
Apr 18, 2024
d39f60e
added ES to connected components
anubhavgoel26 Apr 18, 2024
f14b55a
added ES connected components
anubhavgoel26 Apr 18, 2024
c7e0ce9
removing print statements
divija95 Apr 19, 2024
20345be
minor edits
divija95 Apr 19, 2024
78681e3
fixed all errors
divija95 Apr 19, 2024
52f81ae
adding boost program options
divija95 Apr 20, 2024
783a491
getting rid of relative include paths
divija95 Apr 20, 2024
2826149
clearing pre-commit checks part 1
divija95 Apr 20, 2024
6490d92
fixing pre-commits part 2
divija95 Apr 20, 2024
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
Prev Previous commit
Next Next commit
pre-commit fixes
anubhavgoel26 committed Apr 9, 2024
commit db4a735b23ac840c9c2baa06b82a486b327089fb
2 changes: 1 addition & 1 deletion include/scea/algo/bc.hpp
Original file line number Diff line number Diff line change
@@ -71,4 +71,4 @@ class BetweennessCentrality : public Algo {
void operator()(scea::graph::MutableGraph& g) override { compute(g); }
};

} // namespace scea::algo
} // namespace scea::algo