RETIRED, further work has moved to Debian project infrastructure
Go to file
Greg Tucker 6715e73d16 build: Bump revision to 2.18
Change-Id: I9b62a40d6a8c850476eb426d7c163f25d4af3a51
Signed-off-by: Greg Tucker <greg.b.tucker@intel.com>
2017-03-30 20:22:36 -07:00
crc crc: Add base function aliases 2017-03-30 17:37:48 -07:00
erasure_code ec: Fixes for 32-bit build 2017-03-30 17:56:07 -07:00
igzip igzip: Remove unnecessary casts causing warnings in 32bit build 2017-03-30 20:22:36 -07:00
include igzip: Fix bug in isal_deflate where processed is not calculated correctly. 2017-03-30 17:20:32 -07:00
raid raid: Add avx512 version of pq_gen 2017-03-30 20:22:36 -07:00
tools doc: Add build details and contributing 2017-02-24 14:50:34 -07:00
.travis.yml Update travis-cl test script to avoid old nasm 2016-06-17 15:06:12 -07:00
CONTRIBUTING.md doc: Add build details and contributing 2017-02-24 14:50:34 -07:00
Doxyfile doc: Add doxyfile for API doc creation 2017-01-11 19:14:23 -07:00
LICENSE Add data compression unit 2016-06-10 17:03:38 -07:00
Makefile.am build: Bump revision to 2.18 2017-03-30 20:22:36 -07:00
Makefile.nmake raid: Update nmake obj list for avx512 versions 2017-03-30 20:22:36 -07:00
Makefile.unx Add data compression unit 2016-06-10 17:03:38 -07:00
README.md doc: Add build details and contributing 2017-02-24 14:50:34 -07:00
Release_notes.txt Update release notes for v2.17 additions 2016-12-06 21:28:52 -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.18 2017-03-30 20:22:36 -07:00
isa-l.def Update windows config files 2016-12-06 22:42:20 -07:00
libisal.pc.in Initial commit isa-l v2.14.1 2016-02-24 14:54:34 -07:00
make.inc build: Bump revision to 2.18 2017-03-30 20:22:36 -07:00

README.md

================================================= 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

  • yasm version 1.2.0 or later or nasm v2.11.01 or later.
  • gcc, clang, icc or VC compiler.
  • GNU 'make' or 'nmake' (Windows).
  • 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 targes 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