1# !!! warning "Experimental implementation (curvilinear FDSBP)" 2# This is an experimental feature and may change in future releases. 3 4# By default, Julia/LLVM does not use fused multiply-add operations (FMAs). 5# Since these FMAs can increase the performance of many numerical algorithms, 6# we need to opt-in explicitly. 7# See https://ranocha.de/blog/Optimizing_EC_Trixi for further details. 8@muladd begin 9#! format: noindent 10 11# dimension specific curvilinear implementations and data structures 12include("containers_2d.jl") 13include("fdsbp_2d.jl") 14end # @muladd 15 16