1 This is revision 2.0 of Jerasure. This is pretty much Jerasure 1.2 without the
2 original Galois Field backend. Version 2.0 links directly to GF-Complete, which
3 is more flexible than the original, and *much* faster, because it leverages SIMD
5 Authors: James S. Plank (University of Tennessee)
8 ------------------------------------------------------------
10 The online home for jerasure is:
12 - http://jerasure.org/jerasure/jerasure
14 ------------------------------------------------------------
16 External Documentation:
18 See the file Manual.pdf for the programmer's manual and tutorial.
20 See http://jerasure.org/jerasure/gf-complete for GF-Complete.
22 NOTE: You must have GF-Complete installed (or compiled) in order to use Jerasure 2.0.
24 There are two directories of source code:
26 The src directory contains the jerasure code.
27 The Examples directory contains the example programs.
29 ------------------------------------------------------------
31 If you do not have Autoconf 2.65 or later installed, you can simply build
32 from the tarball distribution:
34 http://www.kaymgee.com/Kevin_Greenan/Software_files/jerasure.tar.gz
36 Installing if you are allowed to install GF-Complete on your machine:
37 (You can skip the autoreconf step if you're using a tarball distribution.)
39 1.) Install GF-Complete
40 2.) autoreconf --force --install (*skip* if you are building from tarball)
45 This will install the library into your machine's lib directory,
46 the headers into include, and the example programs into bin.
48 The configuration process assumes shared objects are searched for in
49 /usr/local/lib. If this is not the case on your system, you can specify a
50 search path at configuration time. For example:
51 ./configure LD_LIBRARY_PATH=/usr/local/lib
53 ------------------------------------------------------------
55 Installing if you can compile GF-Complete, but you cannot install it:
57 1.) Install GF-Complete. Let's suppose the full path to GF-Complete is
58 in the environment variable GFP
59 2A.) On Linux, set the environment variable LD_LIBRARY_PATH so that it
60 includes $GFP/src/.libs
61 2B.) On a mac, set the environment variable DYLD_LIBRARY_PATH so that it
62 includes $GFP/src/.libs
63 2.) ./configure LDFLAGS=-L$GFP/src/.libs/ CPPFLAGS=-I$GFP/include
66 The examples will be in the directory Examples. The include files will
67 be in the directory include, and the library will be called libJerasure.a
68 in the directory src/.libs.
70 ------------------------------------------------------------
72 As long as GF-Complete is installed, Jerasure 2.0 can be used just as previous
73 versions. There is no need to define custom Galois Fields. Jerasure will
74 determine the default field to use, if one is not specified.
76 If you would like to explore a using a different Galois Field implementation,
77 please see the manual.
79 ------------------------------------------------------------
83 If the GF-Complete tools are installed in /usr/local/bin
87 If the GF-Complete tools are installed elsewhere
89 make GF_COMPLETE_DIR=$(pwd)/../gf-complete/tools check
91 To run some tests with valgrind
93 make VALGRIND='valgrind --tool=memcheck --quiet' \
94 GF_COMPLETE_DIR=$(pwd)/../gf-complete/tools \