ad-trait: A Fast and Flexible Automatic Differentiation Library in Rust
Chen Liang, Qian Wang, Andy Xu, Daniel Rakita
TL;DR
ad-trait presents a Rust-based automatic differentiation library that overhauls floating-point types via a flexible AD trait, enabling both forward-mode and reverse-mode differentiation with SIMD acceleration. The work demonstrates competitive cross-language performance for derivative computations and validates practical use through a robotics optimization case in apollo-rust. By providing an extensible trait-based design and open-source implementation, ad-trait aims to accelerate differentiable robotics and numerical optimization in Rust while highlighting current limitations and avenues for future improvements.
Abstract
The Rust programming language is an attractive choice for robotics and related fields, offering highly efficient and memory-safe code. However, a key limitation preventing its broader adoption in these domains is the lack of high-quality, well-supported Automatic Differentiation (AD)-a fundamental technique that enables convenient derivative computation by systematically accumulating data during function evaluation. In this work, we introduce ad-trait, a new Rust-based AD library. Our implementation overloads Rust's standard floating-point type with a flexible trait that can efficiently accumulate necessary information for derivative computation. The library supports both forward-mode and reverse-mode automatic differentiation, making it the first operator-overloading AD implementation in Rust to offer both options. Additionally, ad-trait leverages Rust's performance-oriented features, such as Single Instruction, Multiple Data acceleration in forward-mode AD, to enhance efficiency. Through benchmarking experiments, we show that our library is among the fastest AD implementations across several programming languages for computing derivatives. Moreover, it is already integrated into a Rust-based robotics library, where we showcase its ability to facilitate fast optimization procedures. We conclude with a discussion of the limitations and broader implications of our work.
