Go to file
Roy Oursler fce71b0670 igzip: Implement icf_body random data skip ahead
Change-Id: I5dd5f37ec0cdfe4f2591685dc4a0a056f0b07ea3
Signed-off-by: Roy Oursler <roy.j.oursler@intel.com>
2018-12-04 10:41:40 -07:00
crc build: Fix for mac nasm lack of symbol types 2018-11-29 13:54:36 -07:00
erasure_code build: Fix for mac nasm lack of symbol types 2018-11-29 13:54:36 -07:00
examples/ec ex: Allow erasure list in any order in ec example 2018-05-25 14:44:50 -07:00
igzip igzip: Implement icf_body random data skip ahead 2018-12-04 10:41:40 -07:00
include doc: Fix spelling errors in headers 2018-12-04 10:12:14 -07:00
mem build: Fix for mac nasm lack of symbol types 2018-11-29 13:54:36 -07:00
programs igzip: Set NAME section in man page to something usefull 2018-10-01 09:28:06 -07:00
raid build: Fix for mac nasm lack of symbol types 2018-11-29 13:54:36 -07:00
tests/fuzz igzip: Fixup a few labels and return warnings 2018-11-29 16:37:56 -07:00
tools test: Fix for script where no tags are pulled 2018-11-16 11:06:00 -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: Bump revision to 2.24 2018-09-25 15:37:30 -07:00
CONTRIBUTING.md build: Add format checking script 2017-08-25 13:37:13 -07:00
Doxyfile doc: Add contributing and mainpage to doxygen 2018-06-21 14:39:08 -07:00
isa-l.def igzip: Expose isal_gzip_header_init for Windows DLLs 2018-10-16 16:43:58 -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 build: Fix for older mingw that does not auto add extention 2018-11-15 18:02:49 -07:00
Makefile.am build: Bump revision to 2.24 2018-09-25 15:37:30 -07:00
Makefile.nmake mem: Add zero detect memory functions 2018-09-25 14:33:31 -07:00
Makefile.unx mem: Add zero detect memory functions 2018-09-25 14:33:31 -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.24 additions 2018-09-27 13:35:04 -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