How To Install SuperLUMT on Fedora 34
Introduction
In this tutorial we learn how to install SuperLUMT
on Fedora 34.
What is SuperLUMT
Subroutines to solve sparse linear systems for shared memory parallel machines. SuperLU contains a set of subroutines to solve a sparse linear system AX=B. It uses Gaussian elimination with partial pivoting (GEPP). The columns of A may be preordered before factorization; the preordering for sparsity is completely separate from the factorization. SuperLUMT 3.1.0 30.fc34 x86_64 85 k SuperLUMT-3.1.0-30.fc34.src.rpm fedora Single precision real SuperLU routines for shared memory parallel machines http BSD Subroutines to solve sparse linear systems for shared memory parallel machines. SuperLU contains a set of subroutines to solve a sparse linear system AX=B. It uses Gaussian elimination with partial pivoting (GEPP). The columns of A may be preordered before factorization; the preordering for sparsity is completely separate from the factorization.
We can use yum
or dnf
to install SuperLUMT
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install SuperLUMT.
Install SuperLUMT 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 SuperLUMT
using dnf
by running the following command:
sudo dnf -y install SuperLUMT
Install SuperLUMT 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 SuperLUMT
using yum
by running the following command:
sudo yum -y install SuperLUMT
How To Uninstall SuperLUMT on Fedora 34
To uninstall only the SuperLUMT
package we can use the following command:
sudo dnf remove SuperLUMT
SuperLUMT Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/05
/usr/lib/.build-id/05/655df7b8649419fcebb30450d193fde32ed736
/usr/lib/libsuperlumt_s.so.3.1
/usr/lib/.build-id
/usr/lib/.build-id/39
/usr/lib/.build-id/39/82e1f46e707bdefda607f55d6d823f739b0c10
/usr/lib64/libsuperlumt_s.so.3.1
References
- [SuperLUMT website](http://crd-legacy.lbl.gov/~xiaoye/SuperLU/ http://crd-legacy.lbl.gov/~xiaoye/SuperLU/)
Summary
In this tutorial we learn how to install SuperLUMT
on Fedora 34 using yum and dnf.