Merge pull request #109 from 233m/main

repair readme
This commit is contained in:
Luis Alberto
2021-10-14 08:58:42 -05:00
committed by GitHub

View File

@@ -946,9 +946,10 @@ To get optimal performance the k values need to be base 2^x values, this is 1,2,
### Valid n and k values
```
+---------------------------+-------------+---------------------------+
| bits | n in hexadecimal | k max value | Amount of RAM with k = 1 |
+---------------------------+-------------+---------------------------+
| +-------------------------+-------------+---------------------------+
| 20 | 0x100000 | 1 (default) | |
| 22 | 0x400000 | 2 | |
| 24 | 0x1000000 | 4 | |
@@ -972,7 +973,7 @@ To get optimal performance the k values need to be base 2^x values, this is 1,2,
| 60 | 0x1000000000000000 | 1048576 | ~4.5 GB |
| 62 | 0x4000000000000000 | 2097152 | ~9 GB |
+---------------------------+-------------+---------------------------+
```
*if you exceed the Max value of K the program can have a unknow behavior, the program can have a suboptimal performance, or in the wrong cases you can missing some hits and have an incorrect SPEED.*