From ec21786e78a6e8a4a99e4526eba27a585c77b40f Mon Sep 17 00:00:00 2001 From: Tiziano Zito Date: Mon, 5 Aug 2024 16:36:59 +0200 Subject: [PATCH] try github flavoured markdown for superscript --- benchmark_python/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark_python/README.md b/benchmark_python/README.md index bb115d2..e681ba9 100644 --- a/benchmark_python/README.md +++ b/benchmark_python/README.md @@ -4,7 +4,7 @@ ## Benchmarks details - - Create in memory a list of `N=128` one dimensional numpy arrays of length `L` starting from `L=2` up to `L=2²²=4_194_304` in steps of powers of two. + - Create in memory a list of `N=128` one dimensional numpy arrays of length `L` starting from `L=2` up to `L=2²²=222=4_194_304` in steps of powers of two. - Given that each item of the array is of type `float64`, i.e. 8 bytes, the size of the arrays goes from `16B` to `32M` - The total memory required is at least `128 × 32M × 2 = 8G` - Load the whole list in one big numpy array of size `N`x`L` (*good*) and `L`x`N` (*bad*). The corresponding loops are: