How To Install atlas.x86_64 on Amazon Linux 2
Introduction
In this tutorial we learn how to install atlas.x86_64 on Amazon Linux 2.
What is atlas.x86_64
The ATLAS (Automatically Tuned Linear Algebra Software) project is an ongoing research effort focusing 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 to install atlas.x86_64 on Amazon Linux 2. In this tutorial we discuss both methods but you only need to choose one of method to install atlas.x86_64.
Install atlas.x86_64 on Amazon Linux 2 Using yum
Update yum database with yum using the following command.
sudo yum makecache --refresh
After updating yum database, We can install atlas.x86_64 using yum by running the following command:
sudo yum -y install atlas.x86_64
How To Uninstall atlas.x86_64 on Amazon Linux 2
To uninstall only the atlas.x86_64 package we can use the following command:
sudo yum remove atlas.x86_64
atlas.x86_64 Package Contents on Amazon Linux 2
/etc/ld.so.conf.d/atlas-x86_64.conf
/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-3.10.1
/usr/share/doc/atlas-3.10.1/README.dist
References
Summary
In this tutorial we learn how to install atlas.x86_64 on Amazon Linux 2 using yum.