|
|
#define | CUDA_SUCCESS hipSuccess |
| |
|
#define | hipLaunchParm grid_launch_parm |
| |
|
#define | __HIP_DEVICE_COMPILE__ 0 |
| |
|
#define | __launch_bounds__(requiredMaxThreadsPerBlock, minBlocksPerMultiprocessor) |
| |
|
#define | clock_t long long int |
| |
| #define | hipThreadIdx_x (amp_get_local_id(2)) |
| |
|
#define | hipThreadIdx_y (amp_get_local_id(1)) |
| |
|
#define | hipThreadIdx_z (amp_get_local_id(0)) |
| |
|
#define | hipBlockIdx_x (hc_get_group_id(2)) |
| |
|
#define | hipBlockIdx_y (hc_get_group_id(1)) |
| |
|
#define | hipBlockIdx_z (hc_get_group_id(0)) |
| |
|
#define | hipBlockDim_x (amp_get_local_size(2)) |
| |
|
#define | hipBlockDim_y (amp_get_local_size(1)) |
| |
|
#define | hipBlockDim_z (amp_get_local_size(0)) |
| |
|
#define | hipGridDim_x (hc_get_num_groups(2)) |
| |
|
#define | hipGridDim_y (hc_get_num_groups(1)) |
| |
|
#define | hipGridDim_z (hc_get_num_groups(0)) |
| |
|
#define | __syncthreads() hc_barrier(CLK_LOCAL_MEM_FENCE) |
| |
|
#define | HIP_KERNEL_NAME(...) __VA_ARGS__ |
| |
| #define | KERNELBEGIN |
| |
| #define | KERNELEND |
| |
|
|
__device__ long long int | clock64 () |
| |
|
__device__ clock_t | clock () |
| |
|
__device__ int | atomicAdd (int *address, int val) |
| |
|
__device__ unsigned int | atomicAdd (unsigned int *address, unsigned int val) |
| |
|
__device__ unsigned long long int | atomicAdd (unsigned long long int *address, unsigned long long int val) |
| |
|
__device__ float | atomicAdd (float *address, float val) |
| |
|
__device__ int | atomicSub (int *address, int val) |
| |
|
__device__ unsigned int | atomicSub (unsigned int *address, unsigned int val) |
| |
|
__device__ int | atomicExch (int *address, int val) |
| |
|
__device__ unsigned int | atomicExch (unsigned int *address, unsigned int val) |
| |
|
__device__ unsigned long long int | atomicExch (unsigned long long int *address, unsigned long long int val) |
| |
|
__device__ float | atomicExch (float *address, float val) |
| |
|
__device__ int | atomicMin (int *address, int val) |
| |
|
__device__ unsigned int | atomicMin (unsigned int *address, unsigned int val) |
| |
|
__device__ unsigned long long int | atomicMin (unsigned long long int *address, unsigned long long int val) |
| |
|
__device__ int | atomicMax (int *address, int val) |
| |
|
__device__ unsigned int | atomicMax (unsigned int *address, unsigned int val) |
| |
|
__device__ unsigned long long int | atomicMax (unsigned long long int *address, unsigned long long int val) |
| |
|
__device__ unsigned int | atomicInc (unsigned int *address) |
| |
|
__device__ unsigned int | atomicDec (unsigned int *address) |
| |
|
__device__ int | atomicCAS (int *address, int compare, int val) |
| |
|
__device__ unsigned int | atomicCAS (unsigned int *address, unsigned int compare, unsigned int val) |
| |
|
__device__ unsigned long long int | atomicCAS (unsigned long long int *address, unsigned long long int compare, unsigned long long int val) |
| |
|
__device__ int | atomicAnd (int *address, int val) |
| |
|
__device__ unsigned int | atomicAnd (unsigned int *address, unsigned int val) |
| |
|
__device__ unsigned long long int | atomicAnd (unsigned long long int *address, unsigned long long int val) |
| |
|
__device__ int | atomicOr (int *address, int val) |
| |
|
__device__ unsigned int | atomicOr (unsigned int *address, unsigned int val) |
| |
|
__device__ unsigned long long int | atomicOr (unsigned long long int *address, unsigned long long int val) |
| |
|
__device__ int | atomicXor (int *address, int val) |
| |
|
__device__ unsigned int | atomicXor (unsigned int *address, unsigned int val) |
| |
|
__device__ unsigned long long int | atomicXor (unsigned long long int *address, unsigned long long int val) |
| |
|
__device__ unsigned int | __popc (unsigned int input) |
| |
|
__device__ unsigned int | __popcll (unsigned long long int input) |
| |
|
__device__ unsigned int | __clz (unsigned int input) |
| |
|
__device__ unsigned int | __clzll (unsigned long long int input) |
| |
|
__device__ unsigned int | __clz (int input) |
| |
|
__device__ unsigned int | __clzll (long long int input) |
| |
|
__device__ unsigned int | __ffs (unsigned int input) |
| |
|
__device__ unsigned int | __ffsll (unsigned long long int input) |
| |
|
__device__ unsigned int | __brev (unsigned int input) |
| |
|
__device__ unsigned long long int | __brevll (unsigned long long int input) |
| |
|
__device__ int | __all (int input) |
| |
|
__device__ int | __any (int input) |
| |
|
__device__ unsigned long long int | __ballot (int input) |
| |