diff --git a/README.md b/README.md index c3f5778..d156030 100644 --- a/README.md +++ b/README.md @@ -144,10 +144,10 @@ When an ordering is not needed, a hash container is typically a better choice th | type | memory usage | additional *peak* memory usage when resizing | |-----------------------|-------------------|-----------------------------------------------| -| flat tables | ![flat_mem_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/flat_mem_usage.gif?raw=true) | ![flat_peak_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/flat_peak.gif?raw=true) | -| node tables | ![node_mem_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/node_mem_usage.gif?raw=true) | ![node_peak_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/node_peak.gif?raw=true) | -| parallel flat tables | ![flat_mem_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/flat_mem_usage.gif?raw=true) | ![parallel_flat_peak](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/parallel_flat_peak.gif?raw=true) | -| parallel node tables | ![node_mem_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/node_mem_usage.gif?raw=true) | ![parallel_node_peak](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/parallel_node_peak.gif?raw=true) | +| flat tables | ![flat_mem_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/flat_mem_usage.png?raw=true) | ![flat_peak_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/flat_peak.png?raw=true) | +| node tables | ![node_mem_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/node_mem_usage.png?raw=true) | ![node_peak_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/node_peak.png?raw=true) | +| parallel flat tables | ![flat_mem_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/flat_mem_usage.png?raw=true) | ![parallel_flat_peak](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/parallel_flat_peak.png?raw=true) | +| parallel node tables | ![node_mem_usage](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/node_mem_usage.png?raw=true) | ![parallel_node_peak](https://github.com/greg7mdp/parallel-hashmap/blob/master/html/img/parallel_node_peak.png?raw=true) | - *size()* is the number of values in the container, as returned by the size() method diff --git a/html/img/flat_mem_usage.png b/html/img/flat_mem_usage.png new file mode 100644 index 0000000..800a53c Binary files /dev/null and b/html/img/flat_mem_usage.png differ diff --git a/html/img/flat_peak.png b/html/img/flat_peak.png new file mode 100644 index 0000000..167edb8 Binary files /dev/null and b/html/img/flat_peak.png differ diff --git a/html/img/node_mem_usage.png b/html/img/node_mem_usage.png new file mode 100644 index 0000000..15cb1e0 Binary files /dev/null and b/html/img/node_mem_usage.png differ diff --git a/html/img/node_peak.png b/html/img/node_peak.png new file mode 100644 index 0000000..e818cb3 Binary files /dev/null and b/html/img/node_peak.png differ diff --git a/html/img/parallel_flat_peak.png b/html/img/parallel_flat_peak.png new file mode 100644 index 0000000..019104e Binary files /dev/null and b/html/img/parallel_flat_peak.png differ diff --git a/html/img/parallel_node_peak.png b/html/img/parallel_node_peak.png new file mode 100644 index 0000000..9efca9a Binary files /dev/null and b/html/img/parallel_node_peak.png differ