2017-12-21 02:33:54 +01:00
|
|
|
v2.21 Intel Intelligent Storage Acceleration Library Release Notes
|
2017-03-31 03:35:15 +02:00
|
|
|
==================================================================
|
2015-10-22 23:54:34 +02:00
|
|
|
|
|
|
|
RELEASE NOTE CONTENTS
|
|
|
|
1. KNOWN ISSUES
|
|
|
|
2. FIXED ISSUES
|
|
|
|
3. CHANGE LOG & FEATURES ADDED
|
|
|
|
|
2017-03-31 03:35:15 +02:00
|
|
|
1. KNOWN ISSUES
|
|
|
|
----------------
|
2015-10-22 23:54:34 +02:00
|
|
|
|
|
|
|
* Perf tests do not run in Windows environment.
|
|
|
|
|
|
|
|
* 32-bit lib is not supported in Windows.
|
|
|
|
|
|
|
|
2. FIXED ISSUES
|
2017-03-31 03:35:15 +02:00
|
|
|
---------------
|
2017-09-16 03:59:31 +02:00
|
|
|
v2.20
|
|
|
|
|
|
|
|
* Inflate total_out behavior corrected for in-progress decompression.
|
|
|
|
Previously total_out represented the total bytes decompressed into the output
|
|
|
|
buffer or temp internal buffer. This is changed to be only the bytes put into
|
|
|
|
the output buffer.
|
2017-03-31 03:35:15 +02:00
|
|
|
|
2017-09-27 02:27:45 +02:00
|
|
|
* Fixed issue with isal_create_hufftables_subset. Affects semi-dynamic
|
|
|
|
compression use case when explicitly creating hufftables from histogram. The
|
|
|
|
_hufftables_subset function could fail to generate length symbols for any
|
|
|
|
length that were never seen.
|
|
|
|
|
2017-06-26 10:51:35 +02:00
|
|
|
v2.19
|
|
|
|
|
|
|
|
* Fix erasure code test that violates rs matrix bounds.
|
|
|
|
|
|
|
|
* Fix 0 length file and looping errors in igzip_inflate_test.
|
|
|
|
|
2017-03-31 03:35:15 +02:00
|
|
|
v2.18
|
|
|
|
|
|
|
|
* Mac OS X/darwin systems no longer require the --target=darwin config option.
|
|
|
|
The autoconf canonical build should detect.
|
|
|
|
|
2016-12-07 05:28:52 +01:00
|
|
|
v2.17
|
|
|
|
|
|
|
|
* Fix igzip using 32K window and a shared object
|
|
|
|
|
|
|
|
* Fix igzip undefined instruction error on Nehalem.
|
|
|
|
|
|
|
|
* Fixed issue in crc performance tests where OS optimizations turned cold cache
|
|
|
|
tests into warm tests.
|
|
|
|
|
2015-11-18 23:40:52 +01:00
|
|
|
v2.15
|
|
|
|
|
|
|
|
* Fix for windows register save in gf_6vect_mad_avx2.asm. Only affects windows
|
|
|
|
versions of ec_encode_data_update() running with AVX2. A GP register was not
|
|
|
|
properly restored resulting in corruption on return.
|
|
|
|
|
2015-10-22 23:54:34 +02:00
|
|
|
v2.14
|
|
|
|
|
|
|
|
* Building in unit directories is no longer supported removing the issue of
|
|
|
|
leftover object files causing the top-level make build to fail.
|
|
|
|
|
|
|
|
v2.10
|
|
|
|
|
|
|
|
* Fix for windows register save overlap in gf_{3-6}vect_dot_prod_sse.asm. Only
|
|
|
|
affects windows versions of erasure code. GP register saves/restore were
|
|
|
|
pushed to same stack area as XMM.
|
|
|
|
|
2017-05-31 03:28:57 +02:00
|
|
|
3. CHANGE LOG & FEATURES ADDED
|
2017-03-31 03:35:15 +02:00
|
|
|
------------------------------
|
2017-12-21 02:33:54 +01:00
|
|
|
v2.21
|
|
|
|
|
|
|
|
* Igzip improvements
|
|
|
|
- New compression levels added. ISA-L fast deflate now has more levels to
|
|
|
|
balance speed vs. target compression level. Level 0, 1 are as in previous
|
|
|
|
generations. New levels 2 & 3 target higher compression roughly comparable
|
|
|
|
to zlib levels 2-3. Level 3 is currently only optimized for processors with
|
|
|
|
AVX512 instructions.
|
|
|
|
|
|
|
|
* New T10dif & copy function - crc16_t10dif_copy()
|
|
|
|
- CRC and copy was added to emulate T10dif operations such as DIF insert and
|
|
|
|
strip. This function stitches together CRC and memcpy operations
|
|
|
|
eliminating an extra data read.
|
|
|
|
|
|
|
|
* CRC32 iscsi performance improvements
|
|
|
|
- Fixes issue under some distributions where warm cache performance was
|
|
|
|
reduced.
|
2017-03-31 03:35:15 +02:00
|
|
|
|
2017-09-16 03:59:31 +02:00
|
|
|
v2.20
|
|
|
|
|
|
|
|
* Igzip improvements
|
|
|
|
- Optimized deflate_hash in compression functions.
|
|
|
|
Improves performance of using preset dictionary.
|
|
|
|
- Removed alignment restrictions on input structure.
|
|
|
|
|
2017-06-26 10:51:35 +02:00
|
|
|
v2.19
|
|
|
|
|
|
|
|
* Igzip improvements
|
|
|
|
|
|
|
|
- Add optimized Adler-32 checksum.
|
|
|
|
|
|
|
|
- Implement zlib compression format.
|
|
|
|
|
|
|
|
- Add stateful dictionary support.
|
|
|
|
|
|
|
|
- Add struct reset functions for both deflate and inflate.
|
|
|
|
|
|
|
|
* Reflected IEEE format CRC32 is released out. Function interface is named
|
|
|
|
crc32_gzip_refl.
|
|
|
|
|
|
|
|
* Exact work condition of Erasure Code Reed-Solomon Matrix is determined by new
|
|
|
|
added program gen_rs_matrix_limits.
|
|
|
|
|
2017-03-31 03:35:15 +02:00
|
|
|
v2.18
|
|
|
|
|
|
|
|
* New 2-pass fully-dynamic deflate compression (level -1). ISA-L fast deflate
|
|
|
|
now has two levels. Level 0 (default) is the same as previous generations.
|
|
|
|
Setting to level 1 will switch to the fully-dynamic compression that will
|
|
|
|
typically reach higher compression ratios.
|
|
|
|
|
|
|
|
* RAID AVX512 functions.
|
|
|
|
|
2016-12-07 05:28:52 +01:00
|
|
|
v2.17
|
|
|
|
|
|
|
|
* New fast decompression (inflate)
|
|
|
|
|
|
|
|
* Compression improvements (deflate)
|
|
|
|
- Speed and compression ratio improvements.
|
|
|
|
- Fast custom Huffman code generation.
|
|
|
|
- New features:
|
|
|
|
* Run-time option of gzip crc calculation and headers/trailer.
|
|
|
|
* Choice of static header (BTYPE 01) blocks.
|
|
|
|
* LARGE_WINDOW, 32K history, now default.
|
|
|
|
* Stateless full flush mode.
|
|
|
|
|
|
|
|
* CRC64
|
|
|
|
- Six new 64-bit polynomials supported. Normal and reflected versions of ECMA,
|
|
|
|
ISO and Jones polynomials.
|
|
|
|
|
2016-06-04 03:03:11 +02:00
|
|
|
v2.16
|
|
|
|
|
|
|
|
* Units added: crc, raid, igzip (deflate compression).
|
|
|
|
|
2015-11-18 23:40:52 +01:00
|
|
|
v2.15
|
|
|
|
|
|
|
|
* Erasure code updates. New AVX512 versions.
|
|
|
|
|
|
|
|
* Nasm support. ISA-L ported to build with nasm or yasm assembler.
|
|
|
|
|
|
|
|
* Windows DLL support. Windows builds DLL by default.
|
|
|
|
|
2015-10-22 23:54:34 +02:00
|
|
|
v2.14
|
|
|
|
|
|
|
|
* Autoconf and autotools build allows easier porting to additional systems.
|
|
|
|
Previous make system still available to embedded users with Makefile.unx.
|
|
|
|
|
|
|
|
* Includes update for building on Mac OS X/darwin systems. Add --target=darwin
|
|
|
|
to ./configure step.
|
|
|
|
|
|
|
|
v2.13
|
|
|
|
|
|
|
|
* Erasure code improvments
|
|
|
|
- 32-bit port of optimized gf_vect_dot_prod() functions. This makes
|
|
|
|
ec_encode_data() functions much faster on 32-bit processors.
|
|
|
|
- Avoton performance improvements. Performance on Avoton for
|
|
|
|
gf_vect_dot_prod() and ec_encode_data() can improve by as much as 20%.
|
|
|
|
|
|
|
|
v2.11
|
|
|
|
|
|
|
|
* Incremental erasure code. New functions added to erasure code to handle
|
|
|
|
single source update of code blocks. The function ec_encode_data_update()
|
|
|
|
works with parameters similar to ec_encode_data() but are called incrementally
|
|
|
|
with each source block. These versions are useful when source blocks are not
|
|
|
|
all available at once.
|
|
|
|
|
|
|
|
v2.10
|
|
|
|
|
|
|
|
* Erasure code updates
|
|
|
|
- New AVX and AVX2 support functions.
|
|
|
|
- Changes min len requirement on gf_vect_dot_prod() to 32 from 16.
|
|
|
|
- Tests include both source and parity recovery with ec_encode_data().
|
|
|
|
- New encoding examples with Vandermonde or Cauchy matrix.
|
|
|
|
|
|
|
|
v2.8
|
|
|
|
|
|
|
|
* First open release of erasure code unit that is part of ISA-L.
|