Skip to content

Commit a263b58

Browse files
authored
Merge branch 'source' into bibtex-bibbot-1075-e7a331f
2 parents 618622f + c18103e commit a263b58

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

_bibliography/pint.bib

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@
1919
% We would very much appreciate a link/reference to parallel-in-time.org.
2020
%
2121

22+
@inproceedings{YamaleevEtAl2026,
23+
author = {Yamaleev, Nail K. and Paudel, Subhash},
24+
booktitle = {AIAA AVIATION 2026 Forum},
25+
doi = {10.2514/6.2026-4026},
26+
month = {June},
27+
publisher = {American Institute of Aeronautics and Astronautics},
28+
title = {Preconditioned Parallel-in-Time Direct Inverse Method for Nonlinear Conservation Law Equations},
29+
url = {http://dx.doi.org/10.2514/6.2026-4026},
30+
}
31+
2232
@article{ZhongEtAl2026,
2333
author = {Zhong, Shun-Zhi and Zhao, Yong-Liang and Shu, Qian-Yu},
2434
doi = {10.1016/j.apnum.2026.04.006},
@@ -8913,6 +8923,20 @@ @article{YuEtAl2026
89138923
year = {2026},
89148924
}
89158925

8926+
@article{ZhongEtAl2026b,
8927+
author = {Zhong, Shun-Zhi and Zhao, Yong-Liang and Shu, Qian-Yu},
8928+
doi = {10.1016/j.apnum.2026.04.006},
8929+
issn = {0168-9274},
8930+
journal = {Applied Numerical Mathematics},
8931+
month = {Sept},
8932+
pages = {25–41},
8933+
publisher = {Elsevier BV},
8934+
title = {A direct PinT algorithm for higher-order nonlinear time-evolution equations},
8935+
url = {http://dx.doi.org/10.1016/j.apnum.2026.04.006},
8936+
volume = {227},
8937+
year = {2026},
8938+
}
8939+
89168940
@unpublished{ZouEtAl2026,
89178941
abstract = {Real-time trajectory optimization for nonlinear constrained autonomous systems is critical and typically performed by CPU-based sequential solvers. Specifically, reliance on global sparse linear algebra or the serial nature of dynamic programming algorithms restricts the utilization of massively parallel computing architectures like GPUs. To bridge this gap, we introduce a fully GPU-native trajectory optimization framework that combines sequential convex programming with a consensus-based alternating direction method of multipliers. By applying a temporal splitting strategy, our algorithm decouples the optimization horizon into independent, per-node subproblems that execute massively in parallel. The entire process runs fully on the GPU, eliminating costly memory transfers and large-scale sparse factorizations. This architecture naturally scales to multi-trajectory optimization. We validate the solver on a quadrotor agile flight task and a Mars powered descent problem using an on-board edge computing platform. Benchmarks reveal a sustained 4x throughput speedup and a 51% reduction in energy consumption over a heavily optimized 12-core CPU baseline. Crucially, the framework saturates the hardware, maintaining over 96% active GPU utilization to achieve planning rates exceeding 100 Hz. Furthermore, we demonstrate the solver's extensibility to robust Model Predictive Control by jointly optimizing dynamically coupled scenarios under stochastic disturbances, enabling scalable and safe autonomy.},
89188942
author = {Yilin Zou and Zhong Zhang and Maxime Robic and Fanghua Jiang},

bin/issue_to_bibtex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def fixBadBibFormat(bibString):
2222
item = field.split("=")
2323
if len(item) == 2 and "{" not in item[1]:
2424
item[1] = "{"+item[1]+"}"
25-
fields[i] = "=".join(item)
25+
fields[i+1] = "=".join(item)
2626
return "@"+",".join(fields)+"}"
2727

2828
try:

0 commit comments

Comments
 (0)