How To Install psblas3-mpich on Rocky Linux 8
Introduction
In this tutorial we learn how to install psblas3-mpich
on Rocky Linux 8.
What is psblas3-mpich
The PSBLAS library, developed with the aim to facilitate the parallelization of computationally intensive scientific applications, is designed to address parallel implementation of iterative solvers for sparse linear systems through the distributed memory paradigm. It includes routines for multiplying sparse matrices by dense matrices, solving block diagonal systems with triangular diagonal entries, preprocessing sparse matrices, and contains additional routines for dense matrix operations. The current implementation of PSBLAS addresses a distributed memory execution model operating with message passing. This is a MPICH PSBLAS version.
We can use yum
or dnf
to install psblas3-mpich
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install psblas3-mpich.
Install psblas3-mpich on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install psblas3-mpich
using dnf
by running the following command:
sudo dnf -y install psblas3-mpich
Install psblas3-mpich on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install psblas3-mpich
using yum
by running the following command:
sudo yum -y install psblas3-mpich
How To Uninstall psblas3-mpich on Rocky Linux 8
To uninstall only the psblas3-mpich
package we can use the following command:
sudo dnf remove psblas3-mpich
psblas3-mpich Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/1c
/usr/lib/.build-id/1c/a420947e487f0425ebcf06a30de875dcf91443
/usr/lib/.build-id/3f
/usr/lib/.build-id/3f/d308dd1d00ecedbb31144cf037df711db15916
/usr/lib/.build-id/5a
/usr/lib/.build-id/5a/cd8f0e998c9f46ed3a66befaf468da12ec25f7
/usr/lib/.build-id/90
/usr/lib/.build-id/90/ece010a81edd013ee93ee86cf5a3218d4ba3c0
/usr/lib/.build-id/af
/usr/lib/.build-id/af/274776b46e50884371df36d3f21f9c38a30489
/usr/lib64/mpich/lib/libpsb_base.so.3
/usr/lib64/mpich/lib/libpsb_base.so.3.7
/usr/lib64/mpich/lib/libpsb_cbind.so.3
/usr/lib64/mpich/lib/libpsb_cbind.so.3.7
/usr/lib64/mpich/lib/libpsb_krylov.so.3
/usr/lib64/mpich/lib/libpsb_krylov.so.3.7
/usr/lib64/mpich/lib/libpsb_prec.so.3
/usr/lib64/mpich/lib/libpsb_prec.so.3.7
/usr/lib64/mpich/lib/libpsb_util.so.3
/usr/lib64/mpich/lib/libpsb_util.so.3.7
References
Summary
In this tutorial we learn how to install psblas3-mpich
on Rocky Linux 8 using yum and dnf.