On Fri, Sep 20, 2013 at 10:17 AM, Bjoern Gruening <[email protected]> wrote: > Hi Ido and Carlos, > > can you check if that tarball is working? > > http://downloads.sourceforge.net/project/math-atlas/Developer%20%28unstable%29/3.11.11/atlas3.11.11.tar.bz2 > > The chance is low, but if its working for you I will consider to create a > new version for it. > Thanks, > Bjoern
Hi Bjoern, That archive file works for me on Mac OS X 10.8.5, details below. Peter -- I was fooled for a moment, it is one of the annoying SourceForge URLs which doesn't work at the command line - their mirror system is horrid: $ curl -O http://downloads.sourceforge.net/project/math-atlas/Developer%20%28unstable%29/3.11.11/atlas3.11.11.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 So, getting a real link via my browser: $ curl -O http://kent.dl.sourceforge.net/project/math-atlas/Developer%20%28unstable%29/3.11.11/atlas3.11.11.tar.bz2 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 5115k 100 5115k 0 0 1267k 0 0:00:04 0:00:04 --:--:-- 1272k $ tar -jxvf atlas3.11.11.tar.bz2 ... $ cd ATLAS/ $ ./configure ATLAS can no longer be configured in the exact source directory, create a subdir such as MyObj. See ATLAS/INSTALL.txt for help. $ mkdir my_build_dir ; cd my_build_dir $ ../configure gcc -I/tmp/x/ATLAS/my_build_dir/..//CONFIG/include -g -w -c /tmp/x/ATLAS/my_build_dir/..//CONFIG/src/atlconf_misc.c gcc -I/tmp/x/ATLAS/my_build_dir/..//CONFIG/include -g -w -o xconfig /tmp/x/ATLAS/my_build_dir/..//CONFIG/src/config.c atlconf_misc.o ./xconfig -d s /tmp/x/ATLAS/my_build_dir/../ -d b /tmp/x/ATLAS/my_build_dir OS configured as OSX (12) Assembly configured as GAS_x8664 (2) Vector ISA Extension configured as SSE3 (6,448) Architecture configured as Core2 (25) Clock rate configured as 2800Mhz Maximum number of threads configured as 8 Parallel make command configured as '$(MAKE) -j 8' Cannot detect CPU throttling. ... $ time make make -f Make.top build cd bin/ ; make xatlas_build /usr/bin/gcc -DL2SIZE=33554432 -I/tmp/x/ATLAS/my_build_dir/include -I/tmp/x/ATLAS/my_build_dir/..//include -I/tmp/x/ATLAS/my_build_dir/..//include/contrib -DAdd_ -DF77_INTEGER=int -DStringSunStyle -DATL_OS_OSX -DATL_ARCH_Core2 -DATL_CPUMHZ=2800 -DATL_SSE3 -DATL_SSE2 -DATL_SSE1 -DATL_USE64BITS -DATL_GAS_x8664 -m64 -DATL_NCPU=8 -O -fomit-frame-pointer -m64 -c /tmp/x/ATLAS/my_build_dir/..//bin/atlas_tee.c /usr/bin/gcc -DL2SIZE=33554432 -I/tmp/x/ATLAS/my_build_dir/include -I/tmp/x/ATLAS/my_build_dir/..//include -I/tmp/x/ATLAS/my_build_dir/..//include/contrib -DAdd_ -DF77_INTEGER=int -DStringSunStyle -DATL_OS_OSX -DATL_ARCH_Core2 -DATL_CPUMHZ=2800 -DATL_SSE3 -DATL_SSE2 -DATL_SSE1 -DATL_USE64BITS -DATL_GAS_x8664 -m64 -DATL_NCPU=8 -O -fomit-frame-pointer -m64 -o xatlas_tee atlas_tee.o ... cc1: error: unrecognized command line option "-mcpu=ultrasparc" FlagCheck.c:1: error: bad value (ultrasparc) for -mtune= switch cc1: error: unrecognized command line option "-maltivec" cc1: error: unrecognized command line option "-mabi=altivec" cc1: error: unrecognized command line option "-mcpu=ultrasparc" cc1: error: unrecognized command line option "-mcpu=ultrasparc" cc1: error: unrecognized command line option "-mcpu=ultrasparc" cc1: error: unrecognized command line option "-mcpu=970" cc1: error: unrecognized command line option "-mips4" cc1: error: unrecognized command line option "-mips4" cc1: error: unrecognized command line option "-mips4" cc1: error: unrecognized command line option "-mips4" cc1: error: unrecognized command line option "-mvsx" cc1: error: unrecognized command line option "-mfpu=vfpv3" ... ATLAS install complete. Examine ATLAS/bin/<arch>/INSTALL_LOG/SUMMARY.LOG for details. make clean rm -rf *.dSYM rm -f *.o x* config?.out *core* real 8m35.518s user 7m33.738s sys 2m17.387s $ time make test ... 8 cases: 8 passed, 0 skipped, 0 failed 4 cases: 4 passed, 0 skipped, 0 failed 8 cases: 8 passed, 0 skipped, 0 failed 4 cases: 4 passed, 0 skipped, 0 failed 8 cases: 8 passed, 0 skipped, 0 failed 4 cases: 4 passed, 0 skipped, 0 failed 8 cases: 8 passed, 0 skipped, 0 failed 4 cases: 4 passed, 0 skipped, 0 failed DONE SCOPING FOR FAILURES IN CBLAS TESTS: fgrep -e fault -e FAULT -e error -e ERROR -e fail -e FAIL \ interfaces/blas/C/testing/sanity.out | \ fgrep -v PASSED make[1]: [sanity_test] Error 1 (ignored) DONE SCOPING FOR FAILURES IN F77BLAS TESTS: fgrep -e fault -e FAULT -e error -e ERROR -e fail -e FAIL \ interfaces/blas/F77/testing/sanity.out | \ fgrep -v PASSED make[1]: [sanity_test] Error 1 (ignored) DONE real 0m38.065s user 0m27.856s sys 0m6.329s ___________________________________________________________ Please keep all replies on the list by using "reply all" in your mail client. To manage your subscriptions to this and other Galaxy lists, please use the interface at: http://lists.bx.psu.edu/ To search Galaxy mailing lists use the unified search at: http://galaxyproject.org/search/mailinglists/
