Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
bozhiyou committed Aug 28, 2023
1 parent db0e37a commit dbbe96c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tools/dist-graph-convert/dist-graph-convert-helpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -450,8 +450,8 @@ void receiveAssignedEdges(std::atomic<uint64_t>& edgesToReceive,
std::vector<uint32_t> recvDataVector;

while (edgesToReceive) {
decltype(
net.recieveTagged(galois::runtime::evilPhase, nullptr)) rBuffer;
decltype(net.recieveTagged(galois::runtime::evilPhase,
nullptr)) rBuffer;
rBuffer = net.recieveTagged(galois::runtime::evilPhase, nullptr);

// the buffer will have edge data as well if localsrctodata is
Expand Down
2 changes: 1 addition & 1 deletion tools/graph-convert/graph-convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ struct Mtx2Gr : public HasNoVoidSpecialization {
}

for (size_t edge_num = 0; edge_num < nedges; ++edge_num) {
if ( (nedges / 500 > 0) && (edge_num % (nedges / 500)) == 0) {
if ((nedges / 500 > 0) && (edge_num % (nedges / 500)) == 0) {
printf("Phase %d: current edge progress %lf%%\n", phase,
((double)edge_num / nedges) * 100);
}
Expand Down

0 comments on commit dbbe96c

Please sign in to comment.