Vignette for interfacing with external C++ code via rstan

I have written a vignette (below since I can’t figure out how the fuck to attach a document in Discourse) explaining how to use the new mechanism in 2.13 of declaring but not defining a function in the Stan language and then using external C++ code to provide the definition. This is slightly specific to rstan but I have a PR to do something fundamentally similar in CmdStan. PyStan would presumably want to follow the rstan route. If you think there should be changes to the vignette below, just edit the RMarkdown file in place on GitHub

Ben

Interfacing with External C++ Code code{white-space: pre;} div.sourceCode { overflow-x: auto; } table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode { margin: 0; padding: 0; vertical-align: baseline; border: none; } table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; } code > span.kw { color: #007020; font-weight: bold; } /* Keyword */ code > span.dt { color: #902000; } /* DataType */ code > span.dv { color: #40a070; } /* DecVal */ code > span.bn { color: #40a070; } /* BaseN */ code > span.fl { color: #40a070; } /* Float */ code > span.ch { color: #4070a0; } /* Char */ code > span.st { color: #4070a0; } /* String */ code > span.co { color: #60a0b0; font-style: italic; } /* Comment */ code > span.ot { color: #007020; } /* Other */ code > span.al { color: #ff0000; font-weight: bold; } /* Alert */ code > span.fu { color: #06287e; } /* Function */ code > span.er { color: #ff0000; font-weight: bold; } /* Error */ code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */ code > span.cn { color: #880000; } /* Constant */ code > span.sc { color: #4070a0; } /* SpecialChar */ code > span.vs { color: #4070a0; } /* VerbatimString */ code > span.ss { color: #bb6688; } /* SpecialString */ code > span.im { } /* Import */ code > span.va { color: #19177c; } /* Variable */ code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */ code > span.op { color: #666666; } /* Operator */ code > span.bu { } /* BuiltIn */ code > span.ex { } /* Extension */ code > span.pp { color: #bc7a00; } /* Preprocessor */ code > span.at { color: #7d9029; } /* Attribute */ code > span.do { color: #ba2121; font-style: italic; } /* Documentation */ code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */ code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */

Interfacing with External C++ Code

Stan Development Team

2016-11-26

Starting with the 2.13 release, it is much easier to use external C++ code in a Stan program. This vignette briefly illustrates how to do so.

Suppose that you have (part of) a Stan program that involves Fibonacci numbers, such as

functions {
  int fib(int n);
  int fib(int n) {
    if (n <= 0) reject("n must be positive");
    return n <= 1 ? 1 : fib(n - 1) + fib(n - 2);
  }
}
model {} // use the fib() function somehow

On the second line, we have declared the fib function before it is defined in order to call it recursively.

For functions that are not recursive, it is not necessary to declare them before defining them but it may be advantageous. For example, I often like to hide the definitions of complicated utility functions that are just a distraction using the #include "file" mechanism

functions {
  real complicated(real a, real b, real c, real d, real e, real f, real g);
  #include "complicated.stan" // defines the above function
}
model {} // use the complicated() function somehow

This Stan program would have to be parsed using the stanc_builder function in the rstan package rather than the default stanc function (which is called by sampling and stan internally).

Returning to the Fibonacci example, it is not necessary to define the fib function using the Stan language because Stan programs with functions that are declared but not defined can use the standard capabilities of the C++ toolchain to provide the function definitions in C++. For example, this program produces a parser error by default

mc <- 
'
functions { int fib(int n); }
model {} // use the fib() function somehow
'
try(stan_model(model_code = mc, model_name = "parser_error"), silent = TRUE)
## SYNTAX ERROR, MESSAGE(S) FROM PARSER:
## 
## Function declared, but not defined. Function name=fib
## 
## ERROR at line 2
## 
##   1:
##   2:    functions { int fib(int n); }
##                                      ^
##   3:    model {} // use the fib() function somehow
## 

However, if we specify the allow_undefined and includes arguments to the stan_model function, and define a fib function in the named C++ header file, then it will parse and compile

stan_model(model_code = mc, model_name = "external", allow_undefined = TRUE,
           includes = paste0('\n#include "', 
                             file.path(getwd(), 'fib.hpp'), '"\n'))

Specifying the includes argument is a bit awkward because the C++ representation of a Stan program is written and compiled in a temporary directory. Thus, the includes argument must specify a full path to the fib.hpp file, which in this case is in the working directory. Also, the path must be enclosed in double-quotes, which is why single quotes are used in the separate arguments to the paste0 function so that double-quotes are interpreted literally. Finally, the includes argument should include newline characters ("\n") at the start and end. It is possible to specify multiple paths using additional newline characters or include a “meta-header” file that contains #include directives to other C++ header files.

The result of the includes argument is inserted into the C++ file directly after the following lines (as opposed to CmdStan where it is inserted directly before the following lines)

#include <stan/model/model_header.hpp>

namespace some_namespace {

using std::istream;
using std::string;
using std::stringstream;
using std::vector;
using stan::io::dump;
using stan::math::lgamma;
using stan::model::prob_grad;
using namespace stan::math;

typedef Eigen::Matrix<double,Eigen::Dynamic,1> vector_d;
typedef Eigen::Matrix<double,1,Eigen::Dynamic> row_vector_d;
typedef Eigen::Matrix<double,Eigen::Dynamic,Eigen::Dynamic> matrix_d;

static int current_statement_begin__;

Thus, the definition of the fib function in the fib.hpp file need not be enclosed in any particular namespace (which is a random string by default. The “meta-include” stan/model/model_header.hpp file reads as

#ifndef STAN_MODEL_MODEL_HEADER_HPP
#define STAN_MODEL_MODEL_HEADER_HPP

#include <stan/math.hpp>

#include <stan/io/cmd_line.hpp>
#include <stan/io/dump.hpp>
#include <stan/io/reader.hpp>
#include <stan/io/writer.hpp>

#include <stan/lang/rethrow_located.hpp>
#include <stan/model/prob_grad.hpp>
#include <stan/model/indexing.hpp>

#include <boost/exception/all.hpp>
#include <boost/random/additive_combine.hpp>
#include <boost/random/linear_congruential.hpp>

#include <cmath>
#include <cstddef>
#include <fstream>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <utility>
#include <vector>

#endif

so the definition of the fib function in the fib.hpp file could utilize any function in the Stan Math Library (without having to prefix function calls with stan::math::), some typedefs to classes in the Eigen matrix algebra library, plus streams, exceptions, etc. without having to worry about the corresponding header files. Nevertheless, an external C++ file may contain additional include directives that bring in class definitions, for example.

Now let’s examine the fib.hpp file, which contains the C++ lines

int fib(const int&n, std::ostream* pstream__) {
  if (n <= 0) {
    stringstream errmsg;
    errmsg << "n must be positive";
    throw std::domain_error(errmsg.str());
  }
  return n <= 1 ? 1 : fib(n - 1, 0) + fib(n - 2, 0);
}

This C++ function is essentially what the preceding user-defined function in the Stan language

int fib(int n) {
  if (n <= 0) reject("n must be positive");
  return n <= 1 ? 1 : fib(n - 1) + fib(n - 2);
}

parses to. Thus, there is no speed advantage to defining the fib function in the external fib.hpp file. However, it is possible to use an external C++ file to handle the gradient of a function analytically as opposed to using Stan’s autodifferentiation capabilities, which are slower and more memory intensive but fully general. In this case, the fib function only deals with integers so there is nothing to take the derivative of. The primary advantage of using an external C++ file is flexibility to do things that cannot be done directly in the Stan language. It is also useful for R packages like rstanarm that may want to define some C++ functions in the package’s src directory and rely on the linker to make them available in its Stan programs, which are compiled at (or before) installation time.

In the C++ version, we check if n is non-positive, in which case we throw an exception. It is unnecessary to prefix stringstream with std:: because of the using std::stringstream; line in the generated C++ file. However, there is no corresponding using std::domain_error; line, so it has to be qualified appropriately when the exception is thrown.

The only confusing part of the C++ version of the fib function is that it has an additional argument (with no default value) named pstream__ that is added to the declaration of the fib function by Stan. Thus, your definition of the fib function needs to match with this signature. This additional argument is a pointer to a std::ostream and is only used if your function prints something to the screen, which is rare. Thus, when we call the fib function recursively in the last line, we specify fib(n - 1, 0) + fib(n - 2, 0); so that the output (if any, and in this case there is none) is directed to the null pointer.

This vignette has employed a toy example with the Fibonacci function, which has little apparent use in a Stan program and if it were useful, would more easily be implemented as a user-defined function in the functions block as illustrated at the outset. The ability to use external C++ code only becomes useful with more complicated C++ functions. It goes without saying that this mechanism ordinarily cannot call functions in C, Fortran, R, or other languages because Stan needs the derivatives with respect to unknown parameters in order to perform estimation. These derivatives are handled with custom C++ types that cannot be processed by functions in other languages that only handle primitive types such as double, float, etc.

That said, it is possible to accomplish a great deal in C++, particularly when utilizing the Stan Math Library. For more details, see The Stan Math Library: Reverse-Mode Automatic Differentiation in C++ and its GitHub repository. The functions that you declare in the functions block of a Stan program will typically involve templating and type promotion in their signatures when parsed to C++ (the only exceptions are functions whose only arguments are integers, as in the fib function above). Suppose you wanted to define a function whose arguments are real numbers (or at least one of the arguments is). For example,

mc <- 
'
functions { real besselK(real v, real z); }
model {} // use the besselK() function somehow
'
stan_model(model_code = mc, model_name = "external", allow_undefined = TRUE,
           includes = paste0('\n#include "', 
                             file.path(getwd(), 'besselK.hpp'), '"\n'))

Although the Stan Math Library (via Boost) has an implementation of the Modified Bessel Function of the Second Kind, it only supports the case where the order (v) is an integer. The besselK.hpp file reads as

template <typename T0__, typename T1__>
typename boost::math::tools::promote_args<T0__, T1__>::type
besselK(const T0__& v, const T1__& z, std::ostream* pstream__) {
  return boost::math::cyl_bessel_k(v, z);
}

because, in general, its first two arguments could either be integers, known real numbers, or unknown but real parameters. In the case of unknown real numbers, Stan will need to rely on its autodifferentiation mechanism to keep track of the derivative with respect to those arguments during estimation. But if either of the first two arguments is an integer or a known real number, then Stan avoids taking derivatives with respect to them. Thus, it is useful to utilize C++ templates that can generate all (four in this case) versions of this Bessel function with only a few lines of C++ source code. The first line of besselK.hpp states that the first two arguments are going to be templated with typenames TO__ and T1__ respectively. The second line is convoluted but merely states that the return type of the besselK function depends on TO__ and T1__. In short, if either is an unknown real parameter, then the result will also be an unknown real parameter. The third line contains the generated signature of the function in C++, which involves the typenames TO__ and T1__, as well as the pointer to a std::ostream (which is again not used in the body of the function). The body of the besselK function is simply a call to the coresponding function in the Boost Math Library, whose headers are pulled in by the Stan Math Library but the boost::math:: prefix is necessary due to the absence of a using boost::math; statement.

An easy way to see what the generated function signature will be is to call the stanc function in the rstan package with allow_undefined = TRUE and inspect the resuling C++ code. In this case, I first did

try(readLines(stanc(model_code = mc, allow_undefined = TRUE)$cppcode))
## Warning in file(con, "r"): cannot open file '// Code generated by Stan version 2.12
## 
## #include <stan/model/model_header.hpp>
## 
## namespace model6bb87e006955_mc_namespace {
## 
## using std::istream;
## using std::string;
## using std::stringstream;
## using std::vector;
## using stan::io::dump;
## using stan::math::lgamma;
## using stan::model::prob_grad;
## using namespace stan::math;
## 
## typedef Eigen::Matrix<double,Eigen::Dynamic,1> vector_d;
## typedef Eigen::Matrix<double,1,Eigen::Dynamic> row_vector_d;
## typedef Eigen::Matrix<double,Eigen::Dynamic,Eigen::Dynamic> matrix_d;
## 
## static int current_statement_begin__;
## 
## template <typename T0__, typename T1__>
## typename boost::math::tools::promote_args<T0__, T1__>::type
## besselK(const T0__& v,
##             const T1__& z, std::ostream* pstream__);
## 
## class model6bb87e006955_mc : public prob_grad {
## private:
## public:
##     model6bb87e006955_mc(stan::io::var_context& context__,
##         std::ostream* pstream__ = 0)
##         : prob_grad(0) {
##         typedef boost::ecuyer1988 rng_t;
##         rng_t base_rng(0);  // 0 see [... truncated]

to see what function signature needed to be written for besselK.hpp.

When using external C++ code, care must be taken to ensure that the function is numerically stable over a wide range of floating point numbers. Indeed, in the case of the besselK function, the derivative with respect to the order argument (v) may not be sufficiently stable numerically. In general, it is best to strip the underlying double-precision numbers out of Stan’s custom scalar types, evaluate the desired function, and then calculate the necessary derivatives analytically in an object whose class that inherits from the vari class in Stan. The details of doing so are beyond the scope of this vignette but are discussed in the links above. Once you go to the trouble of writing such a C++ function, we would welcome a pull request on GitHub to include your C++ function in the Stan Math Library for everyone to benefit from, provided that it can be licensed under the 3-clause BSD license and its use is not overly-specific to your particular Stan program.

The Stan Math Library is compliant with the C++11 standard but currently does not utilize any features that were introduced by the C++11 standard nor does it require a compiler that is compliant with the C++11 standard. However, almost any modern C++ compiler is compliant, so you can use (at least some subset of the) features that were introduced by the C++11 standard in external C++ code and your Stan program should compile (perhaps with some warnings). In particular, you may want to use the auto keyword to declare symbols within your external C++ function to avoid having to learn a lot of the messy type-promotion syntax used in the Stan Math Library and the rules for what kind of object is returned by various mathematical operations.

3 Likes

This looks great! I definitely want to try it out. This could be the first step to including packages in Stan (i.e. libraries of functions).

This finally convinced me to read that arXiv doc on the auto-diff part of the math library (thanks!) it’s a pretty sweet UI given that we’re talking C++! :)

Any reason this is in the dev-only category?

This wasn’t me, but what does dev-only mean? Is that how
things start with email by default? I don’t intend anything I’m
writing to be private.

  • Bob

I was just inviting people to edit the thing on GitHub, which only developers can do.

If it was just the intent to invite developers to edit the thing on GitHub, but have the message distributed publicly, please keep it off the “Dev Only” category.

For more information about the “Dev Only” category including why you’d use it: http://discourse.mc-stan.org/t/about-the-dev-only-category/65

@Bob_Carpenter, emailing into stan-dev@mc-stan.org creates a topic under the public Developers category. There is no email address set up for the Dev Only subcategory.

@bgoodri: would you mind moving this out of the “Dev Only” subcategory?

Glad you like it! It took a village to code the damn
thing. C++ isn’t that bad, really, if you’re not
dealing with anything too higher-order.

We have a lot of headroom now for improved speed in
a lot of places, though Rob’s been making good headway
(two heads, but still a terribly mixed metaphor—sorry).

  • Bob
1 Like

It takes a specialist to really butcher a language. K