Update hip_programming_guide.md

[ROCm/clr commit: 95d26ffe2d]
This commit is contained in:
Yaxun (Sam) Liu
2019-01-31 15:18:37 -05:00
committed by GitHub
orang tua e5d45862bb
melakukan b68d458e89
@@ -109,4 +109,8 @@ freed.
The memory are allocated in pages. Users can define macro
`__HIP_SIZE_OF_PAGE` for controlling the page size in bytes and macro
`__HIP_NUM_PAGES` for controlling the total number of pages that can be
allocated.
allocated.
## Use of Long Double Type
In HCC and HIP-Clang, long double type is 80-bit extended precision format for x86_64, which is not supported by AMDGPU. HCC and HIP-Cang treat long double type as IEEE double type for AMDGPU. Using long double type in HIP source code will not cause issue as long as data of long double type is not transferred between host and device. However, long double type should not be used as kernel argument type.