Meanwhile ... I am running into something on both my Turion64 X2
laptop and Athlon64 X2 desktop. Both of them build successfully
"eventually", but they are taking a very long time in the make step. I
haven't actually sat down and figured out how many hours this runs,
but I've got them both running now and the Athlon64 2.2 GHz is showing
that xclantst_pt has consumed 86 minutes of CPU time. The Turion64 2.1
GHz is showing xzlanbtst with 87 minutes of CPU time. Here's the build
script:
#! /bin/bash -v
# download LAPACK 3.1.1 source
rm -fr lapack-lite*
wget
http://netlib.org/lapack/lapack-lite-3.1.1.tgztar xf lapack-lite-3.1.1.tgz
# download source
export WHERE='
http://voxel.dl.sourceforge.net/sourceforge/math-atlas'export WHAT='atlas3.9.10.tar.bz2'
export DIR='ATLAS'
rm -fr ${WHAT} ${DIR}
wget ${WHERE}/${WHAT}
tar xf ${WHAT}
# make sure the hardware is set correctly
sudo cpufreq-selector -g performance -c 0
sudo cpufreq-selector -g performance -c 1
cpufreq-info | tee cpufreq-info.log
# now do the build
rm atlas*log # ditch log files
rm -fr atlas_build; mkdir atlas_build; # make a clean directory
cd atlas_build
../${DIR}/configure -Ss lasrc ../lapack-lite-3.1.1/SRC -Si latune 1 \
> ../atlas-configure.log 2>&1
make > ../atlas-make.log 2>&1
make check > ../atlas-check.log 2>&1
make ptcheck > ../atlas-ptcheck.log 2>&1
make time > ../atlas-time.log 2>&1
# install
sudo make install
cd ..
sudo /sbin/ldconfig
Am I missing something, like a parameter that tells it to use
predefined setups for the processors?
--
M. Edward (Ed) Borasky
http://www.linkedin.com/in/edboraskyI've never met a happy clam. In fact, most of them were pretty steamed.
------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial.
http://p.sf.net/sfu/www-adobe-com_______________________________________________
Math-atlas-devel mailing list
Math-atlas-devel@...
https://lists.sourceforge.net/lists/listinfo/math-atlas-devel