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.
我正在尝试从__global__ kernel()CUDA 中的函数内将整数(32 位)转换为 const char*,但我找不到方法。
__global__ kernel()
我不能使用字符串函数,因为它抱怨我正在尝试调用主机函数。
您可以在线搜索 itoa() 实现,并使用涵盖您需要的设备功能。
不过,您可能需要重新考虑您的设计。如果您需要在 GPU 上格式化字符串,则可能是您走错了路。