-
Notifications
You must be signed in to change notification settings - Fork 305
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
[REVIEW] Add indirection and replace algorithms with new renumbering #1484
[REVIEW] Add indirection and replace algorithms with new renumbering #1484
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #1484 +/- ##
===============================================
- Coverage 60.72% 60.35% -0.38%
===============================================
Files 70 70
Lines 3132 3143 +11
===============================================
- Hits 1902 1897 -5
- Misses 1230 1246 +16
Continue to review full report at Codecov.
|
@@ -32,6 +32,10 @@ def call_pagerank(sID, | |||
personalization, | |||
nstart): | |||
wid = Comms.get_worker_id(sID) | |||
print("RANK: ", wid) |
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 want these print statements left here?
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.
No. Will remove them , thanks for catching
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.
What change should I make to call the C++ renumber code in both Pascal & non-Pascal architectures? (I am planning to update the C++ renumber code to use a binary search based approach for Pascal).
And once renumber_map is returned, currently, unrenumbering step is purely python and differences in partitioning mechanisms shouldn't affect the unrenumbering process, correct?
def call_renumber(sID, | ||
data, | ||
num_edges, | ||
is_mnmg, |
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.
In case of single node multi-gpu, shouldn't this be false? If this should be true in single-node multi-gpu, isn't this a misnomer?
Please disregard my question if we are not supporting Pascal only in the single-GPU mode (and I am assuming we're not using the C++ renumbering code on Pascal). |
@gpucibot merge |
No description provided.