Hi all,
I would like to understand what is the status of math functions in CUDA.jl. In particular:
- Is it neccesary to write CUDA.sin? It looks to me that this calls are converted automatically when code is executed on the GPU. If one needs to write CUDA.sin explicitly, what is the recommendation to write modules that can be used both on the GPU and on CPU?
- I think that the documentation is outdated. It points to the file
src/device/cuda/libdevice.jl
that does not exist anymore. Instead it seems that this info is insrc/device/intrinsics/math.jl
- Is there a CUDA version of the intrinsic sincos?
Thanks!
A.