-
Notifications
You must be signed in to change notification settings - Fork 136
/
README
85 lines (61 loc) · 2.42 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Installation
============
% ./configure
% make
# As root:
% make install
To install in a custom directory:
% ./configure --prefix=/my/dir
% make
% make install
Then make sure the following environment variables contain the correct
paths:
PATH -> /my/dir/bin
MANPATH -> /my/dir/share/man
PKG_CONFIG_PATH -> /my/dir/lib/pkgconfig
Only the PATH environment variables is necessary to run
jellyfish. MANPATH is used by the man command. PKG_CONFIG_PATH is used
to compile software against the jellyfish shared library.
GCC requirement
===============
GCC version 4.4 or higher is required to compile Jellyfish. Most
current Linux distribution provides a version of gcc current
enough. On RedHat 5.x, install the packages gcc44 and gcc44-c++.
To install on Mac OS X: Jellyfish 2.0 does not compile with Apple's
Xcode GCC 4.2. Instead, the easiest thing to do is to install GCC 4.8
using MacPorts (http://www.macports.org) using the following commands:
sudo port install gcc48
sudo port install gcc_select
sudo port select -set gcc mp-gcc48
The first command installs GCC version 4.8. The third command makes
that version of GCC the default, and the second installs a package that
makes the third command work. After the above, you should be able to
run './configure ; make' as normal.
Tests
=====
To run the built-in tests, do:
% make check
All tests should pass and 1 test should be skipped (big.sh). Running
'make check' will use about 50MB of disk space and will use every CPUs
found on the machine. On our test machine with 32 cores, it takes a
few minutes to run.
To tests also on large data set, do:
% make check BIG=1
WARNING: this uses >40GB of disk space and takes 30 minutes to run (20
to create the data, 10 to run jellyfish).
Notes
=====
* Jellyfish has been developed and tested on x86-64 GNU/Linux. It
compiles and runs correctly the tests on MacOS X (Intel) and
FreeBSD. It should be fairly easy to port on other *NIX platform
with the gcc compiler, but no guarantee is made. Support for 32-bits
platform has not been tested.
License
=======
* The Mersenne Twister random generator is copyrighted by Agner Fog
and distributed under the GPL version 3 or
higher. http://www.agner.org.
* The Half float implementation is copyrighted by Industrial Light &
Magic and is distributed under the license described in the
HalfLICENSE file.
* This software is dual licenced. See LICENSE file.