Inverse hyperbolic sine

Hi

I could not find any reference to the inverse hyperbolic sine function (asinh) in the CUDA Fortran documentation. Is this function available?

I noticed that sinh is available…

Thank you

Kirk

This has been logged as TPR 15675, and we are addressing it in a future
release. To soon to say which release, but the TPR is in process.

In the meantime, note that asinh(x) = ln {x + sqrt(x^2+1)}

Thank you,

I have been using the ln {x + sqrt(x^2+1)} alternative. I was hoping that there would be a faster more efficient implementation of asinh.

Kirk