diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2015-12-05 16:12:49 +0100 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-12-17 13:20:56 -0700 |
commit | 68355274ed556a7d6867ffb00d86fbcc2cfc1f15 (patch) | |
tree | e6d21a98f510e697976bf1701852a3e008f8d110 /doc/release | |
parent | 1350b46714ac8f6f04646ae637b84ef23c2ac917 (diff) | |
download | numpy-68355274ed556a7d6867ffb00d86fbcc2cfc1f15.tar.gz |
DOC: add fallocate use to release notes
Diffstat (limited to 'doc/release')
-rw-r--r-- | doc/release/1.11.0-notes.rst | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/release/1.11.0-notes.rst b/doc/release/1.11.0-notes.rst index e7b9c57e2..7790ac58f 100644 --- a/doc/release/1.11.0-notes.rst +++ b/doc/release/1.11.0-notes.rst @@ -82,12 +82,12 @@ Improvements ============ *np.gradient* now supports an ``axis`` argument -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The ``axis`` parameter was added to *np.gradient* for consistency. It allows to specify over which axes the gradient is calculated. *np.lexsort* now supports arrays with object data-type -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The function now internally calls the generic ``npy_amergesort`` when the type does not implement a merge-sort kind of ``argsort`` method. @@ -99,6 +99,11 @@ Creating a masked array with ``mask=True`` (resp. ``mask=False``) now uses a big memory peak. Another optimization was done to avoid a memory peak and useless computations when printing a masked array. +*ndarray.tofile* now uses fallocate on linux +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +The function now uses the fallocate system call to reserve sufficient +diskspace on filesystems that support it. + Changes ======= |