build.sh
1.2 KB
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
#!/bin/bash
echo "FR Mettre le processeur en mode performances (important pour atlas)"
echo "FR + sous kde clic droit sur kpowersave "
echo "FR -> Définir les règles de fréquence du processeur"
echo "FR -> Performances"
echo "FR + avec les cpufrequtils en root : cpufreq-set -g performance"
echo
echo "FR Si ce n'est pas fait tapez <Ctrl> C pour interrompre "
echo "FR sinon continuez avec <Entree>"
echo
echo "EN Processor must be in performance mode (important for atlas)"
echo "EN + under kde right-clic on kpowersave "
echo "EN -> Processor frequency rules"
echo "EN -> Performances"
echo "EN + with cpufrequtils under root : cpufreq-set -g performance"
echo
echo "EN If it is not the case type <Ctrl> C to interrupt now "
echo "EN otherwise continue with <Enter>"
read a
# Unpack lapack archive
echo "Archive lapack (netlib)"
tar xzf lapack.tgz
# Compilation lapack
cp make.inc.gfortran.lapack lapack-3.1.1/make.inc
cd lapack-3.1.1
make lapacklib
cd ..
# Unpack atlas archive
echo "Archive atlas"
tar xjf atlas3.8.2.tar.bz2
cd ATLAS
mkdir build
mkdir install
cd build
../configure --prefix=../install --with-netlib-lapack=../../lapack-3.1.1/lapack_LINUX.a
make
make install