Blame view
build.sh
1.31 KB
18afc10ef git-svn-id: https... |
1 |
#!/bin/bash |
3cee84f22 git-svn-id: https... |
2 3 4 5 6 |
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" |
18afc10ef git-svn-id: https... |
7 |
echo |
3cee84f22 git-svn-id: https... |
8 9 10 11 12 13 14 15 16 17 18 |
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>" |
18afc10ef git-svn-id: https... |
19 20 21 22 23 24 25 26 |
read a # Unpack lapack archive echo "Archive lapack (netlib)" tar xzf lapack.tgz # Compilation lapack |
5b8aada9d git-svn-id: https... |
27 |
cp make.inc.gfortran.lapack lapack-3.1.1/make.inc |
18afc10ef git-svn-id: https... |
28 29 |
cd lapack-3.1.1 make lapacklib |
b90ffcec1 git-svn-id: https... |
30 |
cd .. |
18afc10ef git-svn-id: https... |
31 32 33 |
# Unpack atlas archive echo "Archive atlas" |
0a93ec6e0 Update to atlas 3... |
34 |
tar xjf atlas3.8.3.tar.bz2 |
18afc10ef git-svn-id: https... |
35 36 37 38 |
cd ATLAS mkdir build mkdir install cd build |
940deee68 Added necessary f... |
39 |
../configure --prefix=../install --with-netlib-lapack=../../lapack-3.1.1/lapack_LINUX.a -Fa alg -fPIC |
18afc10ef git-svn-id: https... |
40 41 |
make make install |
940deee68 Added necessary f... |
42 43 44 45 46 |
# make and install shared libraries cd lib make shared make ptshared cp *.so ../../install/lib |
18afc10ef git-svn-id: https... |
47 |