Blame view
build.sh
1.5 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" |
3a370415a Added a script to... |
7 |
echo "FR + Vous pouvez aussi exécuter en root le script performance.sh" |
18afc10ef git-svn-id: https... |
8 |
echo |
3cee84f22 git-svn-id: https... |
9 10 11 12 13 14 15 16 |
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" |
3a370415a Added a script to... |
17 |
echo "EN + you can also launch as root the script performance.sh" |
3cee84f22 git-svn-id: https... |
18 19 20 |
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... |
21 22 23 24 25 |
read a # Unpack lapack archive echo "Archive lapack (netlib)" |
833843a43 Updated lapack to... |
26 |
tar xzf lapack-3.3.0.tgz |
18afc10ef git-svn-id: https... |
27 28 |
# Compilation lapack |
833843a43 Updated lapack to... |
29 30 31 |
cp make.inc.gfortran.lapack lapack-3.3.0/make.inc cp Makefile.lapack lapack-3.3.0/SRC/Makefile cd lapack-3.3.0 |
18afc10ef git-svn-id: https... |
32 |
make lapacklib |
b90ffcec1 git-svn-id: https... |
33 |
cd .. |
18afc10ef git-svn-id: https... |
34 35 36 |
# Unpack atlas archive echo "Archive atlas" |
0a93ec6e0 Update to atlas 3... |
37 |
tar xjf atlas3.8.3.tar.bz2 |
18afc10ef git-svn-id: https... |
38 39 40 41 |
cd ATLAS mkdir build mkdir install cd build |
833843a43 Updated lapack to... |
42 |
../configure --prefix=../install --with-netlib-lapack=../../lapack-3.3.0/lapack_LINUX.a -Fa alg -fPIC |
18afc10ef git-svn-id: https... |
43 44 |
make make install |
940deee68 Added necessary f... |
45 46 47 48 49 |
# make and install shared libraries cd lib make shared make ptshared cp *.so ../../install/lib |
18afc10ef git-svn-id: https... |
50 |