Mercurial > repos > public > sbplib_julia
view src/SbpOperators/SbpOperators.jl @ 347:0a95a829176c performance/lazy_elementwise_operation
lazy_array.jl: Bring back the concrete types in the LazyElementwiseOperation struct.
We went this to be able to avoid dynamic dispatch
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 25 Sep 2020 21:51:14 +0200 |
parents | f781d6da7d3d |
children | 7fe43d902a27 |
line wrap: on
line source
module SbpOperators using Sbplib.RegionIndices using Sbplib.LazyTensors include("stencil.jl") include("constantstenciloperator.jl") include("d2.jl") include("readoperator.jl") include("laplace/secondderivative.jl") include("laplace/laplace.jl") include("quadrature/diagonal_inner_product.jl") include("quadrature/quadrature.jl") include("quadrature/inverse_diagonal_inner_product.jl") include("quadrature/inverse_quadrature.jl") end # module