Skip to content

Commit

Permalink
Fix math typo in GiB definition (#445)
Browse files Browse the repository at this point in the history
While reading the documentation at https://jobqueue.dask.org/en/latest/configuration-setup.html
I noticed a strange "1 GiB = 2³0 bytes" and realized it should be "1 GiB = 2³⁰ bytes"
This fixes that typo.
  • Loading branch information
rwest committed Jun 17, 2020
1 parent f8b386c commit 9ffa053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/configuration-setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Gigabyte vs Gibibyte
It is important to note that Dask makes the difference between
power of 2 and power of 10 when specifying memory. This means that:
- 1GB = :math:`10^9` bytes
- 1GiB = :math:`2^30` bytes
- 1GiB = :math:`2^{30}` bytes

``memory`` configuration is interpreted by Dask memory parser, and for most
JobQueueCluster implementation translated as a resource requirement for job
Expand Down

0 comments on commit 9ffa053

Please sign in to comment.