forked from simonster/binica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
executable file
·31 lines (17 loc) · 1.37 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
PLEASE READ THE LICENSE FILE FIRST - GNU GPL
SOFTWARE REQUIREMENTS:
ANSI C compiler
BLAS and LAPACK math libraries
MATLAB version 5.0 or higher (*)
(*) MEX implementation only
HOW TO COMPILE:
The ICA software requires the BLAS and LAPACK libraries. A public domain implementation of the library packages is available from NETLIB at http://www.netlib.org/clapack/.
NOTE: hardware optimized implementations of the BLAS routines are available for most architectures and have proven to increase execution speed by 4-500%.
Makefiles have been constructed for several platforms. To compile the ICA software using an existing Makefile; modify the library paths to fit the paths on you system. Next, make the designated Makefile.
Example:
make -f Makefile.alpha
If you compile the ICA software for multiple architectures, make sure to run a 'make-clean' between each make session.
Example:
make -f Makefile.alpha clean
A Makefile must be constructed to compile the ICA software for a platform for which no Makefile exists. You may modify any of the existing Makefiles to fit your system.
Defining MMAP causes the ICA software to use memory mapping rather than memory allocation for data storage. Memory mapping allows the ICA software to return freed memory to the kernel, thus significantly decreases memory usage. However, memory mapping may not work on all systems.