How To Install psblas3-serial on Rocky Linux 8

In this tutorial we learn how to install psblas3-serial on Rocky Linux 8. psblas3-serial is psblas3 serial mode

Introduction

In this tutorial we learn how to install psblas3-serial on Rocky Linux 8.

What is psblas3-serial

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 PSBLAS version in pure serial mode.

We can use yum or dnf to install psblas3-serial on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install psblas3-serial.

Install psblas3-serial 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-serial using dnf by running the following command:

sudo dnf -y install psblas3-serial

Install psblas3-serial 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-serial using yum by running the following command:

sudo yum -y install psblas3-serial

How To Uninstall psblas3-serial on Rocky Linux 8

To uninstall only the psblas3-serial package we can use the following command:

sudo dnf remove psblas3-serial

psblas3-serial Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/33
/usr/lib/.build-id/33/cc3c88d1d54db9db3670497684e94900219453
/usr/lib/.build-id/54
/usr/lib/.build-id/54/ff39c4e4139bc75d8d81eedb6a39d419fdfe1b
/usr/lib/.build-id/b6
/usr/lib/.build-id/b6/d3482443984c7e9a1140952a73bac354d40afc
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/64850ab44225495d60d93c4c629c5a3bf6dd73
/usr/lib/.build-id/ff
/usr/lib/.build-id/ff/c3d6a2f6b12d912c9b15dfee2237fd3684bf94
/usr/lib64/libpsb_base.so.3
/usr/lib64/libpsb_base.so.3.7
/usr/lib64/libpsb_cbind.so.3
/usr/lib64/libpsb_cbind.so.3.7
/usr/lib64/libpsb_krylov.so.3
/usr/lib64/libpsb_krylov.so.3.7
/usr/lib64/libpsb_prec.so.3
/usr/lib64/libpsb_prec.so.3.7
/usr/lib64/libpsb_util.so.3
/usr/lib64/libpsb_util.so.3.7

References

Summary

In this tutorial we learn how to install psblas3-serial on Rocky Linux 8 using yum and dnf.