HIP: Heterogenous-computing Interface for Portability
|
Functions | |
hipError_t | hipDeviceSynchronize (void) |
Waits on all active streams on current device. More... | |
hipError_t | hipDeviceReset (void) |
The state of current device is discarded and updated to a fresh state. More... | |
hipError_t | hipSetDevice (int deviceId) |
Set default device to be used for subsequent hip API calls from this thread. More... | |
hipError_t | hipGetDevice (int *deviceId) |
Return the default device id for the calling host thread. More... | |
hipError_t | hipGetDeviceCount (int *count) |
Return number of compute-capable devices. More... | |
hipError_t | hipDeviceGetAttribute (int *pi, hipDeviceAttribute_t attr, int deviceId) |
Query for a specific device attribute. More... | |
hipError_t | hipGetDeviceProperties (hipDeviceProp_t *prop, int deviceId) |
Returns device properties. More... | |
hipError_t | hipDeviceSetCacheConfig (hipFuncCache_t cacheConfig) |
Set L1/Shared cache partition. More... | |
hipError_t | hipDeviceGetCacheConfig (hipFuncCache_t *cacheConfig) |
Set Cache configuration for a specific function. More... | |
hipError_t | hipDeviceGetLimit (size_t *pValue, enum hipLimit_t limit) |
Get Resource limits of current device. More... | |
hipError_t | hipFuncSetCacheConfig (const void *func, hipFuncCache_t config) |
Set Cache configuration for a specific function. More... | |
hipError_t | hipDeviceGetSharedMemConfig (hipSharedMemConfig *pConfig) |
Returns bank width of shared memory for current device. More... | |
hipError_t | hipDeviceSetSharedMemConfig (hipSharedMemConfig config) |
The bank width of shared memory on current device is set. More... | |
hipError_t | hipSetDeviceFlags (unsigned flags) |
The current device behavior is changed according the flags passed. More... | |
hipError_t | hipChooseDevice (int *device, const hipDeviceProp_t *prop) |
Device which matches hipDeviceProp_t is returned. More... | |
hipError_t hipChooseDevice | ( | int * | device, |
const hipDeviceProp_t * | prop | ||
) |
Device which matches hipDeviceProp_t is returned.
[out] | device | ID |
[in] | device | properties pointer |
hipError_t hipDeviceGetAttribute | ( | int * | pi, |
hipDeviceAttribute_t | attr, | ||
int | deviceId | ||
) |
Query for a specific device attribute.
[out] | pi | pointer to value to return |
[in] | attr | attribute to query |
[in] | deviceId | which device to query for information |
hipError_t hipDeviceGetCacheConfig | ( | hipFuncCache_t * | cacheConfig | ) |
Set Cache configuration for a specific function.
[in] | cacheConfig |
hipError_t hipDeviceGetLimit | ( | size_t * | pValue, |
enum hipLimit_t | limit | ||
) |
Get Resource limits of current device.
[out] | pValue | |
[in] | limit |
hipError_t hipDeviceGetSharedMemConfig | ( | hipSharedMemConfig * | pConfig | ) |
Returns bank width of shared memory for current device.
[out] | pConfig |
Note: AMD devices and recent Nvidia GPUS do not support shared cache banking, and the hint is ignored on those architectures.
hipError_t hipDeviceReset | ( | void | ) |
The state of current device is discarded and updated to a fresh state.
Calling this function deletes all streams created, memory allocated, kernels running, events created. Make sure that no other thread is using the device or streams, memory, kernels, events associated with the current device.
hipError_t hipDeviceSetCacheConfig | ( | hipFuncCache_t | cacheConfig | ) |
Set L1/Shared cache partition.
[in] | cacheConfig |
hipError_t hipDeviceSetSharedMemConfig | ( | hipSharedMemConfig | config | ) |
The bank width of shared memory on current device is set.
[in] | config |
Note: AMD devices and recent Nvidia GPUS do not support shared cache banking, and the hint is ignored on those architectures.
hipError_t hipDeviceSynchronize | ( | void | ) |
Waits on all active streams on current device.
When this command is invoked, the host thread gets blocked until all the commands associated with streams associated with the device. HIP does not support multiple blocking modes (yet!).
hipError_t hipFuncSetCacheConfig | ( | const void * | func, |
hipFuncCache_t | config | ||
) |
Set Cache configuration for a specific function.
[in] | config; |
hipError_t hipGetDevice | ( | int * | deviceId | ) |
Return the default device id for the calling host thread.
[out] | device | *device is written with the default device |
HIP maintains an default device for each thread using thread-local-storage. This device is used implicitly for HIP runtime APIs called by this thread. hipGetDevice returns in * device
the default device for the calling host thread.
hipError_t hipGetDeviceCount | ( | int * | count | ) |
Return number of compute-capable devices.
[output] | count Returns number of compute-capable devices. |
Returns in *count
the number of devices that have ability to run compute commands. If there are no such devices, then hipGetDeviceCount will return hipErrorNoDevice. If 1 or more devices can be found, then hipGetDeviceCount returns hipSuccess.
hipError_t hipGetDeviceProperties | ( | hipDeviceProp_t * | prop, |
int | deviceId | ||
) |
Returns device properties.
[out] | prop | written with device properties |
[in] | deviceId | which device to query for information |
HCC always returns 0 for maxThreadsPerMultiProcessor
HCC always returns 0 for regsPerBlock
HCC always returns 0 for l2CacheSize
Populates hipGetDeviceProperties with information for the specified device.
hipError_t hipSetDevice | ( | int | deviceId | ) |
Set default device to be used for subsequent hip API calls from this thread.
[in] | deviceId | Valid device in range 0...hipGetDeviceCount(). |
Sets device
as the default device for the calling host thread. Valid device id's are 0... (hipGetDeviceCount()-1).
Many HIP APIs implicitly use the "default device" :
This function may be called from any host thread. Multiple host threads may use the same device. This function does no synchronization with the previous or new device, and has very little runtime overhead. Applications can use hipSetDevice to quickly switch the default device before making a HIP runtime call which uses the default device.
The default device is stored in thread-local-storage for each thread. Thread-pool implementations may inherit the default device of the previous thread. A good practice is to always call hipSetDevice at the start of HIP coding sequency to establish a known standard device.
hipError_t hipSetDeviceFlags | ( | unsigned | flags | ) |
The current device behavior is changed according the flags passed.
[in] | flags | The schedule flags impact how HIP waits for the completion of a command running on a device. hipDeviceScheduleSpin : HIP runtime will actively spin in the thread which submitted the work until the command completes. This offers the lowest latency, but will consume a CPU core and may increase power. hipDeviceScheduleYield : The HIP runtime will yield the CPU to system so that other tasks can use it. This may increase latency to detect the completion but will consume less power and is friendlier to other tasks in the system. hipDeviceScheduleBlockingSync : On ROCm platform, this is a synonym for hipDeviceScheduleYield. hipDeviceScheduleAuto : Use a hueristic to select between Spin and Yield modes. If the number of HIP contexts is greater than the number of logical processors in the system, use Spin scheduling. Else use Yield scheduling. |
hipDeviceMapHost : Allow mapping host memory. On ROCM, this is always allowed and the flag is ignored. hipDeviceLmemResizeToMax :