Go to file
Daniel Verkamp e815371be7 igzip: remove unused hash_section() function
This isn't referenced anywhere and isn't part of the public API.

Change-Id: I1e4809c8cc4ac64310fa151425e710abb7351079
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
2018-03-12 08:47:49 -07:00
crc crc: Create a combined crc32 check test 2018-02-02 13:51:17 -07:00
erasure_code build: fix compilation with CPU not supporting SSE 2018-02-23 06:13:10 -05:00
igzip igzip: remove unused hash_section() function 2018-03-12 08:47:49 -07:00
include igzip: Increase long_code_lookup struct size to fix buffer overflow 2017-12-19 10:24:23 -07:00
raid raid: Ensure example meets min align requirement 2018-03-06 13:39:32 -07:00
tests/fuzz igzip: Fix igzip fuzz test for lev2-3 buf size 2017-12-19 11:01:46 -07:00
tools test: Run with new test_seed in each extended test 2017-12-11 16:15:55 -07:00
.travis.yml test: Remove travis job that pulls nasm from debian 2017-12-21 17:36:04 -07:00
autogen.sh Initial commit isa-l v2.14.1 2016-02-24 14:54:34 -07:00
configure.ac build: Change configure nasm min test for AVX512 2017-12-20 11:54:41 -07:00
CONTRIBUTING.md build: Add format checking script 2017-08-25 13:37:13 -07:00
Doxyfile doc: Add doxyfile for API doc creation 2017-01-11 19:14:23 -07:00
isa-l.def crc: Add t10dif+copy function 2017-12-18 15:59:17 -07:00
libisal.pc.in Initial commit isa-l v2.14.1 2016-02-24 14:54:34 -07:00
LICENSE build: Bump revision to 2.19 2017-06-26 04:47:40 -04:00
make.inc Include doxygen label in toplevel header 2018-02-09 11:13:27 -07:00
Makefile.am Include doxygen label in toplevel header 2018-02-09 11:13:27 -07:00
Makefile.nmake igzip: create optimized set_long_icf_fg for avx2 2018-03-01 13:27:48 -07:00
Makefile.unx test: Add llvm fuzz testing 2017-11-17 17:28:27 -07:00
README.md build: Change configure nasm min test for AVX512 2017-12-20 11:54:41 -07:00
Release_notes.txt Update release notes for v2.21 additions 2017-12-21 11:41:00 -07:00

Intel(R) Intelligent Storage Acceleration Library

Build Status

ISA-L is a collection of optimized low-level functions targeting storage applications. ISA-L includes:

  • Erasure codes - Fast block Reed-Solomon type erasure codes for any encode/decode matrix in GF(2^8).
  • CRC - Fast implementations of cyclic redundancy check. Six different polynomials supported.
    • iscsi32, ieee32, t10dif, ecma64, iso64, jones64.
  • Raid - calculate and operate on XOR and P+Q parity found in common RAID implementations.
  • Compression - Fast deflate-compatible data compression.
  • De-compression - Fast inflate-compatible data compression.

Also see:

Building ISA-L

Prerequisites

  • Assembler: nasm v2.11.01 or later (nasm v2.13 or better suggested for building in AVX512 support) or yasm version 1.2.0 or later.
  • Compiler: gcc, clang, icc or VC compiler.
  • Make: GNU 'make' or 'nmake' (Windows).
  • Optional: Building with autotools requires autoconf/automake packages.

Autotools

To build and install the library with autotools it is usually sufficient to run:

./autogen.sh
./configure
make
sudo make install

Makefile

To use a standard makefile run:

make -f Makefile.unx

Windows

On Windows use nmake to build dll and static lib:

nmake -f Makefile.nmake

Other make targets

Other targets include:

  • make check : create and run tests
  • make tests : create additional unit tests
  • make perfs : create included performance tests
  • make ex : build examples
  • make other : build other utilities such as compression file tests
  • make doc : build API manual