SWDEV-242207-Update deprecated APIs

Change-Id: I0c1c7f33f75232b210495241d0e5e7e6b90d45f0


[ROCm/clr commit: b90f3732ea]
Bu işleme şunda yer alıyor:
jujiang
2020-07-07 11:52:15 -04:00
işlemeyi yapan: Rahul Garg
ebeveyn da470ad95f
işleme 3eb6440e59
+15 -1
Dosyayı Görüntüle
@@ -1,6 +1,6 @@
# HIP Deprecated APIs
## HIP Context API
## HIP Context Management APIs
CUDA supports cuCtx API, the Driver API that defines "Context" and "Devices" as separate entities. Contexts contain a single device, and a device can theoretically have multiple contexts. HIP initially added limited support for these API to facilitate easy porting from existing driver codes. These API are marked as deprecated now since there are better alternate interface (such as hipSetDevice or the stream API) to achieve the required functions.
@@ -20,3 +20,17 @@ CUDA supports cuCtx API, the Driver API that defines "Context" and "Devices" as
### hipCtxGetFlags
### hipCtxEnablePeerAccess
### hipCtxDisablePeerAccess
## HIP Management APIs
### hipMallocHost
Should use "hipHostMalloc" instead.
### hipMemAllocHost
Should use "hipHostMalloc" instead.
### hipHostAlloc
Should use "hipHostMalloc" instead.
### hipFreeHost
Should use "hipHostFree" instead.