Package Details: atlas-lapack 1:3.10.3-9

Git Clone URL: https://aur.archlinux.org/atlas-lapack.git (read-only, click to copy)
Package Base: atlas-lapack
Description: Automatically Tuned Linear Algebra Software
Upstream URL: http://math-atlas.sourceforge.net
Licenses: BSD, custom:lapack
Provides: atlas-lapack-base, blas, cblas, lapack
Submitter: ilpianista
Maintainer: henkm
Last Packager: henkm
Votes: 93
Popularity: 0.000100
First Submitted: 2008-04-24 01:36 (UTC)
Last Updated: 2024-02-01 12:28 (UTC)

Required by (548)

Sources (4)

Pinned Comments

phcerdan commented on 2017-06-08 06:48 (UTC) (edited on 2017-06-08 06:49 (UTC) by phcerdan)

Hey I just installed, and make these notes, that might be useful for somebody else: Good explanation in atlas site: http://math-atlas.sourceforge.net/atlas_install/node5.html Follow this, the governor set by cpupower knows shit about CPU without this: http://unix.stackexchange.com/questions/121410/setting-cpu-governor-to-on-demand-or-conservative Summary: http://vincent.jousse.org/tech/archlinux-compile-lapack-atlas-kaldi/ ===========Steps=========== Permanent disable intel_pstate: Edit: /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="intel_pstate=disable" and update grub: grub-mkconfig -o /boot/grub/grub.cfg And then enable acpi-cpufreq module: su root echo "acpi-cpufreq" > /etc/modules-load.d/acpi-cpufreq.conf restart. Now cpupower can set frequencies properly. To disable throtling sudo pacman -S cpupower sudo cpupower frequency-set -g performance It should apply to all cores, but if it only apply to the first one: copy files to the other (4 in laptop) sudo cp /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor To restore: sudo cpupower frequency-set -g ondemand If not all cores are set: sudo cp /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor This stuff is only required at build time.

Latest Comments

« First ‹ Previous 1 .. 10 11 12 13 14 15 16 17 18 Next › Last »

gborzi commented on 2011-07-23 21:15 (UTC)

@molqr I think you need to include clapack.h and link to liblapack, but I haven't tried it. I've used this package https://aur.archlinux.org/packages.php?ID=46325 to use lapack from within C/C++ code.

awim commented on 2011-07-23 21:03 (UTC)

using this package would i be able to call LAPACK routines from my C++ code without having to convert the matrices to column-major mode before making the call and then changing back to row-major mode after the call?

<deleted-account> commented on 2011-06-01 03:39 (UTC)

ATLAS 3.8.4 is out :)

gborzi commented on 2011-03-20 17:07 (UTC)

Hi Dieter_be, with USE_ARCH_DEFAULTS enabled my compilation of ATLAS failed, so it is disabled by default. As for multithreading/multiprocessing it works on my systems, i.e. I can see on system monitor that all cores are involved in the computation. Sorry for the delay in answering your comments.

Dieter_be commented on 2011-03-08 16:30 (UTC)

Another thing, why don't you leave USE_ARCH_DEFAULTS enabled by default? http://math-atlas.sourceforge.net/faq.html#ArchDef strongly encourages it.

Dieter_be commented on 2011-03-08 11:29 (UTC)

btw: ATLAS 3.8.0's architectural defaults are for gcc 4.2, and you are presently using 5.1, it might be possible that things have changed enough to require new defaults, and if you are using a bad compiler like gcc 4.1 or an old one like gcc 3, you will almost certainly not want to use the architectural defaults. arch has 4.5, which is probably different enough from 4.1 (I'm not seeing any performance improvement when using atlas-lapack together with scipy, and i'm trying to find out why)

Dieter_be commented on 2011-03-04 16:32 (UTC)

Btw, does anyone know if this package supports multithreading/multiprocessing? I'm running python-gensim calculations with it and i see constantly 1 core 100%, the others unloaded. Or maybe my vectors/matrices are too small to be distributed or something.

gborzi commented on 2011-03-04 14:36 (UTC)

Hi Dieter_be, it would be a nice thing, but I don't know how to do it. You have to ask to upstream.

Dieter_be commented on 2011-03-04 13:04 (UTC)

Yeah I finally managed to build it, by not touching my pc for a whole night ;) But still it would be convenient if the build system would "remember" discovered system parameters so it doesn't need to do the entire thing again whenever something fails.

gborzi commented on 2011-02-28 17:03 (UTC)

Hi Dieter_be, I've googled that error message, and it appears when the system is under heavy load while compiling ATLAS. Please retry with your system as idle as possible.