A high-performance N-dimensional interpolation package for Julia, optimized for zero-allocation hot loops.
- 🚀 Fast: Optimized algorithms that outperform other packages.
- ✅ Zero-Allocation: No GC pressure on hot loops.
- 🎯 Explicit BCs: Support custom physical boundary conditions.
- 📐 Derivatives: Analytical 1st, 2nd, and 3rd derivatives for all methods.
- 🌌 Generic: Supports Complex values and AD (AutoDiff) — ForwardDiff, Zygote, Enzyme.
- 🧵 Thread-Safe: Lock-free concurrent access across multiple threads.
FastInterpolations.jl supports four interpolation methods: Constant, Linear, Quadratic, and Cubic splines.
| Method | Continuity | Best For |
|---|---|---|
constant_interp |
C⁻¹ | Step functions (Nearest, Left, Right) |
linear_interp |
C⁰ | Simple, fast O(1) range lookup |
quadratic_interp |
C¹ | Smooth C¹ continuity with minimal overhead |
cubic_interp |
C² | High-quality C² splines (Natural, Clamped, Periodic) |
FastInterpolations.jl provides two primary API styles, plus a specialized SeriesInterpolant for multi-series data.
Best when y values change every step, but the grid x remains fixed.
using FastInterpolations
# Define grid and query points
x = range(0.0, 10.0, 100) # source grid (100 points)
y = sin.(x) # initial y data
# Basic usage
cubic_interp(x, y, 0.33) # return interpolated value at x=0.33
cubic_interp(x, y, [0.11, 0.22, 0.33]) # return values at x=[0.11,0.22,0.33]
# Advanced usage (in-place vector query)
xq = range(0.0, 10.0, 500) # query points (500 points)
out = similar(xq) # pre-allocate output buffer
for t in 1:1000
@. y = sin(x + 0.01t) # y values evolve each timestep
cubic_interp!(out, x, y, xq) # zero-allocation ✅ (after warm-up)
endBest for fixed lookup tables where both x and y are constant.
x = range(0.0, 10.0, 100)
y = sin.(x)
itp = cubic_interp(x, y) # pre-compute spline coefficients once
result = itp(5.5) # evaluate at single point
result = itp(xq) # evaluate at multiple points
@. result = a * itp(xq) + b # seamless broadcast fusionWhen multiple y-series share the same x-grid, use SeriesInterpolant. It leverages SIMD and cache locality for 10-100× faster evaluation compared to looping over individual interpolants.
x = range(0, 10, 100)
y1, y2, y3, y4 = sin.(x), cos.(x), tan.(x), exp.(-x) # 4 series, same grid
sitp = cubic_interp(x, [y1, y2, y3, y4]) # create SeriesInterpolant
sitp(0.5) # → 4-element Vector: interpolated values for each seriesFor detailed usage and performance trade-offs, see the API Selection Guide.
FastInterpolations.jl supports 2D, 3D, and N-dimensional interpolation on any rectilinear grid (uniform or non-uniform). The API generalizes the 1D case by packing axis-specific information into Tuples — for example, where 1D takes x, ND takes (x, y, z, ...) for the grid, query points, and parameters.
using FastInterpolations
# Define 2D rectilinear grid (can be non-uniform) and data
x, y = [0.0, 0.2, 0.5, 1.0], range(0, 2π, 50)
data2D = [sin(xi) * cos(yi) for xi in x, yi in y]
xq, yq = [0.1, 0.2], [0.3, 0.4] # query vectors
# 1. One-shot API: (grid_tuple, data, query_tuple)
val = cubic_interp((x, y), data2D, (0.5, 0.3)) # single point
vals = cubic_interp((x, y), data2D, (xq, yq)) # vector query
# 2. Interpolant API: Precompute coefficients once
itp = cubic_interp((x, y), data2D)
itp((0.5, 0.3)) # scalar query
itp((xq, yq)) # vector query
# 3. BCs & Derivatives: Pass settings as axis-wise Tuples
# (Natural in X, Periodic in Y)
itp = cubic_interp((x, y), data2D; bc=(NaturalBC(), PeriodicBC()))
val_dxx = itp((0.5, 0.3); deriv=(2, 0)) # analytical ∂²f/∂x²Key Features:
- Flexible Grids: Supports both uniform and non-uniform rectilinear grids.
- Full Parity: Every 1D feature (BCs, derivatives, extrapolation) works in ND via Tuples.
- Zero-Allocation: Optimized tensor-product evaluation for high-performance loops.
Comparison on a non-uniform 2D rectilinear grid for 
Benchmark comparison against Interpolations.jl, DataInterpolations.jl, and Dierckx.jl for cubic spline interpolation.
Env: Local · macOS 15.7.3 · Apple M1 Pro · Julia 1.12.4
Pkg: FastInterpolations (v0.2.7) · Interpolations (v0.16.2) · DataInterpolations (v8.9.0) · Dierckx (v0.5.4)
Speedup: (2.2 ~ 16.2)× vs Interpolations.jl · (9.1 ~ 20.4)× vs DataInterpolations.jl · (14.5 ~ 18.5)× vs Dierckx.jl
One-shot (construction + evaluation) time per call with fixed grid size FastInterpolations.jl is significantly faster even on the first call (cache-miss), and becomes even faster on subsequent calls (cache-hit).
# Analytical derivatives — all methods support 1st, 2nd, 3rd derivatives
cubic_interp(x, y, 5.0; deriv=1) # 1st derivative at x=5.0
cubic_interp(x, y, 5.0; deriv=2) # 2nd derivative at x=5.0
cubic_interp(x, y, 5.0; deriv=3) # 3rd derivative at x=5.0
# Constant interpolation — choose which side to sample
constant_interp(x, y, xq; side=:nearest) # nearest neighbor (default)
constant_interp(x, y, xq; side=:left) # left-continuous
constant_interp(x, y, xq; side=:right) # right-continuous
# Quadratic boundary condition — single endpoint constraint
quadratic_interp(x, y, xq; bc=Left(Deriv1(0.0))) # S'(left) = 0
quadratic_interp(x, y, xq; bc=Right(Deriv1(1.0))) # S'(right) = 1
# Cubic boundary conditions — paired endpoint constraints
cubic_interp(x, y, xq; bc=NaturalBC()) # S''=0 at both ends (default)
cubic_interp(x, y, xq; bc=PeriodicBC()) # C²-continuous periodic spline
cubic_interp(x, y, xq; bc=BCPair(Deriv1(2.0), Deriv2(-5.0))) # custom (left, right) BC
cubic_interp(x, y, xq; bc=CubicFit()) # Estimate derivatives using 4-point fit at both ends
# Extrapolation modes — all methods support these
linear_interp(x, y, xq; extrap=:constant) # clamp to boundary values
quadratic_interp(x, y, xq; extrap=:wrap) # wrap around (periodic data)
cubic_interp(x, y, xq; extrap=:extension) # extend boundary polynomialFor detailed guides on boundary conditions, extrapolation, and performance tuning, visit the Documentation.
Apache License 2.0
Min-Gu Yoo 
