JuliaActuary
Practical, extensible, and open-source actuarial modeling and analysis.

Benchmarks

  1. The Life Modeling Problem
    1. Benchmarks
    2. Discussion
  2. IRRs
    1. Benchmarks
    2. Discussion
  3. Black-Scholes-Merton European Option Pricing
    1. Benchmarks
    2. Discussion
  4. Other benchmarks
  5. Colophone
    1. Code
  6. Footnotes

The Life Modeling Problem

Inspired by the discussion in the ActuarialOpenSource GitHub community discussion, folks started submitted solutions to what someone referred to as the "Life Modeling Problem". This user submitted a short snippet for consideration of a representative problem.

Benchmarks

After the original user submitted a proposal, others chimed in and submitted versions in their favorite languages. I have collected those versions, and run them on a consistent set of hardware.

Some submissions were excluded because from the benchmarks they involved an entirely different approach, such as memoizing the function calls[1].

┌────────────────┬─────────────┬───────────────┬───────────────┬───────────────┬───────────────┐
│       Language │   Algorithm │ Function name │        Median │          Mean │ Relative Mean │
│                │             │               │ [nanoseconds] │ [nanoseconds] │               │
├────────────────┼─────────────┼───────────────┼───────────────┼───────────────┼───────────────┤
│ R (data.table) │  Vectorized │           npv │        770554 │        842767 │        132199 │
│              R │  Vectorized │      npv base │          4264 │         46617 │          7312 │
│              R │ Accumulator │      npv_loop │          4346 │         62276 │          9769 │
│           Rust │ Accumulator │          npv1 │            22 │            22 │             3 │
│           Rust │ Accumulator │          npv2 │            14 │            14 │             2 │
│           Rust │ Accumulator │          npv3 │             7 │             7 │             1 │
│ Python (NumPy) │  Vectorized │           npv │       missing │         14261 │          2237 │
│         Python │ Accumulator │      npv_loop │       missing │          2314 │           363 │
│ Python (Numba) │ Accumulator │     npv_numba │       missing │           626 │            98 │
│          Julia │  Vectorized │          npv1 │           235 │           228 │            36 │
│          Julia │  Vectorized │          npv2 │           236 │           218 │            34 │
│          Julia │ Accumulator │          npv3 │            15 │            14 │             2 │
│          Julia │ Accumulator │          npv4 │            11 │            11 │             2 │
│          Julia │ Accumulator │          npv5 │            11 │            11 │             2 │
│          Julia │ Accumulator │          npv6 │             9 │             9 │             1 │
│          Julia │ Accumulator │          npv7 │             8 │             8 │             1 │
│          Julia │ Accumulator │          npv8 │             7 │             7 │             1 │
│          Julia │ Accumulator │          npv9 │             6 │             6 │             1 │
└────────────────┴─────────────┴───────────────┴───────────────┴───────────────┴───────────────┘

To aid in visualizing results with such vast different orders of magnitude, this graph includes a physical length comparison to serve as a reference. The computation time is represented by the distance that light travels in the time for the computation to complete (comparing a nanosecond to one foot length goes at least back to Admiral Grace Hopper).

Discussion

For more a more in-depth discussion of these results, see this post.

All of the benchmarked code can be found in the JuliaActuary Learn repository. Please file an issue or submit a PR request there for issues/suggestions.

IRRs

Task: determine the IRR for a series of cashflows 701 elements long (e.g. monthly cashflows for 60 years).

Benchmarks

Times are in nanoseconds:
┌──────────┬──────────────────┬───────────────────┬─────────┬─────────────┬───────────────┐
│ Language │          Package │          Function │  Median │        Mean │ Relative Mean │
├──────────┼──────────────────┼───────────────────┼─────────┼─────────────┼───────────────┤
│   Python │  numpy_financial │               irr │ missing │   519306422 │       123146x │
│   Python │           better │ irr_binary_search │ missing │     3045229 │          722x │
│   Python │           better │        irr_newton │ missing │      382166 │           91x │
│    Julia │ ActuaryUtilities │               irr │    4185 │        4217 │            1x │
└──────────┴──────────────────┴───────────────────┴─────────┴─────────────┴───────────────┘

Discussion

The ActuaryUtilities implementation is over 100,000 times faster than numpy_financial, and 91 to 722 times faster than the better Python package. The ActuaryUtilities.jl implementation is also more flexible, as it can be given an argument with timepoints, similar to Excel's XIRR.

Excel was used to attempt a benchmark, but the IRR formula returned a #DIV/0! error.

All of the benchmarked code can be found in the JuliaActuary Learn repository. Please file an issue or submit a PR request there for issues/suggestions.

Black-Scholes-Merton European Option Pricing

Task: calculate the price of a vanilla european call option using the Black-Scholes-Merton formula.

\[\begin{aligned} C(S_t, t) &= N(d_1)S_t - N(d_2)Ke^{-r(T - t)} \\ d_1 &= \frac{1}{\sigma\sqrt{T - t}}\left[\ln\left(\frac{S_t}{K}\right) + \left(r + \frac{\sigma^2}{2}\right)(T - t)\right] \\ d_2 &= d_1 - \sigma\sqrt{T - t} \end{aligned}\]

Benchmarks

Times are in nanoseconds:
┌──────────┬─────────┬─────────────┬───────────────┐
│ Language │  Median │        Mean │ Relative Mean │
├──────────┼─────────┼─────────────┼───────────────┤
│   Python │ missing │    817000.0 │       19926.0 │
│        R │  3649.0 │      3855.2 │          92.7 │
│    Julia │    41.0 │        41.6 │           1.0 │
└──────────┴─────────┴─────────────┴───────────────┘

Discussion

Julia is nearly 20,000 times faster than Python, and two orders of magnitude faster than R.

Other benchmarks

These benchmarks have been performed by others, but provide relevant information for actuarial-related work:

Colophone

Code

All of the benchmarked code can be found in the JuliaActuary Learn repository. Please file an issue or submit a PR request there for issues/suggestions.

Footnotes

[1] If benchmarking memoization, it's essentially benchmarking how long it takes to perform hashing in a language. While interesting, especially in the context of incremental computing, it's not the core issue at hand. Incremental computing libraries exist for all of the modern languages discussed here.

[2] Note that not all languages have both a mean and median result in their benchmarking libraries. Mean is a better representation for a garbage-collected modern language, because sometimes the computation just takes longer than the median result. Where the mean is not available in the graph below, median is substituted.

The packages in JuliaActuary are open-source and liberally licensed (MIT License) to allow wide private and commercial usage of the packages, like the base Julia language and many other packages in the ecosystem. See terms of this site.