How To Install atlas on Fedora 34
Introduction
In this tutorial we learn how to install atlas
on Fedora 34.
What is atlas
The ATLAS (Automatically Tuned Linear Algebra Software) project is an ongoing research effort f(ocusing on applying empirical techniques in order to provide portable performance. At present, it provides C and Fortran77 interfaces to a portably efficient BLAS implementation, as well as a few routines from LAPACK. The performance improvements in ATLAS are obtained largely via compile-time optimizations and tend to be specific to a given hardware configuration. In order to package ATLAS some compromises are necessary so that good performance can be obtained on a variety of hardware. This set of ATLAS binary packages is therefore not necessarily optimal for any specific hardware configuration. However, the source package can be used to compile customized ATLAS packages; see the documentation for information. atlas 3.10.3 15.fc34 x86_64 6.1 M atlas-3.10.3-15.fc34.src.rpm fedora Automatically Tuned Linear Algebra Software http BSD The ATLAS (Automatically Tuned Linear Algebra Software) project is an ongoing research effort f(ocusing on applying empirical techniques in order to provide portable performance. At present, it provides C and Fortran77 interfaces to a portably efficient BLAS implementation, as well as a few routines from LAPACK. The performance improvements in ATLAS are obtained largely via compile-time optimizations and tend to be specific to a given hardware configuration. In order to package ATLAS some compromises are necessary so that good performance can be obtained on a variety of hardware. This set of ATLAS binary packages is therefore not necessarily optimal for any specific hardware configuration. However, the source package can be used to compile customized ATLAS packages; see the documentation for information.
We can use yum
or dnf
to install atlas
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install atlas.
Install atlas on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install atlas
using dnf
by running the following command:
sudo dnf -y install atlas
Install atlas on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install atlas
using yum
by running the following command:
sudo yum -y install atlas
How To Uninstall atlas on Fedora 34
To uninstall only the atlas
package we can use the following command:
sudo dnf remove atlas
atlas Package Contents on Fedora 34
/etc/ld.so.conf.d/atlas-i386.conf
/usr/lib/.build-id
/usr/lib/.build-id/1b
/usr/lib/.build-id/1b/fde198a351e115c21efab0471c6051f70d0dee
/usr/lib/.build-id/bd
/usr/lib/.build-id/bd/6aaebe49fc1e99ab31c3c8aedbc04d0aa9fdf7
/usr/lib/atlas
/usr/lib/atlas/libsatlas.so.3
/usr/lib/atlas/libsatlas.so.3.10
/usr/lib/atlas/libtatlas.so.3
/usr/lib/atlas/libtatlas.so.3.10
/usr/share/doc/atlas
/usr/share/doc/atlas/README.dist
/etc/ld.so.conf.d/atlas-x86_64.conf
/usr/lib/.build-id
/usr/lib/.build-id/4a
/usr/lib/.build-id/4a/1297108d5f7ec4bfe1d1a84b0bb927a691f6b5
/usr/lib/.build-id/7b
/usr/lib/.build-id/7b/8e71fc0710a346d3d7291bf771ea1248651add
/usr/lib64/atlas
/usr/lib64/atlas/libsatlas.so.3
/usr/lib64/atlas/libsatlas.so.3.10
/usr/lib64/atlas/libtatlas.so.3
/usr/lib64/atlas/libtatlas.so.3.10
/usr/share/doc/atlas
/usr/share/doc/atlas/README.dist
References
- [atlas website](http://math-atlas.sourceforge.net/ http://math-atlas.sourceforge.net/)
Summary
In this tutorial we learn how to install atlas
on Fedora 34 using yum and dnf.