Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 cuda 中找到对数?我正在寻找设备功能。
谢谢
您可以使用:
logf(x) __logf(x) log2f(x) __log2f(x) log10f(x) __log10f(x)
摘自CUDA 编程指南(附录 D)。
正如 Ade 所说的 log* 函数。请记住,__log* 可能很快但不准确。