We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
We aim to use Float64 and Flat32 precision in CliMA's ESM. Here is a summary of some challenges / things to be aware of:
julia> eps(zero(Float64)) 5.0e-324 julia> eps(one(Float64)) 2.220446049250313e-16 julia> eps(zero(Float32)) 1.0f-45 julia> eps(one(Float32)) 1.1920929f-7
see Julia docs for more info.