Is it possible to handle headers with __float128
?
#508
amontoison
started this conversation in
General
Replies: 1 comment 7 replies
-
have you tried |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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:
Beta Was this translation helpful? Give feedback.
All reactions