How To Install DSDP on Fedora 34
Introduction
In this tutorial we learn how to install DSDP
on Fedora 34.
What is DSDP
DSDP is a free open source implementation of an interior-point method for semidefinite programming. It provides primal and dual solutions, exploits low-rank structure and sparsity in the data, and has relatively low memory requirements for an interior-point method. It allows feasible and infeasible starting points and provides approximate certificates of infeasibility when no feasible solution exists. The dual-scaling algorithm implemented in this package has a convergence proof and worst-case polynomial complexity under mild assumptions on the data. The software can be used as a set of subroutines, through Matlab, or by reading and writing to data files. Furthermore, the solver offers scalable parallel performance for large problems and a well documented interface. Some of the most popular applications of semidefinite programming and linear matrix inequalities (LMI) are model control, truss topology design, and semidefinite relaxations of combinatorial and global optimization problems. DSDP 5.8 27.fc34 x86_64 643 k DSDP-5.8-27.fc34.src.rpm fedora Software for semidefinite programming https DSDP DSDP is a free open source implementation of an interior-point method for semidefinite programming. It provides primal and dual solutions, exploits low-rank structure and sparsity in the data, and has relatively low memory requirements for an interior-point method. It allows feasible and infeasible starting points and provides approximate certificates of infeasibility when no feasible solution exists. The dual-scaling algorithm implemented in this package has a convergence proof and worst-case polynomial complexity under mild assumptions on the data. The software can be used as a set of subroutines, through Matlab, or by reading and writing to data files. Furthermore, the solver offers scalable parallel performance for large problems and a well documented interface. Some of the most popular applications of semidefinite programming and linear matrix inequalities (LMI) are model control, truss topology design, and semidefinite relaxations of combinatorial and global optimization problems.
We can use yum
or dnf
to install DSDP
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install DSDP.
Install DSDP 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 DSDP
using dnf
by running the following command:
sudo dnf -y install DSDP
Install DSDP 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 DSDP
using yum
by running the following command:
sudo yum -y install DSDP
How To Uninstall DSDP on Fedora 34
To uninstall only the DSDP
package we can use the following command:
sudo dnf remove DSDP
DSDP Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/2f
/usr/lib/.build-id/2f/a19aefe269b27313d0dddbbd71b9c433def819
/usr/lib/libdsdp.so.5
/usr/lib/libdsdp.so.5.8
/usr/share/doc/DSDP
/usr/share/doc/DSDP/DSDP5-Exe-UserGuide.pdf
/usr/share/doc/DSDP/DSDP5-P1289-0905.pdf
/usr/share/licenses/DSDP
/usr/share/licenses/DSDP/dsdp-license
/usr/lib/.build-id
/usr/lib/.build-id/f0
/usr/lib/.build-id/f0/309af0ecf0f2f055c5cfda12ee51c02b0cff0b
/usr/lib64/libdsdp.so.5
/usr/lib64/libdsdp.so.5.8
/usr/share/doc/DSDP
/usr/share/doc/DSDP/DSDP5-Exe-UserGuide.pdf
/usr/share/doc/DSDP/DSDP5-P1289-0905.pdf
/usr/share/licenses/DSDP
/usr/share/licenses/DSDP/dsdp-license
References
Summary
In this tutorial we learn how to install DSDP
on Fedora 34 using yum and dnf.