From f92caa57025db0cc72cdc2f5d9b0cd44bb3515ce Mon Sep 17 00:00:00 2001 From: John Marshall Date: Tue, 17 Feb 2026 10:11:35 +1300 Subject: [PATCH] Fix SI vs IEC prefix table formatting and typos For sphinx-markdown-tables, it seems tables can't be in a quoted paragraph. (Note that KiB is indeed capitalised thus.) --- hail.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/hail.md b/hail.md index 9574f74..eee0474 100644 --- a/hail.md +++ b/hail.md @@ -134,18 +134,19 @@ Specifying resources in Hail Batch is straight forward, if you note that: - The number of CPUs is restricted to powers of 2 (0.25, 0.5, 1, 2, 4, 8, 16) - The memory is intrinsicially tied to the number of CPUs. -> Note the difference between the between Gigabytes (GB) and Gibibytes (GiB), that: -> | Unit | Standard | Binary | -> | - | ----------- | -------------- | -> | k | kB (1000^1) | kiB (1024^1) | -> | M | MB (1000^2) | MiB (1024 ^ 2) | -> | G | GB (1000^3) | GiB (1024 ^ 3) | -> | T | TB (1000^4) | TB (1024 ^ 4) | -> | P | PB (1000^5) | PB (1024 ^ 5) | +Note the difference between the between Gigabytes (GB) and Gibibytes (GiB), thus: + +| Unit | Standard | Binary | +| - | ----------- | ------------ | +| k | kB (1000^1) | KiB (1024^1) | +| M | MB (1000^2) | MiB (1024^2) | +| G | GB (1000^3) | GiB (1024^3) | +| T | TB (1000^4) | TiB (1024^4) | +| P | PB (1000^5) | PiB (1024^5) | There are 3 categories of machines: -- `lowmem`: ` 1 GB (0.902 GiB) / core +- `lowmem`: 1 GB (0.902 GiB) / core - `standard`: 4 GB (3.8 GiB) / core - `highmem`: 7 GB (6.5 GiB) / core