PDHCG-II¶
PDHCG-II is a high-performance, GPU-accelerated implementation of the Primal-Dual Hybrid Gradient (PDHG) algorithm designed for solving large-scale Convex Quadratic Programming (QP) problems.
Problem Formulation¶
PDHCG solves convex quadratic programs in the following form:
\[
\begin{aligned}
\min_{x} \quad & \frac{1}{2}x^\top (Q + R^\top R) x + c^\top x \\
\text{s.t.} \quad & \ell_c \le Ax \le u_c, \\
& \ell_v \le x \le u_v.
\end{aligned}
\]
Where:
- \(Q\) is a sparse positive semi-definite matrix (optional)
- \(R\) is a low-rank matrix such that \(R^\top R\) represents a low-rank component (optional)
- \(A\) is the constraint matrix
- \(c\) is the linear objective vector
- \(\ell_c, u_c\) are constraint bounds
- \(\ell_v, u_v\) are variable bounds
Key Features¶
- GPU Acceleration: Fully leverages NVIDIA CUDA for extreme-scale QP problems
- Flexible Problem Structure: Supports sparse quadratic terms, low-rank quadratic terms, or both
- High Performance: Competitive with commercial solvers on large-scale problems
Quick Links¶
Citation¶
If you use this software in your research, please cite:
@misc{li2026pdhcgiienhancedversionpdhcg,
title={PDHCG-II: An Enhanced Version of PDHCG for Large-Scale Convex QP},
author={Hongpei Li and Yicheng Huang and Huikang Liu and Dongdong Ge and Yinyu Ye},
year={2026},
eprint={2602.23967},
archivePrefix={arXiv},
primaryClass={math.OC},
url={https://arxiv.org/abs/2602.23967},
}
License¶
Copyright 2024-2026 Hongpei Li, Haihao Lu.
Licensed under the Apache License, Version 2.0.