Skip to content

Commit a7ce5fe

Browse files
committed
update docs
1 parent bb517dc commit a7ce5fe

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/installation/suggestion.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ memory footprint per MPI task exceeds the amount of main memory
4343
available to the compiled code. To help the user to make the correct
4444
decision in terms of resources a simple formula for **Block distribution** of matrix can be used ::
4545

46-
sizeof(float_type) *[n * m + (n + m + max(m,n)) * block + 2 * N *
46+
sizeof(float_type) *[n * m + (n + m) * block + 2 * N *
4747
block + 1 + 5*n + 2*pow(n,2) + 2 * nb]/(1024^3) GigaByte
4848

4949
where ``n`` and ``m`` are fractions of ``N`` which depend on the size
@@ -61,7 +61,7 @@ For ChASE with **Block-Cyclic distribution** of matrix, addtional memory of
6161
size ``sizeof(float_type) * N * block`` is required for managing the internal reshuffing
6262
for block-cyclic data layout. Thus the total memory required is::
6363

64-
sizeof(float_type) *[n * m + (n + m + max(m,n)) * block + 3 * N *
64+
sizeof(float_type) *[n * m + (n + m) * block + 3 * N *
6565
block + 1 + 5*n + 2*pow(n,2) + 2 * nb]/(1024^3) GigaByte
6666

6767

@@ -97,8 +97,8 @@ in which ``${n}`` is the rank of matrix, ``${nev}`` is the number of eigenpairs
9797
Data Layout: block
9898
9999
100-
Main memory usage per MPI-rank: 17.798 GB
101-
Total main memory usage (1824 ranks): 20503.089 GB
100+
Main memory usage per MPI-rank: 17.546 GB
101+
Total main memory usage (1824 ranks): 20213.410 GB
102102
103103
104104
Using such a formula one can verify if the allocation of
@@ -136,8 +136,8 @@ the required MPI grid size. Moreover, the flag ``--layout`` should also be expli
136136
Data Layout: block-cyclic
137137
138138
139-
Main memory usage per MPI-rank: 25.844 GB
140-
Total main memory usage (1152 ranks): 29772.803 GB
139+
Main memory usage per MPI-rank: 25.593 GB
140+
Total main memory usage (1152 ranks): 29483.125 GB
141141
142142
143143
ChASE with multi-GPUs

0 commit comments

Comments
 (0)