UsedToBe97 / LPMP

Solving LPs with convergent message passing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LPMP

LPMP is a C++ framework for developing scalable dual (Lagrangean) decomposition based solvers for a wide range of LP-relaxations to discrete optimization problems. For a theoretical introduction to the techniques used and the class of problems that can be optimized see [1,2].

Solvers

We provide a range of solvers for various discrete optimization problems, including

Benchmark problems for various solvers above can be found in datasets.

Optimization techniques

Optimization techniques include

Differentiable wrappers

The solvers can be wrapped as differentiable PyTorch modules using the technique of [7]. Currently, wrappers are available for graph matching and multigraph matching solvers. For usage examples see an application to keypoint matching [8] (code) or the general repository of [7].

All these can be pip installed with

python3 -m pip install git+https://github.com/lpmp/LPMP.git

or

python3 -m pip install git+https://github.com/lpmp/LPMP.git@keypiont_submission

for the precise version used in [8].

Installation

Type git clone https://github.com/LPMP/LPMP.git for downloading, then cd LPMP and git submodule update --init --remote --recursive for downloading dependencies and finally cmake . for building.

Prerequisites:

  • Clang 5.0 or GCC 8.0 upwards for C++17 compatibility (see here for installation instructions).
  • HDF5 (install with apt install libhdf5-serial-dev)
  • cmake (install with apt install cmake)

Documentation

A tutorial on writing a new solver from scratch can be found here.

References

About

Solving LPs with convergent message passing


Languages

Language:C++ 93.5%Language:Python 4.5%Language:CMake 1.8%Language:Shell 0.1%Language:C 0.1%