Skip to content

Commit 4166845

Browse files
committed
Major performance improvement by forced-inlining
This gets rid of all the allocations, and boosts performance several-fold
1 parent 0255ad8 commit 4166845

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/b-splines/indexing.jl

+2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ using Base.Cartesian
33
import Base.getindex
44

55
function getindex_impl{T,N,TCoefs,IT<:BSpline,GT<:GridType,Pad}(itp::Type{BSplineInterpolation{T,N,TCoefs,IT,GT,Pad}})
6+
meta = Expr(:meta, :inline)
67
quote
8+
$meta
79
@nexprs $N d->(x_d = xs[d])
810

911
# Calculate the indices of all coefficients that will be used

0 commit comments

Comments
 (0)