Blame view

build.sh 824 Bytes
18afc10ef   daniau   git-svn-id: https...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  #!/bin/bash
  
  echo "Mettre le processeur en mode performances (important pour atlas)"
  echo "    + sous kde clic droit sur kpowersave "
  echo "       -> Définir les règles de fréquence du processeur"
  echo "       -> Performances"
  echo "    + avec les cpufrequtils en root : cpufreq-set -g performance"
  echo
  echo "Si ce n'est pas fait tapez <Ctrl> C pour interrompre "
  echo "  sinon continuez avec <Entree>"
  
  read a
  
  # Unpack lapack archive
  echo "Archive lapack (netlib)"
  tar xzf lapack.tgz
  
  # Compilation lapack
5b8aada9d   daniau   git-svn-id: https...
19
  cp make.inc.gfortran.lapack lapack-3.1.1/make.inc
18afc10ef   daniau   git-svn-id: https...
20
21
  cd lapack-3.1.1
  make lapacklib
b90ffcec1   daniau   git-svn-id: https...
22
  cd ..
18afc10ef   daniau   git-svn-id: https...
23
24
25
26
27
28
29
30
31
32
33
  
  # 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