Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
trixi-framework
GitHub Repository: trixi-framework/Trixi.jl
Path: blob/main/src/visualization/visualization.jl
2055 views
1
# By default, Julia/LLVM does not use fused multiply-add operations (FMAs).
2
# Since these FMAs can increase the performance of many numerical algorithms,
3
# we need to opt-in explicitly.
4
# See https://ranocha.de/blog/Optimizing_EC_Trixi for further details.
5
@muladd begin
6
#! format: noindent
7
8
include("types.jl")
9
include("utilities.jl")
10
include("utilities_p4est_t8code.jl")
11
include("recipes_plots.jl")
12
13
# Add function definitions here such that they can be exported from Trixi.jl and extended in the
14
# TrixiMakieExt package extension or by the Makie-specific code loaded by Requires.jl
15
function iplot end
16
function iplot! end
17
end # @muladd
18
19