How To Install atlas on CentOS 8
Introduction
In this tutorial we learn how to install atlas
on CentOS 8.
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 8.el8 x86_64 6.4 M atlas-3.10.3-8.el8.src.rpm baseos 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 CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install atlas.
Install atlas on CentOS 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 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 CentOS 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
CentOS Linux 8 - AppStream 43 kB/s | 4.3 kB 00:00
CentOS Linux 8 - BaseOS 65 kB/s | 3.9 kB 00:00
CentOS Linux 8 - ContinuousRelease 43 kB/s | 3.0 kB 00:00
CentOS Linux 8 - Extras 23 kB/s | 1.5 kB 00:00
CentOS Linux 8 - FastTrack 40 kB/s | 3.0 kB 00:00
CentOS Linux 8 - HighAvailability 36 kB/s | 3.9 kB 00:00
CentOS Linux 8 - Plus 24 kB/s | 1.5 kB 00:00
CentOS Linux 8 - PowerTools 50 kB/s | 4.3 kB 00:00
Extra Packages for Enterprise Linux Modular 8 - x86_64 13 kB/s | 9.2 kB 00:00
Extra Packages for Enterprise Linux 8 - x86_64 24 kB/s | 8.5 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 CentOS 8
To uninstall only the atlas
package we can use the following command:
sudo dnf remove atlas
atlas Package Contents on CentOS 8
/etc/ld.so.conf.d/atlas-i386.conf
/usr/lib/.build-id
/usr/lib/.build-id/2d
/usr/lib/.build-id/2d/27c3a080f5cc450a5fe83a23a35dbb8fbbbd41
/usr/lib/.build-id/83
/usr/lib/.build-id/83/abdfb42deaef6666e4c76a0665067ef83463be
/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/86
/usr/lib/.build-id/86/45349973087d0d0850751dfaf9384ac82ec854
/usr/lib/.build-id/a3
/usr/lib/.build-id/a3/59b97d8b8d1874bfa0b84c706ce045f2ea2461
/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 CentOS 8 using yum and dnf.