Skip to content

Commit

Permalink
fix memory estimation
Browse files Browse the repository at this point in the history
  • Loading branch information
IoannisPanagiotas committed Aug 30, 2024
1 parent 0497016 commit 9d94efb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ void memoryEstimation(int concurrency,long expected) {

static Stream<Arguments> memoryEstimationSetup() {
return Stream.of(
Arguments.of(1, 960),
Arguments.of(4, 1_080)
Arguments.of(1, 1120),
Arguments.of(4, 1240)
);
}

Expand Down
2 changes: 1 addition & 1 deletion doc/modules/ROOT/pages/algorithms/modularity.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ YIELD nodeCount, relationshipCount, bytesMin, bytesMax, requiredMemory
[opts="header"]
|===
| nodeCount | relationshipCount | bytesMin | bytesMax | requiredMemory
| 6 | 14 | 872 | 872 | "872 Bytes"
| 6 | 14 | 968 | 968 | "968 Bytes"
|===
--

Expand Down

0 comments on commit 9d94efb

Please sign in to comment.