summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2020-12-29 21:34:12 (GMT)
committerGitHub <noreply@github.com>2020-12-29 21:34:12 (GMT)
commiteb3c0d62c917ce4e08d5090e92e1b7b331c924c6 (patch)
tree77a4e34bff846f980e177e3b87ad49411df0a15d /release_docs
parent16aa92d535c9fddcd840e2a6c386c5a00ce49164 (diff)
downloadhdf5-eb3c0d62c917ce4e08d5090e92e1b7b331c924c6.zip
hdf5-eb3c0d62c917ce4e08d5090e92e1b7b331c924c6.tar.gz
hdf5-eb3c0d62c917ce4e08d5090e92e1b7b331c924c6.tar.bz2
1 12 HDFFV-10865 - merge from dev, HDFArray perf fix (#233)
* merge updates from develop * remove extension on command * Run autogen before chkmanifest * Update release text files and whitespace cleanup * Update list * OESS-98 Update plugin build option * OESS-98 fix tools test for plugins * Fix conflict * OESS-98 fix hdf5 link target * Update pkgconfig settings with version - #218 * HDFFV-10865 - merge from dev, HDFArray perf fix. * HDFFV-10865 - fix date
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index a6eac8e..449e49f 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -307,6 +307,20 @@ Bug Fixes since HDF5-1.12.0 release
(QAK - 2020/05/07)
+ Java Library:
+ ----------------
+ - The H5FArray.java class, in which virtually the entire execution time
+ is spent using the HDFNativeData method that converts from an array
+ of bytes to an array of the destination Java type.
+
+ 1. Convert the entire byte array into a 1-d array of the desired type,
+ rather than performing 1 conversion per row;
+ 2. Use the Java Arrays method copyOfRange to grab the section of the
+ array from (1) that is desired to be inserted into the destination array.
+
+ (PGT,ADB - 2020/12/29, HDFFV-10865)
+
+
Tools:
------