Commit de3fdb85 authored by Kirill Smelkov's avatar Kirill Smelkov

wendelin.core v0.3

parent a5511edf
Wendelin.core change history
============================
0.3 (2015-06-12)
----------------
- Add support for automatic BigArray -> ndarray conversion, so that e.g. the
following::
A = BigArray(...)
numpy.mean(A) # passing BigArray to plain NumPy function
either succeeds, or raises MemoryError if not enough address space is
available to cover whole A. (current limitation is ~ 127TB on linux/amd64)
https://lab.nexedi.cn/nexedi/wendelin.core/commit/00db08d6
- Various bugfixes (build-fixes, crashes, overflows, etc)
0.2 (2015-05-25)
----------------
......
......@@ -204,7 +204,7 @@ if os.path.exists('.git'): # FIXME won't work if we are checked out as e.g. sub
setup(
name = 'wendelin.core',
version = '0.2.post1',
version = '0.3',
description = 'Out-of-core NumPy arrays',
url = 'http://www.wendelin.io/',
license = 'GPLv3+ with wide exception for Open-Source',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment