summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-08-16 14:04:13 +0200
committerGitHub <[email protected]>2020-08-16 14:04:13 +0200
commit7ce1059a5161e9cc59226b16b3d2fa186088625a (patch)
treef3e85807b3caa1f4d10a06be9c53e2398feb98de
parentf53f8a62046d4726bbda0317913d1c1860210063 (diff)
downloadSTC-modified-7ce1059a5161e9cc59226b16b3d2fa186088625a.tar.gz
STC-modified-7ce1059a5161e9cc59226b16b3d2fa186088625a.zip
Update README.md
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index bccae5bb..e8a2d4ce 100644
--- a/README.md
+++ b/README.md
@@ -62,8 +62,9 @@ declare_clist(v3, Vec3);
Performance
-----------
-The library is very efficent. Containers have templated intrusive elements. One of the most performance critical containers is the **cmap / cset**. Luckily, cmap is among the fastest C/C++ map implementations available: **examples/benchmark.c** compiled with g++ v9.2.0 -O3 on windows (the results are similar with VC++ and g++ on linux):
+The library is very efficent. Containers have templated intrusive elements. One of the most performance critical containers is the **cmap / cset**. Luckily, cmap is among the fastest C/C++ map implementations available, see **examples/benchmark.c**
+Compiled with g++ v9.2.0 -O3 on windows, Ryzen 7 2700X CPU. Similar results with VC and clang.
**CMAP**=*cmap*, KMAP=*khash*, **UMAP**=*std::unordered_map*, BMAP=*ska::bytell_hash_map*, FMAP=*ska::flat_hash_map*, RMAP=*robin_hood::unordered_map*
```
Random keys are in range [0, 2^20):