Linear Programming Computation Model Based on Dpvm

Hongtao Bai,Lili He,Yu Jiang,Jin Wang,Shanshan Jiang
DOI: https://doi.org/10.1007/978-981-10-3023-9_74
2016-01-01
Abstract:Matrix manipulation of Linear Programming (LP) problems is a performance bottleneck in Single Instruction Single Data (SIMD) pattern. While, GPU is specialized for this compute-intensive and highly parallel computation, which is exactly what graphics rendering is about, due to the Single Instruction Multiple Data (SIMD) architecture. This paper introduces a Revised Simplex Method (RSM) on a GPU–Data Parallel Virtual Machine (DPVM). It assigns different routines for CPU and GPU according to respective characteristics: Iteration control and minimum value obtained are completed by CPU and Matrix multiplication by DPVM. In detail, we carefully organize the data as 4-channel textures, and efficiently implement the computation using Fetch4 technology of pixel shader. Numerical experiments are presented to verify the practical value and performance of this algorithm. The results are very promising. In particular, they reveal that our method not only can get correct optimal solution, but also is sixty-six faster than a traditional method on CPU, near 2.5 times faster than a lasted released MATLAB when LP problem size reaches 1200.
What problem does this paper attempt to address?