Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
meyerzinn committed Apr 17, 2024
1 parent 7991635 commit 4f7dd0e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libgalois/include/galois/graphs/LS_LC_CSR_Graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ class LS_LC_CSR_Graph : private boost::noncopyable {

// Compute the prefix sum using the two level method
void computePrefixSum() {
resetPrefixSum();
constexpr uint64_t PARALLEL_PREFIX_SUM_VERTEX_THRESHOLD =
static_cast<uint64_t>(1) << 30;
if (m_vertices.size() > PARALLEL_PREFIX_SUM_VERTEX_THRESHOLD) {
Expand Down

0 comments on commit 4f7dd0e

Please sign in to comment.