Skip to content

Releases: AdityaIyer2k7/pychunkbuffers

Mathematical error

26 Apr 10:08
bfee669
Compare
Choose a tag to compare

Recently I noticed an error where, if I ran run_chunked with chunksz=50, minidx=5, maxidx=5000, then 105 chunks would be created instead of 100. The error was tracked down to an incorrect mathematical calculation regarding the number of chunks to create

n = minidx + math.ceil((maxidx - minidx) / chunksz)

is now simply

n = math.ceil((maxidx - minidx) / chunksz)

Second release

24 Apr 07:49
Compare
Choose a tag to compare
1.0.3

Merge branch 'main' of https://github.com/AdityaIyer2k7/pychunkbuffers

First Release

20 Apr 10:20
75ba904
Compare
Choose a tag to compare
1.0.0

Rename main.yml to python-publish.yml