How To Install qd on Fedora 34
Introduction
In this tutorial we learn how to install qd
on Fedora 34.
What is qd
This package provides numeric types of twice the precision of IEEE double (106 mantissa bits, or approximately 32 decimal digits) and four times the precision of IEEE double (212 mantissa bits, or approximately 64 decimal digits). Due to features such as operator and function overloading, these facilities can be utilized with only minor modifications to conventional C++ and Fortran-90 programs. In addition to the basic arithmetic operations (add, subtract, multiply, divide, square root), common transcendental functions such as the exponential, logarithm, trigonometric and hyperbolic functions are also included. qd 2.3.22 4.fc34 x86_64 159 k qd-2.3.22-4.fc34.src.rpm fedora Double-Double and Quad-Double Arithmetic https LBNL BSD This package provides numeric types of twice the precision of IEEE double (106 mantissa bits, or approximately 32 decimal digits) and four times the precision of IEEE double (212 mantissa bits, or approximately 64 decimal digits). Due to features such as operator and function overloading, these facilities can be utilized with only minor modifications to conventional C++ and Fortran-90 programs. In addition to the basic arithmetic operations (add, subtract, multiply, divide, square root), common transcendental functions such as the exponential, logarithm, trigonometric and hyperbolic functions are also included.
We can use yum
or dnf
to install qd
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install qd.
Install qd 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 qd
using dnf
by running the following command:
sudo dnf -y install qd
Install qd 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 qd
using yum
by running the following command:
sudo yum -y install qd
How To Uninstall qd on Fedora 34
To uninstall only the qd
package we can use the following command:
sudo dnf remove qd
qd Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/12
/usr/lib/.build-id/12/930e9e37da8be32b0e9a160762c431f51ccaaf
/usr/lib/.build-id/3f
/usr/lib/.build-id/3f/f8c6a750ed6600a0337b800003946c51da2765
/usr/lib/.build-id/ad
/usr/lib/.build-id/ad/71299946234f6e92e6e9b9ac375df1aa6818a1
/usr/lib/libqd.so.0
/usr/lib/libqd.so.0.0.0
/usr/lib/libqd_f_main.so.0
/usr/lib/libqd_f_main.so.0.0.0
/usr/lib/libqdmod.so.0
/usr/lib/libqdmod.so.0.0.0
/usr/share/doc/qd
/usr/share/doc/qd/AUTHORS
/usr/share/doc/qd/NEWS
/usr/share/doc/qd/README
/usr/share/doc/qd/TODO
/usr/share/licenses/qd
/usr/share/licenses/qd/BSD-LBNL-License.doc
/usr/share/licenses/qd/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/25
/usr/lib/.build-id/25/b26909dd155ba9c18f398c9d1e04e7964e27a0
/usr/lib/.build-id/d1
/usr/lib/.build-id/d1/d66f22d9050628fd66a0e1414bcb3ceaf99ba7
/usr/lib/.build-id/dc
/usr/lib/.build-id/dc/74aac0453260124a222311b6c5d77e70f1cf31
/usr/lib64/libqd.so.0
/usr/lib64/libqd.so.0.0.0
/usr/lib64/libqd_f_main.so.0
/usr/lib64/libqd_f_main.so.0.0.0
/usr/lib64/libqdmod.so.0
/usr/lib64/libqdmod.so.0.0.0
/usr/share/doc/qd
/usr/share/doc/qd/AUTHORS
/usr/share/doc/qd/NEWS
/usr/share/doc/qd/README
/usr/share/doc/qd/TODO
/usr/share/licenses/qd
/usr/share/licenses/qd/BSD-LBNL-License.doc
/usr/share/licenses/qd/COPYING
References
Summary
In this tutorial we learn how to install qd
on Fedora 34 using yum and dnf.