How To Install metis64 on Fedora 34

metis64 is Serial Graph Partitioning and Fill-reducing Matrix Ordering (64bit INTEGER)

Introduction

In this tutorial we learn how to install metis64 on Fedora 34.

What is metis64

METIS is a set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices. The algorithms implemented in METIS are based on the multilevel recursive-bisection, multilevel k-way, and multi-constraint partitioning schemes developed in our lab. METIS is distributed with OpenMP support. This build has 64bit INTEGER support.

We can use yum or dnf to install metis64 on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install metis64.

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

sudo dnf -y install metis64

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

sudo yum -y install metis64

How To Uninstall metis64 on Fedora 34

To uninstall only the metis64 package we can use the following command:

sudo dnf remove metis64

metis64 Package Contents on Fedora 34

/usr/bin/cmpfillin64
/usr/bin/gpmetis64
/usr/bin/graphchk64
/usr/bin/m2gmetis64
/usr/bin/mpmetis64
/usr/bin/ndmetis64
/usr/lib/.build-id
/usr/lib/.build-id/0a
/usr/lib/.build-id/0a/f910bba23c32721a0921eb29c4273a6343f9b1
/usr/lib/.build-id/1c
/usr/lib/.build-id/1c/cbf4b544ccc6d2a5632eefc05836fab2b0908b
/usr/lib/.build-id/25
/usr/lib/.build-id/25/90ea7feffd8e446f0781956ac81c2aed2e98a2
/usr/lib/.build-id/3b
/usr/lib/.build-id/3b/505797060dc81ced3516e2dc874a542e61e58f
/usr/lib/.build-id/55
/usr/lib/.build-id/55/188dd467268d81313c346df1e882e94664e685
/usr/lib/.build-id/96
/usr/lib/.build-id/96/a6b1af0fe45998ba5377e78b0e20f726e6656e
/usr/lib/.build-id/d3
/usr/lib/.build-id/d3/2f22679907fa8e59ea7285a45250d172b59858
/usr/lib64/libmetis64.so.0
/usr/share/doc/metis64
/usr/share/doc/metis64/Changelog
/usr/share/doc/metis64/manual.pdf
/usr/share/licenses/metis64
/usr/share/licenses/metis64/LICENSE.txt

References

Summary

In this tutorial we learn how to install metis64 on Fedora 34 using yum and dnf.