Use unsigned short instead of uint16_t since they're more portable

This commit is contained in:
Benoit Steiner 2016-03-11 17:53:41 -08:00
parent 048c4d6efd
commit 0423b66187

View File

@ -39,7 +39,7 @@
// Make our own __half definition that is similar to CUDA's.
struct __half {
uint16_t x;
unsigned short x;
};
#endif