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.002329
First Submitted: 2008-04-24 01:36 (UTC)
Last Updated: 2024-02-01 12:28 (UTC)

Required by (541)

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 2 3 4 5 6 7 8 9 .. 17 Next › Last »

a.kudelin commented on 2019-11-15 18:39 (UTC)

cblas link was fixed.

a.kudelin commented on 2019-10-16 12:27 (UTC)

Sure.

einalex commented on 2019-10-14 11:30 (UTC)

can you change "mkdir ATLAS/build" to "mkdir -p ATLAS/build" so the package doesn't throw an error if you try to build it with the directory already existing from a previous build?

Emmatipate commented on 2019-06-12 11:51 (UTC) (edited on 2019-06-12 11:52 (UTC) by Emmatipate)

I solved "undefined reference to 'main'" by adding unset LDFLAGS to build() in python-numpy's PKGBUILD.

sain_87 commented on 2018-08-04 08:47 (UTC)

Again, broken numpy with /usr/lib/libcblas.so.3 missing.

Recompiling numpy from source with "yaourt -Sb python-numpy" after installing ATLAS fails for me when compiling python_xerbla.c with "undefined reference to `main'"

Is there any solution for this?

deltaecho commented on 2018-04-26 22:40 (UTC) (edited on 2018-04-26 22:43 (UTC) by deltaecho)

The best solution is to recompile numpy after replacing BLAS (no hacking required): yaourt -Sb python-numpy # be sure to add python-numpy to the IgnorePkg attribute of your /etc/pacman.conf to avoid breaking updates; you will need to compile it from source from here-on-out, which is easy to do

greyltc commented on 2018-03-03 22:35 (UTC)

Since this package provides and conflicts with cblas, I think it should at least install all the shared objects that the cblas packages does. /usr/lib/libcblas.so.3 and /usr/lib/libcblas.so.3.8.0 are missing here.

Notably, the missing /usr/lib/libcblas.so.3 breaks python's numpy module!

marcin commented on 2017-11-14 07:12 (UTC)

Cant compile due to CPU throttling enabled. Followed instructions provided by @phcerdan on 2017-06-08 06:48 to disable it, and it worked. Could compile the package. Thanks @phcerdan