You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by amontoison August 30, 2024
Some Fortran libraries, like CUTEst, can be easily compiled in quadruple precision with the gfortran compiler.
The associated type in the header file to call the routines from C is __float128 and is equivalent to Float128 (implemented in Quadmath.jl).
It will be a nice feature to add an option to generate Julia wrappers for this precision. We just need to add using Quadmath at the top of the generated file if Julia wrappers can be generated.
I have a package where I need to write these additional wrappers by hand:
Discussed in #508
Originally posted by amontoison August 30, 2024
Some Fortran libraries, like
CUTEst
, can be easily compiled in quadruple precision with thegfortran
compiler.The associated type in the header file to call the routines from C is
__float128
and is equivalent toFloat128
(implemented inQuadmath.jl
).It will be a nice feature to add an option to generate Julia wrappers for this precision. We just need to add
using Quadmath
at the top of the generated file if Julia wrappers can be generated.I have a package where I need to write these additional wrappers by hand:
The text was updated successfully, but these errors were encountered: