CoDiPack  2.2.0
A Code Differentiation Package
SciComp TU Kaiserslautern
Loading...
Searching...
No Matches
CoDiPack: Fast gradient evaluation in C++ based on Expression Templates.

CoDiPack (Code Differentiation Package) is a tool for gradient evaluation in computer programs. It supports the features:

  • Forward mode of Algorithmic Differentiation (AD)
  • Reverse mode of Algorithmic Differentiation (AD)
  • Different tape implementations
  • An AdjointMPI interface
  • External functions
  • Higher order derivatives

The design principle for CoDiPack is that it is easy to use. However, it also gives experienced AD developers full access to all the data structures.

The Scientific Computing Group at the TU Kaiserslautern develops CoDiPack and will enhance and extend CoDiPack in the future.

Usage

CoDiPack is a header only library. The only file the user needs to include is codi.hpp. The only other requirement is a C++11 compliant compiler where one usually needs to specify '-std=c++11' in compiler arguments. CoDiPack is tested with gcc, clang, and the Intel compiler.

The file codi.hpp defines several datatypes. The most important ones are:

We recommend to use the codi::RealReverse type when AD is first introduced to an application. After that there should be no difficulties in replacing the codi::RealReverse type with other types.

For the handling of libraries and the memory optimization of the tape there exist several helper structures. Most of them are introduced in the tutorial section:

Please visit the tutorial page for further information.

For a full type list of the file 'codi.hpp' please see Active type definitions.

Hello World Example

A very small and simple example for the usage of the RealForward type is the following code:

#include <codi.hpp>
#include <iostream>
int main(int nargs, char** args) {
x.setGradient(1.0);
codi::RealForward y = x * x;
std::cout << "f(4.0) = " << y << std::endl;
std::cout << "df/dx(4.0) = " << y.getGradient() << std::endl;
return 0;
}
Represents a concrete lvalue in the CoDiPack expression tree.
Definition: activeType.hpp:52
void setGradient(Gradient const &g)
Set the gradient of this lvalue in the tape.
Definition: lhsExpressionInterface.hpp:120
Gradient getGradient() const
Get the gradient of this lvalue from the tape.
Definition: lhsExpressionInterface.hpp:115

It is compiled with

g++ -I<path to codi>/include -std=c++11 -g -o forward forward.cpp

for the gcc compiler or with

icpc -I<path to codi>/include -std=c++11 -g -o forward forward.cpp

for the Intel compiler.

You can get CoDiPack from https://www.scicomp.uni-kl.de/software/codi.

Citation

If you use CoDiPack in one of your applications and write a paper it would be nice if you could cite the paper High-Performance Derivative Computations using CoDiPack.

@article{SaAlGauTOMS2019,
title = {High-Performance Derivative Computations using CoDiPack},
author = {M. Sagebaum, T. Albring, N.R. Gauger},
url = {https://dl.acm.org/doi/abs/10.1145/3356900},
year = {2019},
date = {2019-12-01},
journal = {ACM Transactions on Mathematical Software (TOMS)},
volume = {45},
number = {4},
}