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 中有 16 位长的变量吗?我需要一个 16 位的无符号整数。我试过了:
uint16 uint16_t
但是没有人被nvcc认可。
可能你应该试试普通的 cunsigned short吗?
unsigned short
CUDA 8(计算能力 6.x)带有半精度内在函数。您可以使用 16 位浮点数据类型half或整数类型short2/ char4。这些混合精度类型被打包到 32 位设备寄存器中,与仅使用 unsigned short.
half
short2
char4