/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hip/checkouts/docs-5.5.0/include/hip/hip_runtime_api.h Source File

/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hip/checkouts/docs-5.5.0/include/hip/hip_runtime_api.h Source File#

HIP Runtime API Reference: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hip/checkouts/docs-5.5.0/include/hip/hip_runtime_api.h Source File
hip_runtime_api.h
Go to the documentation of this file.
1 /*
2 Copyright (c) 2015 - 2022 Advanced Micro Devices, Inc. All rights reserved.
3 
4 Permission is hereby granted, free of charge, to any person obtaining a copy
5 of this software and associated documentation files (the "Software"), to deal
6 in the Software without restriction, including without limitation the rights
7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 copies of the Software, and to permit persons to whom the Software is
9 furnished to do so, subject to the following conditions:
10 
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
13 
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 THE SOFTWARE.
21 */
22 
30 #ifndef HIP_INCLUDE_HIP_HIP_RUNTIME_API_H
31 #define HIP_INCLUDE_HIP_HIP_RUNTIME_API_H
32 
33 
34 #include <string.h> // for getDeviceProp
35 #include <hip/hip_version.h>
36 #include <hip/hip_common.h>
37 
38 enum {
43 };
44 
45 typedef struct {
46  // 32-bit Atomics
47  unsigned hasGlobalInt32Atomics : 1;
48  unsigned hasGlobalFloatAtomicExch : 1;
49  unsigned hasSharedInt32Atomics : 1;
50  unsigned hasSharedFloatAtomicExch : 1;
51  unsigned hasFloatAtomicAdd : 1;
52 
53  // 64-bit Atomics
54  unsigned hasGlobalInt64Atomics : 1;
55  unsigned hasSharedInt64Atomics : 1;
56 
57  // Doubles
58  unsigned hasDoubles : 1;
59 
60  // Warp cross-lane operations
61  unsigned hasWarpVote : 1;
62  unsigned hasWarpBallot : 1;
63  unsigned hasWarpShuffle : 1;
64  unsigned hasFunnelShift : 1;
65 
66  // Sync
67  unsigned hasThreadFenceSystem : 1;
68  unsigned hasSyncThreadsExt : 1;
69 
70  // Misc
71  unsigned hasSurfaceFuncs : 1;
72  unsigned has3dGrid : 1;
73  unsigned hasDynamicParallelism : 1;
75 
76 typedef struct hipUUID_t {
77  char bytes[16];
78 } hipUUID;
79 
80 //---
81 // Common headers for both NVCC and HCC paths:
82 
87 typedef struct hipDeviceProp_t {
88  char name[256];
89  size_t totalGlobalMem;
92  int warpSize;
94  int maxThreadsDim[3];
95  int maxGridSize[3];
96  int clockRate;
99  size_t totalConstMem;
100  int major;
103  int minor;
115  int pciBusID;
120  int gcnArch;
121  char gcnArchName[256];
127  int maxTexture2D[2];
128  int maxTexture3D[3];
129  unsigned int* hdpMemFlushCntl;
130  unsigned int* hdpRegFlushCntl;
131  size_t memPitch;
136  int tccDriver;
154 
155 
156  /*
157  * @brief HIP Memory type (for pointer attributes)
158  * @enum
159  * @ingroup Enumerations
160  */
161 typedef enum hipMemoryType {
163  hipMemoryTypeDevice = 1,
165  hipMemoryTypeArray = 2,
171 
175 typedef struct hipPointerAttribute_t {
176  union {
177  // Deprecated, use instead type
179  enum hipMemoryType type;
180  };
181  int device;
183  void* hostPointer;
185  unsigned allocationFlags; /* flags specified when memory was allocated*/
186  /* peers? */
188 
189 
190 // hack to get these to show up in Doxygen:
197 // Ignoring error-code return values from hip APIs is discouraged. On C++17,
198 // we can make that yield a warning
199 #if __cplusplus >= 201703L
200 #define __HIP_NODISCARD [[nodiscard]]
201 #else
202 #define __HIP_NODISCARD
203 #endif
204 
205 /*
206  * @brief hipError_t
207  * @enum
208  * @ingroup Enumerations
209  */
210 // Developer note - when updating these, update the hipErrorName and hipErrorString functions in
211 // NVCC and HCC paths Also update the hipCUDAErrorTohipError function in NVCC path.
212 
218  // Deprecated
221  // Deprecated
243  // Deprecated
265  // Deprecated
277  704,
279  705,
284  712,
286  713,
288  719,
290  720,
320  hipErrorUnknown = 999, //< Unknown error.
321  // HSA Runtime Error Codes start here.
326  hipErrorTbd
327 } hipError_t;
328 
329 #undef __HIP_NODISCARD
330 
331 /*
332  * @brief hipDeviceAttribute_t
333  * @enum
334  * @ingroup Enumerations
335  */
336 typedef enum hipDeviceAttribute_t {
338 
435 
438 
463 
466  // Extended attributes for vendors
468 
474 };
475 
480 #if (defined(__HIP_PLATFORM_HCC__) || defined(__HIP_PLATFORM_AMD__)) && !(defined(__HIP_PLATFORM_NVCC__) || defined(__HIP_PLATFORM_NVIDIA__))
481 
482 #include <stdint.h>
483 #include <stddef.h>
484 #ifndef GENERIC_GRID_LAUNCH
485 #define GENERIC_GRID_LAUNCH 1
486 #endif
487 #include <hip/amd_detail/host_defines.h>
488 #include <hip/driver_types.h>
489 #include <hip/texture_types.h>
490 #include <hip/surface_types.h>
491 #if defined(_MSC_VER)
492 #define DEPRECATED(msg) __declspec(deprecated(msg))
493 #else // !defined(_MSC_VER)
494 #define DEPRECATED(msg) __attribute__ ((deprecated(msg)))
495 #endif // !defined(_MSC_VER)
496 #define DEPRECATED_MSG "This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md"
497 #define HIP_LAUNCH_PARAM_BUFFER_POINTER ((void*)0x01)
498 #define HIP_LAUNCH_PARAM_BUFFER_SIZE ((void*)0x02)
499 #define HIP_LAUNCH_PARAM_END ((void*)0x03)
500 #ifdef __cplusplus
501  #define __dparm(x) \
502  = x
503 #else
504  #define __dparm(x)
505 #endif
506 #ifdef __GNUC__
507 #pragma GCC visibility push (default)
508 #endif
509 #ifdef __cplusplus
510 namespace hip_impl {
511 hipError_t hip_init();
512 } // namespace hip_impl
513 #endif
514 // Structure definitions:
515 #ifdef __cplusplus
516 extern "C" {
517 #endif
518 //---
519 // API-visible structures
520 typedef struct ihipCtx_t* hipCtx_t;
521 // Note many APIs also use integer deviceIds as an alternative to the device pointer:
522 typedef int hipDevice_t;
523 typedef enum hipDeviceP2PAttr {
529 typedef struct ihipStream_t* hipStream_t;
530 #define hipIpcMemLazyEnablePeerAccess 0
531 #define HIP_IPC_HANDLE_SIZE 64
532 typedef struct hipIpcMemHandle_st {
533  char reserved[HIP_IPC_HANDLE_SIZE];
535 typedef struct hipIpcEventHandle_st {
536  char reserved[HIP_IPC_HANDLE_SIZE];
538 typedef struct ihipModule_t* hipModule_t;
539 typedef struct ihipModuleSymbol_t* hipFunction_t;
543 typedef struct ihipMemPoolHandle_t* hipMemPool_t;
544 
545 typedef struct hipFuncAttributes {
552  int numRegs;
557 typedef struct ihipEvent_t* hipEvent_t;
559  hipLimitStackSize = 0x0, // limit device stack size
560  hipLimitPrintfFifoSize = 0x01, // limit printf fifo size
561  hipLimitMallocHeapSize = 0x02, // limit heap size
562  hipLimitRange // supported limit range
563 };
568 //Flags that can be used with hipStreamCreateWithFlags.
570 #define hipStreamDefault 0x00
571 
573 #define hipStreamNonBlocking 0x01
574 
575 //Flags that can be used with hipEventCreateWithFlags.
577 #define hipEventDefault 0x0
578 
580 #define hipEventBlockingSync 0x1
581 
583 #define hipEventDisableTiming 0x2
584 
586 #define hipEventInterprocess 0x4
587 
590 #define hipEventReleaseToDevice 0x40000000
591 
594 #define hipEventReleaseToSystem 0x80000000
595 
596 //Flags that can be used with hipHostMalloc.
598 #define hipHostMallocDefault 0x0
599 
601 #define hipHostMallocPortable 0x1
602 
605 #define hipHostMallocMapped 0x2
606 
610 #define hipHostMallocWriteCombined 0x4
611 
613 #define hipHostMallocNumaUser 0x20000000
614 
616 #define hipHostMallocCoherent 0x40000000
617 
619 #define hipHostMallocNonCoherent 0x80000000
620 
622 #define hipMemAttachGlobal 0x01
623 
625 #define hipMemAttachHost 0x02
626 
628 #define hipMemAttachSingle 0x04
629 
630 #define hipDeviceMallocDefault 0x0
631 
633 #define hipDeviceMallocFinegrained 0x1
634 
636 #define hipMallocSignalMemory 0x2
637 
639 #define hipDeviceMallocUncached 0x3
640 
641 //Flags that can be used with hipHostRegister.
643 #define hipHostRegisterDefault 0x0
644 
646 #define hipHostRegisterPortable 0x1
647 
650 #define hipHostRegisterMapped 0x2
651 
653 #define hipHostRegisterIoMemory 0x4
654 
656 #define hipExtHostRegisterCoarseGrained 0x8
657 
659 #define hipDeviceScheduleAuto 0x0
660 
663 #define hipDeviceScheduleSpin 0x1
664 
667 #define hipDeviceScheduleYield 0x2
668 #define hipDeviceScheduleBlockingSync 0x4
669 #define hipDeviceScheduleMask 0x7
670 #define hipDeviceMapHost 0x8
671 #define hipDeviceLmemResizeToMax 0x10
673 #define hipArrayDefault 0x00
674 #define hipArrayLayered 0x01
675 #define hipArraySurfaceLoadStore 0x02
676 #define hipArrayCubemap 0x04
677 #define hipArrayTextureGather 0x08
678 #define hipOccupancyDefault 0x00
679 #define hipOccupancyDisableCachingOverride 0x01
680 #define hipCooperativeLaunchMultiDeviceNoPreSync 0x01
681 #define hipCooperativeLaunchMultiDeviceNoPostSync 0x02
682 #define hipCpuDeviceId ((int)-1)
683 #define hipInvalidDeviceId ((int)-2)
684 //Flags that can be used with hipExtLaunch Set of APIs.
686 #define hipExtAnyOrderLaunch 0x01
687 // Flags to be used with hipStreamWaitValue32 and hipStreamWaitValue64.
688 #define hipStreamWaitValueGte 0x0
689 #define hipStreamWaitValueEq 0x1
690 #define hipStreamWaitValueAnd 0x2
691 #define hipStreamWaitValueNor 0x3
692 // Stream per thread
694 #define hipStreamPerThread ((hipStream_t)2)
695 
696 // Indicates that the external memory object is a dedicated resource
697 #define hipExternalMemoryDedicated 0x1
698 /*
699  * @brief HIP Memory Advise values
700  * @enum
701  * @ingroup Enumerations
702  */
703 typedef enum hipMemoryAdvise {
721 /*
722  * @brief HIP Coherency Mode
723  * @enum
724  * @ingroup Enumerations
725  */
735 /*
736  * @brief HIP range attributes
737  * @enum
738  * @ingroup Enumerations
739  */
740 typedef enum hipMemRangeAttribute {
751 
757 typedef enum hipMemPoolAttr
758 {
818  typedef enum hipMemLocationType {
827 typedef struct hipMemLocation {
829  int id;
836 typedef enum hipMemAccessFlags {
844 typedef struct hipMemAccessDesc {
853 typedef enum hipMemAllocationType {
859  hipMemAllocationTypeMax = 0x7FFFFFFF
875 typedef struct hipMemPoolProps {
883  unsigned char reserved[64];
888 typedef struct hipMemPoolPtrExportData {
889  unsigned char reserved[64];
891 
892 /*
893  * @brief hipJitOption
894  * @enum
895  * @ingroup Enumerations
896  */
897 typedef enum hipJitOption {
920 typedef enum hipFuncAttribute {
928 typedef enum hipFuncCache_t {
937 typedef enum hipSharedMemConfig {
948 typedef struct dim3 {
949  uint32_t x;
950  uint32_t y;
951  uint32_t z;
952 #ifdef __cplusplus
953  constexpr __host__ __device__ dim3(uint32_t _x = 1, uint32_t _y = 1, uint32_t _z = 1) : x(_x), y(_y), z(_z){};
954 #endif
955 } dim3;
956 typedef struct hipLaunchParams_t {
957  void* func;
960  void **args;
961  size_t sharedMem;
964 typedef struct hipFunctionLaunchParams_t {
965  hipFunction_t function;
966  unsigned int gridDimX;
967  unsigned int gridDimY;
968  unsigned int gridDimZ;
969  unsigned int blockDimX;
970  unsigned int blockDimY;
971  unsigned int blockDimZ;
972  unsigned int sharedMemBytes;
974  void **kernelParams;
976 typedef enum hipExternalMemoryHandleType_enum {
985 typedef struct hipExternalMemoryHandleDesc_st {
987  union {
988  int fd;
989  struct {
990  void *handle;
991  const void *name;
992  } win32;
993  } handle;
994  unsigned long long size;
995  unsigned int flags;
997 typedef struct hipExternalMemoryBufferDesc_st {
998  unsigned long long offset;
999  unsigned long long size;
1000  unsigned int flags;
1002 typedef void* hipExternalMemory_t;
1003 typedef enum hipExternalSemaphoreHandleType_enum {
1009 typedef struct hipExternalSemaphoreHandleDesc_st {
1011  union {
1012  int fd;
1013  struct {
1014  void* handle;
1015  const void* name;
1016  } win32;
1017  } handle;
1018  unsigned int flags;
1021 typedef struct hipExternalSemaphoreSignalParams_st {
1022  struct {
1023  struct {
1024  unsigned long long value;
1025  } fence;
1026  struct {
1027  unsigned long long key;
1028  } keyedMutex;
1029  unsigned int reserved[12];
1030  } params;
1031  unsigned int flags;
1032  unsigned int reserved[16];
1037 typedef struct hipExternalSemaphoreWaitParams_st {
1038  struct {
1039  struct {
1040  unsigned long long value;
1041  } fence;
1042  struct {
1043  unsigned long long key;
1044  unsigned int timeoutMs;
1045  } keyedMutex;
1046  unsigned int reserved[10];
1047  } params;
1048  unsigned int flags;
1049  unsigned int reserved[16];
1051 
1052 #if __HIP_HAS_GET_PCH
1058  void __hipGetPCH(const char** pch, unsigned int*size);
1059 #endif
1060 
1061 /*
1062  * @brief HIP Devices used by current OpenGL Context.
1063  * @enum
1064  * @ingroup Enumerations
1065  */
1066 typedef enum hipGLDeviceList {
1073 
1074 /*
1075  * @brief HIP Access falgs for Interop resources.
1076  * @enum
1077  * @ingroup Enumerations
1078  */
1083  2,
1086  8
1088 
1089 typedef struct _hipGraphicsResource hipGraphicsResource;
1090 
1092 
1096 typedef struct ihipGraph* hipGraph_t;
1100 typedef struct hipGraphNode* hipGraphNode_t;
1104 typedef struct hipGraphExec* hipGraphExec_t;
1105 
1109 typedef struct hipUserObject* hipUserObject_t;
1110 
1111 
1117 typedef enum hipGraphNodeType {
1134 
1135 typedef void (*hipHostFn_t)(void* userData);
1136 typedef struct hipHostNodeParams {
1138  void* userData;
1140 typedef struct hipKernelNodeParams {
1142  void** extra;
1143  void* func;
1146  unsigned int sharedMemBytes;
1148 typedef struct hipMemsetParams {
1149  void* dst;
1150  unsigned int elementSize;
1151  size_t height;
1152  size_t pitch;
1153  unsigned int value;
1154  size_t width;
1155 } hipMemsetParams;
1156 
1157 typedef struct hipMemAllocNodeParams {
1163  size_t bytesize;
1164  void* dptr;
1166 
1172 typedef enum hipKernelNodeAttrID {
1176 typedef enum hipAccessProperty {
1181 typedef struct hipAccessPolicyWindow {
1182  void* base_ptr;
1184  float hitRatio;
1186  size_t num_bytes;
1188 typedef union hipKernelNodeAttrValue {
1192 
1200  hipGraphExecUpdateError = 0x1,
1205  0x4,
1207  0x5,
1209  0x6,
1212 
1213 typedef enum hipStreamCaptureMode {
1224 
1229 
1236 typedef enum hipUserObjectFlags {
1239 
1243 
1246  1,
1248 
1251  << 0,
1257  << 6,
1259  << 7,
1261  << 8,
1263  << 9,
1265  << 10
1266 };
1270 typedef struct hipMemAllocationProp {
1275  struct {
1276  unsigned char compressionType;
1277  unsigned char gpuDirectRDMACapable;
1278  unsigned short usage;
1281 
1285 typedef struct ihipMemGenericAllocationHandle* hipMemGenericAllocationHandle_t;
1286 
1296 
1302 typedef enum hipMemHandleType {
1305 
1311 typedef enum hipMemOperationType {
1315 
1325 
1329 typedef struct hipArrayMapInfo {
1331  union {
1333  hipArray_t array;
1336  union {
1337  struct {
1338  unsigned int level;
1339  unsigned int layer;
1340  unsigned int offsetX;
1341  unsigned int offsetY;
1342  unsigned int offsetZ;
1343  unsigned int extentWidth;
1344  unsigned int extentHeight;
1345  unsigned int extentDepth;
1347  struct {
1348  unsigned int layer;
1349  unsigned long long offset;
1350  unsigned long long size;
1355  union {
1358  unsigned long long offset;
1359  unsigned int deviceBitMask;
1360  unsigned int flags;
1361  unsigned int reserved[2];
1362 } hipArrayMapInfo;
1363 // Doxygen end group GlobalDefs
1365 //-------------------------------------------------------------------------------------------------
1366 // The handle allows the async commands to use the stream even if the parent hipStream_t goes
1367 // out-of-scope.
1368 // typedef class ihipStream_t * hipStream_t;
1369 /*
1370  * Opaque structure allows the true event (pointed at by the handle) to remain "live" even if the
1371  * surrounding hipEvent_t goes out-of-scope. This is handy for cases where the hipEvent_t goes
1372  * out-of-scope but the true event is being written by some async queue or device */
1373 // typedef struct hipEvent_t {
1374 // struct ihipEvent_t *_handle;
1375 //} hipEvent_t;
1394 // TODO-ctx - more description on error codes.
1395 hipError_t hipInit(unsigned int flags);
1411 hipError_t hipDriverGetVersion(int* driverVersion);
1426 hipError_t hipRuntimeGetVersion(int* runtimeVersion);
1434 hipError_t hipDeviceGet(hipDevice_t* device, int ordinal);
1435 
1444 hipError_t hipDeviceComputeCapability(int* major, int* minor, hipDevice_t device);
1453 hipError_t hipDeviceGetName(char* name, int len, hipDevice_t device);
1476  int srcDevice, int dstDevice);
1485 hipError_t hipDeviceGetPCIBusId(char* pciBusId, int len, int device);
1493 hipError_t hipDeviceGetByPCIBusId(int* device, const char* pciBusId);
1502 // doxygen end initialization
1565 hipError_t hipSetDevice(int deviceId);
1579 hipError_t hipGetDevice(int* deviceId);
1708 hipError_t hipDeviceGetLimit(size_t* pValue, enum hipLimit_t limit);
1721 hipError_t hipDeviceSetLimit ( enum hipLimit_t limit, size_t value );
1741 hipError_t hipGetDeviceFlags(unsigned int* flags);
1787 hipError_t hipChooseDevice(int* device, const hipDeviceProp_t* prop);
1800 hipError_t hipExtGetLinkTypeAndHopCount(int device1, int device2, uint32_t* linktype, uint32_t* hopcount);
1801 // TODO: implement IPC apis
1865 hipError_t hipIpcOpenMemHandle(void** devPtr, hipIpcMemHandle_t handle, unsigned int flags);
1885 
1901 
1918 
1919 // end doxygen Device
1943 hipError_t hipFuncSetAttribute(const void* func, hipFuncAttribute attr, int value);
1968 //doxygen end execution
2010 const char* hipGetErrorName(hipError_t hip_error);
2019 const char* hipGetErrorString(hipError_t hipError);
2029 hipError_t hipDrvGetErrorName(hipError_t hipError, const char** errorString);
2039 hipError_t hipDrvGetErrorString(hipError_t hipError, const char** errorString);
2040 // end doxygen Error
2087 hipError_t hipStreamCreateWithFlags(hipStream_t* stream, unsigned int flags);
2105 hipError_t hipStreamCreateWithPriority(hipStream_t* stream, unsigned int flags, int priority);
2119 hipError_t hipDeviceGetStreamPriorityRange(int* leastPriority, int* greatestPriority);
2193 hipError_t hipStreamWaitEvent(hipStream_t stream, hipEvent_t event, unsigned int flags);
2207 hipError_t hipStreamGetFlags(hipStream_t stream, unsigned int* flags);
2241 hipError_t hipExtStreamCreateWithCUMask(hipStream_t* stream, uint32_t cuMaskSize, const uint32_t* cuMask);
2254 hipError_t hipExtStreamGetCUMask(hipStream_t stream, uint32_t cuMaskSize, uint32_t* cuMask);
2258 typedef void (*hipStreamCallback_t)(hipStream_t stream, hipError_t status, void* userData);
2275  unsigned int flags);
2276 // end doxygen Stream
2319 hipError_t hipStreamWaitValue32(hipStream_t stream, void* ptr, uint32_t value, unsigned int flags,
2320  uint32_t mask __dparm(0xFFFFFFFF));
2353 hipError_t hipStreamWaitValue64(hipStream_t stream, void* ptr, uint64_t value, unsigned int flags,
2354  uint64_t mask __dparm(0xFFFFFFFFFFFFFFFF));
2374 hipError_t hipStreamWriteValue32(hipStream_t stream, void* ptr, uint32_t value, unsigned int flags);
2394 hipError_t hipStreamWriteValue64(hipStream_t stream, void* ptr, uint64_t value, unsigned int flags);
2395 // end doxygen Stream Memory Operations
2468 #ifdef __cplusplus
2469 hipError_t hipEventRecord(hipEvent_t event, hipStream_t stream = NULL);
2470 #else
2472 #endif
2553 // end doxygen Events
2585  hipDeviceptr_t ptr);
2586 
2587 
2617  hipDeviceptr_t ptr);
2634 hipError_t hipDrvPointerGetAttributes(unsigned int numAttributes, hipPointer_attribute* attributes,
2635  void** data, hipDeviceptr_t ptr);
2647  const hipExternalSemaphoreHandleDesc* semHandleDesc);
2661  const hipExternalSemaphoreSignalParams* paramsArray,
2662  unsigned int numExtSems, hipStream_t stream);
2676  const hipExternalSemaphoreWaitParams* paramsArray,
2677  unsigned int numExtSems, hipStream_t stream);
2688 
2735 hipError_t hipMalloc(void** ptr, size_t size);
2750 hipError_t hipExtMallocWithFlags(void** ptr, size_t sizeBytes, unsigned int flags);
2763 DEPRECATED("use hipHostMalloc instead")
2764 hipError_t hipMallocHost(void** ptr, size_t size);
2777 DEPRECATED("use hipHostMalloc instead")
2778 hipError_t hipMemAllocHost(void** ptr, size_t size);
2793 hipError_t hipHostMalloc(void** ptr, size_t size, unsigned int flags);
2814  size_t size,
2815  unsigned int flags __dparm(hipMemAttachGlobal));
2826 hipError_t hipMemPrefetchAsync(const void* dev_ptr,
2827  size_t count,
2828  int device,
2829  hipStream_t stream __dparm(0));
2840 hipError_t hipMemAdvise(const void* dev_ptr,
2841  size_t count,
2842  hipMemoryAdvise advice,
2843  int device);
2857  size_t data_size,
2858  hipMemRangeAttribute attribute,
2859  const void* dev_ptr,
2860  size_t count);
2876  size_t* data_sizes,
2877  hipMemRangeAttribute* attributes,
2878  size_t num_attributes,
2879  const void* dev_ptr,
2880  size_t count);
2894  void* dev_ptr,
2895  size_t length __dparm(0),
2896  unsigned int flags __dparm(hipMemAttachSingle));
2897 // end doxygen Managed Memory
2953 hipError_t hipMallocAsync(void** dev_ptr, size_t size, hipStream_t stream);
2976 hipError_t hipFreeAsync(void* dev_ptr, hipStream_t stream);
3002 hipError_t hipMemPoolTrimTo(hipMemPool_t mem_pool, size_t min_bytes_to_hold);
3092 hipError_t hipMemPoolSetAccess(hipMemPool_t mem_pool, const hipMemAccessDesc* desc_list, size_t count);
3189 hipError_t hipMallocFromPoolAsync(void** dev_ptr, size_t size, hipMemPool_t mem_pool, hipStream_t stream);
3215  void* shared_handle,
3216  hipMemPool_t mem_pool,
3217  hipMemAllocationHandleType handle_type,
3218  unsigned int flags);
3241  hipMemPool_t* mem_pool,
3242  void* shared_handle,
3243  hipMemAllocationHandleType handle_type,
3244  unsigned int flags);
3290  void** dev_ptr,
3291  hipMemPool_t mem_pool,
3292  hipMemPoolPtrExportData* export_data);
3293 // Doxygen end of ordered memory allocator
3311 DEPRECATED("use hipHostMalloc instead")
3312 hipError_t hipHostAlloc(void** ptr, size_t size, unsigned int flags);
3324 hipError_t hipHostGetDevicePointer(void** devPtr, void* hstPtr, unsigned int flags);
3334 hipError_t hipHostGetFlags(unsigned int* flagsPtr, void* hostPtr);
3371 hipError_t hipHostRegister(void* hostPtr, size_t sizeBytes, unsigned int flags);
3399 hipError_t hipMallocPitch(void** ptr, size_t* pitch, size_t width, size_t height);
3421 hipError_t hipMemAllocPitch(hipDeviceptr_t* dptr, size_t* pitch, size_t widthInBytes, size_t height, unsigned int elementSizeBytes);
3435 hipError_t hipFree(void* ptr);
3445 DEPRECATED("use hipHostFree instead")
3490 hipError_t hipMemcpy(void* dst, const void* src, size_t sizeBytes, hipMemcpyKind kind);
3491 // TODO: Add description
3492 hipError_t hipMemcpyWithStream(void* dst, const void* src, size_t sizeBytes,
3493  hipMemcpyKind kind, hipStream_t stream);
3511 hipError_t hipMemcpyHtoD(hipDeviceptr_t dst, void* src, size_t sizeBytes);
3529 hipError_t hipMemcpyDtoH(void* dst, hipDeviceptr_t src, size_t sizeBytes);
3565 hipError_t hipMemcpyHtoDAsync(hipDeviceptr_t dst, void* src, size_t sizeBytes, hipStream_t stream);
3583 hipError_t hipMemcpyDtoHAsync(void* dst, hipDeviceptr_t src, size_t sizeBytes, hipStream_t stream);
3602  hipStream_t stream);
3603 
3619  hipModule_t hmod, const char* name);
3620 
3630 hipError_t hipGetSymbolAddress(void** devPtr, const void* symbol);
3631 
3641 hipError_t hipGetSymbolSize(size_t* size, const void* symbol);
3642 
3661 hipError_t hipMemcpyToSymbol(const void* symbol, const void* src,
3662  size_t sizeBytes, size_t offset __dparm(0),
3664 
3678 hipError_t hipMemcpyToSymbolAsync(const void* symbol, const void* src,
3679  size_t sizeBytes, size_t offset,
3680  hipMemcpyKind kind, hipStream_t stream __dparm(0));
3681 
3694 hipError_t hipMemcpyFromSymbol(void* dst, const void* symbol,
3695  size_t sizeBytes, size_t offset __dparm(0),
3697 
3711 hipError_t hipMemcpyFromSymbolAsync(void* dst, const void* symbol,
3712  size_t sizeBytes, size_t offset,
3713  hipMemcpyKind kind,
3714  hipStream_t stream __dparm(0));
3743 hipError_t hipMemcpyAsync(void* dst, const void* src, size_t sizeBytes, hipMemcpyKind kind,
3744  hipStream_t stream __dparm(0));
3754 hipError_t hipMemset(void* dst, int value, size_t sizeBytes);
3764 hipError_t hipMemsetD8(hipDeviceptr_t dest, unsigned char value, size_t count);
3780 hipError_t hipMemsetD8Async(hipDeviceptr_t dest, unsigned char value, size_t count, hipStream_t stream __dparm(0));
3790 hipError_t hipMemsetD16(hipDeviceptr_t dest, unsigned short value, size_t count);
3806 hipError_t hipMemsetD16Async(hipDeviceptr_t dest, unsigned short value, size_t count, hipStream_t stream __dparm(0));
3816 hipError_t hipMemsetD32(hipDeviceptr_t dest, int value, size_t count);
3832 hipError_t hipMemsetAsync(void* dst, int value, size_t sizeBytes, hipStream_t stream __dparm(0));
3848 hipError_t hipMemsetD32Async(hipDeviceptr_t dst, int value, size_t count,
3849  hipStream_t stream __dparm(0));
3860 hipError_t hipMemset2D(void* dst, size_t pitch, int value, size_t width, size_t height);
3872 hipError_t hipMemset2DAsync(void* dst, size_t pitch, int value, size_t width, size_t height,hipStream_t stream __dparm(0));
3881 hipError_t hipMemset3D(hipPitchedPtr pitchedDevPtr, int value, hipExtent extent );
3891 hipError_t hipMemset3DAsync(hipPitchedPtr pitchedDevPtr, int value, hipExtent extent ,hipStream_t stream __dparm(0));
3908 hipError_t hipMemGetInfo(size_t* free, size_t* total);
3909 
3910 hipError_t hipMemPtrGetInfo(void* ptr, size_t* size);
3923 hipError_t hipMallocArray(hipArray** array, const hipChannelFormatDesc* desc, size_t width,
3924  size_t height __dparm(0), unsigned int flags __dparm(hipArrayDefault));
3925 hipError_t hipArrayCreate(hipArray** pHandle, const HIP_ARRAY_DESCRIPTOR* pAllocateArray);
3945 hipError_t hipFreeMipmappedArray(hipMipmappedArray_t mipmappedArray);
3958  struct hipExtent extent, unsigned int flags);
3971  hipMipmappedArray_t *mipmappedArray,
3972  const struct hipChannelFormatDesc* desc,
3973  struct hipExtent extent,
3974  unsigned int numLevels,
3975  unsigned int flags __dparm(0));
3986  hipArray_t *levelArray,
3987  hipMipmappedArray_const_t mipmappedArray,
3988  unsigned int level);
4005 hipError_t hipMemcpy2D(void* dst, size_t dpitch, const void* src, size_t spitch, size_t width,
4006  size_t height, hipMemcpyKind kind);
4045 hipError_t hipMemcpy2DAsync(void* dst, size_t dpitch, const void* src, size_t spitch, size_t width,
4046  size_t height, hipMemcpyKind kind, hipStream_t stream __dparm(0));
4064 hipError_t hipMemcpy2DToArray(hipArray* dst, size_t wOffset, size_t hOffset, const void* src,
4065  size_t spitch, size_t width, size_t height, hipMemcpyKind kind);
4084 hipError_t hipMemcpy2DToArrayAsync(hipArray* dst, size_t wOffset, size_t hOffset, const void* src,
4085  size_t spitch, size_t width, size_t height, hipMemcpyKind kind,
4086  hipStream_t stream __dparm(0));
4103 hipError_t hipMemcpyToArray(hipArray* dst, size_t wOffset, size_t hOffset, const void* src,
4104  size_t count, hipMemcpyKind kind);
4121 hipError_t hipMemcpyFromArray(void* dst, hipArray_const_t srcArray, size_t wOffset, size_t hOffset,
4122  size_t count, hipMemcpyKind kind);
4140 hipError_t hipMemcpy2DFromArray( void* dst, size_t dpitch, hipArray_const_t src, size_t wOffset, size_t hOffset, size_t width, size_t height, hipMemcpyKind kind);
4159 hipError_t hipMemcpy2DFromArrayAsync( void* dst, size_t dpitch, hipArray_const_t src, size_t wOffset, size_t hOffset, size_t width, size_t height, hipMemcpyKind kind, hipStream_t stream __dparm(0));
4173 hipError_t hipMemcpyAtoH(void* dst, hipArray* srcArray, size_t srcOffset, size_t count);
4187 hipError_t hipMemcpyHtoA(hipArray* dstArray, size_t dstOffset, const void* srcHost, size_t count);
4234 // doxygen end Memory
4262 hipError_t hipDeviceCanAccessPeer(int* canAccessPeer, int deviceId, int peerDeviceId);
4279 hipError_t hipDeviceEnablePeerAccess(int peerDeviceId, unsigned int flags);
4305 #ifndef USE_PEER_NON_UNIFIED
4306 #define USE_PEER_NON_UNIFIED 1
4307 #endif
4308 #if USE_PEER_NON_UNIFIED == 1
4320 hipError_t hipMemcpyPeer(void* dst, int dstDeviceId, const void* src, int srcDeviceId,
4321  size_t sizeBytes);
4334 hipError_t hipMemcpyPeerAsync(void* dst, int dstDeviceId, const void* src, int srcDevice,
4335  size_t sizeBytes, hipStream_t stream __dparm(0));
4336 #endif
4337 // doxygen end PeerToPeer
4368 hipError_t hipCtxCreate(hipCtx_t* ctx, unsigned int flags, hipDevice_t device);
4544 hipError_t hipCtxGetFlags(unsigned int* flags);
4565 hipError_t hipCtxEnablePeerAccess(hipCtx_t peerCtx, unsigned int flags);
4584 // doxygen end Context deprecated
4600 hipError_t hipDevicePrimaryCtxGetState(hipDevice_t dev, unsigned int* flags, int* active);
4649 // doxygen end Context Management
4673 hipError_t hipModuleLoad(hipModule_t* module, const char* fname);
4694 hipError_t hipModuleGetFunction(hipFunction_t* function, hipModule_t module, const char* kname);
4703 hipError_t hipFuncGetAttributes(struct hipFuncAttributes* attr, const void* func);
4723 hipError_t hipModuleGetTexRef(textureReference** texRef, hipModule_t hmod, const char* name);
4733 hipError_t hipModuleLoadData(hipModule_t* module, const void* image);
4746 hipError_t hipModuleLoadDataEx(hipModule_t* module, const void* image, unsigned int numOptions,
4747  hipJitOption* options, void** optionValues);
4776 hipError_t hipModuleLaunchKernel(hipFunction_t f, unsigned int gridDimX, unsigned int gridDimY,
4777  unsigned int gridDimZ, unsigned int blockDimX,
4778  unsigned int blockDimY, unsigned int blockDimZ,
4779  unsigned int sharedMemBytes, hipStream_t stream,
4780  void** kernelParams, void** extra);
4807  unsigned int gridDimY, unsigned int gridDimZ,
4808  unsigned int blockDimX, unsigned int blockDimY,
4809  unsigned int blockDimZ, unsigned int sharedMemBytes,
4810  hipStream_t stream, void** kernelParams);
4826  unsigned int numDevices,
4827  unsigned int flags);
4846 hipError_t hipLaunchCooperativeKernel(const void* f, dim3 gridDim, dim3 blockDimX,
4847  void** kernelParams, unsigned int sharedMemBytes,
4848  hipStream_t stream);
4860  int numDevices, unsigned int flags);
4873  int numDevices, unsigned int flags);
4874 // doxygen end Module
4899 //TODO - Match CUoccupancyB2DSize
4901  hipFunction_t f, size_t dynSharedMemPerBlk,
4902  int blockSizeLimit);
4918 //TODO - Match CUoccupancyB2DSize
4920  hipFunction_t f, size_t dynSharedMemPerBlk,
4921  int blockSizeLimit, unsigned int flags);
4931  int* numBlocks, hipFunction_t f, int blockSize, size_t dynSharedMemPerBlk);
4942  int* numBlocks, hipFunction_t f, int blockSize, size_t dynSharedMemPerBlk, unsigned int flags);
4952  int* numBlocks, const void* f, int blockSize, size_t dynSharedMemPerBlk);
4963  int* numBlocks, const void* f, int blockSize, size_t dynSharedMemPerBlk, unsigned int flags __dparm(hipOccupancyDefault));
4978 hipError_t hipOccupancyMaxPotentialBlockSize(int* gridSize, int* blockSize,
4979  const void* f, size_t dynSharedMemPerBlk,
4980  int blockSizeLimit);
4981 // doxygen end Occupancy
4995 // TODO - expand descriptions:
5001 DEPRECATED("use roctracer/rocTX instead")
5008 DEPRECATED("use roctracer/rocTX instead")
5010 // doxygen end profiler
5037 hipError_t hipConfigureCall(dim3 gridDim, dim3 blockDim, size_t sharedMem __dparm(0), hipStream_t stream __dparm(0));
5048 hipError_t hipSetupArgument(const void* arg, size_t size, size_t offset);
5057 hipError_t hipLaunchByPtr(const void* func);
5075  dim3 blockDim,
5076  size_t sharedMem __dparm(0),
5077  hipStream_t stream __dparm(0));
5098  dim3 *blockDim,
5099  size_t *sharedMem,
5100  hipStream_t *stream);
5116 hipError_t hipLaunchKernel(const void* function_address,
5117  dim3 numBlocks,
5118  dim3 dimBlocks,
5119  void** args,
5120  size_t sharedMemBytes __dparm(0),
5121  hipStream_t stream __dparm(0));
5122 
5135 
5144 //TODO: Move this to hip_ext.h
5165 hipError_t hipExtLaunchKernel(const void* function_address, dim3 numBlocks, dim3 dimBlocks,
5166  void** args, size_t sharedMemBytes, hipStream_t stream,
5167  hipEvent_t startEvent, hipEvent_t stopEvent, int flags);
5168 // doxygen end Clang launch
5191  const textureReference* tex,
5192  hipMipmappedArray_const_t mipmappedArray,
5193  const hipChannelFormatDesc* desc);
5194 
5210  hipTextureObject_t* pTexObject,
5211  const hipResourceDesc* pResDesc,
5212  const hipTextureDesc* pTexDesc,
5213  const struct hipResourceViewDesc* pResViewDesc);
5214 
5224 
5235  hipChannelFormatDesc* desc,
5236  hipArray_const_t array);
5237 
5248  hipResourceDesc* pResDesc,
5249  hipTextureObject_t textureObject);
5250 
5261  struct hipResourceViewDesc* pResViewDesc,
5262  hipTextureObject_t textureObject);
5263 
5274  hipTextureDesc* pTexDesc,
5275  hipTextureObject_t textureObject);
5276 
5289  hipTextureObject_t* pTexObject,
5290  const HIP_RESOURCE_DESC* pResDesc,
5291  const HIP_TEXTURE_DESC* pTexDesc,
5292  const HIP_RESOURCE_VIEW_DESC* pResViewDesc);
5293 
5303  hipTextureObject_t texObject);
5304 
5315  HIP_RESOURCE_DESC* pResDesc,
5316  hipTextureObject_t texObject);
5317 
5328  HIP_RESOURCE_VIEW_DESC* pResViewDesc,
5329  hipTextureObject_t texObject);
5330 
5341  HIP_TEXTURE_DESC* pTexDesc,
5342  hipTextureObject_t texObject);
5343 
5362  const textureReference** texref,
5363  const void* symbol);
5364 
5367  textureReference* texRef,
5368  int dim,
5369  enum hipTextureAddressMode am);
5372  textureReference* tex,
5373  hipArray_const_t array,
5374  unsigned int flags);
5377  textureReference* texRef,
5378  enum hipTextureFilterMode fm);
5381  textureReference* texRef,
5382  unsigned int Flags);
5385  textureReference* texRef,
5386  hipArray_Format fmt,
5387  int NumPackedComponents);
5390  size_t* offset,
5391  const textureReference* tex,
5392  const void* devPtr,
5393  const hipChannelFormatDesc* desc,
5394  size_t size __dparm(UINT_MAX));
5397  size_t* offset,
5398  const textureReference* tex,
5399  const void* devPtr,
5400  const hipChannelFormatDesc* desc,
5401  size_t width,
5402  size_t height,
5403  size_t pitch);
5406  const textureReference* tex,
5407  hipArray_const_t array,
5408  const hipChannelFormatDesc* desc);
5411  size_t* offset,
5412  const textureReference* texref);
5417  hipDeviceptr_t* dev_ptr,
5418  const textureReference* texRef);
5421  enum hipTextureAddressMode* pam,
5422  const textureReference* texRef,
5423  int dim);
5426  enum hipTextureFilterMode* pfm,
5427  const textureReference* texRef);
5430  unsigned int* pFlags,
5431  const textureReference* texRef);
5434  hipArray_Format* pFormat,
5435  int* pNumChannels,
5436  const textureReference* texRef);
5439  int* pmaxAnsio,
5440  const textureReference* texRef);
5443  enum hipTextureFilterMode* pfm,
5444  const textureReference* texRef);
5447  float* pbias,
5448  const textureReference* texRef);
5451  float* pminMipmapLevelClamp,
5452  float* pmaxMipmapLevelClamp,
5453  const textureReference* texRef);
5456  hipMipmappedArray_t* pArray,
5457  const textureReference* texRef);
5460  size_t* ByteOffset,
5461  textureReference* texRef,
5462  hipDeviceptr_t dptr,
5463  size_t bytes);
5466  textureReference* texRef,
5467  const HIP_ARRAY_DESCRIPTOR* desc,
5468  hipDeviceptr_t dptr,
5469  size_t Pitch);
5472  textureReference* texRef,
5473  unsigned int maxAniso);
5476  textureReference* texRef,
5477  float* pBorderColor);
5480  textureReference* texRef,
5481  enum hipTextureFilterMode fm);
5484  textureReference* texRef,
5485  float bias);
5488  textureReference* texRef,
5489  float minMipMapLevelClamp,
5490  float maxMipMapLevelClamp);
5493  textureReference* texRef,
5494  struct hipMipmappedArray* mipmappedArray,
5495  unsigned int Flags);
5496 
5497 // doxygen end deprecated texture management
5502 // The following are not supported.
5512  hipMipmappedArray_t* pHandle,
5513  HIP_ARRAY3D_DESCRIPTOR* pMipmappedArrayDesc,
5514  unsigned int numMipmapLevels);
5516  hipMipmappedArray_t hMipmappedArray);
5518  hipArray_t* pLevelArray,
5519  hipMipmappedArray_t hMipMappedArray,
5520  unsigned int level);
5521 // doxygen end unsuppported texture management
5526 // doxygen end Texture management
5538 // This group is for HIPrtc
5539 
5540 // doxygen end Runtime
5551 const char* hipApiName(uint32_t id);
5552 const char* hipKernelNameRef(const hipFunction_t f);
5553 const char* hipKernelNameRefByPtr(const void* hostFunction, hipStream_t stream);
5555 
5556 // doxygen end Callback
5582 
5596 
5611  unsigned long long* pId);
5612 
5630  unsigned long long* id_out __dparm(0),
5631  hipGraph_t* graph_out __dparm(0),
5632  const hipGraphNode_t** dependencies_out __dparm(0),
5633  size_t* numDependencies_out __dparm(0));
5634 
5648 
5662  size_t numDependencies,
5663  unsigned int flags __dparm(0));
5664 
5676 
5689 hipError_t hipGraphCreate(hipGraph_t* pGraph, unsigned int flags);
5690 
5703 
5718  const hipGraphNode_t* to, size_t numDependencies);
5719 
5734  const hipGraphNode_t* to, size_t numDependencies);
5735 
5754  size_t* numEdges);
5755 
5772 hipError_t hipGraphGetNodes(hipGraph_t graph, hipGraphNode_t* nodes, size_t* numNodes);
5773 
5791  size_t* pNumRootNodes);
5792 
5810  size_t* pNumDependencies);
5811 
5830  size_t* pNumDependentNodes);
5831 
5844 
5856 
5868 hipError_t hipGraphClone(hipGraph_t* pGraphClone, hipGraph_t originalGraph);
5869 
5883  hipGraph_t clonedGraph);
5884 
5902  hipGraphNode_t* pErrorNode, char* pLogBuffer, size_t bufferSize);
5903 
5917  unsigned long long flags);
5918 
5930 
5942 
5954 
5955 // Check whether an executable graph can be updated with a graph and perform the update if possible.
5970  hipGraphNode_t* hErrorNode_out,
5971  hipGraphExecUpdateResult* updateResult_out);
5972 
5986  const hipGraphNode_t* pDependencies, size_t numDependencies,
5987  const hipKernelNodeParams* pNodeParams);
5988 
5999 
6010 
6022  const hipKernelNodeParams* pNodeParams);
6023 
6037  const hipGraphNode_t* pDependencies, size_t numDependencies,
6038  const hipMemcpy3DParms* pCopyParams);
6049 
6060 
6072  const hipKernelNodeAttrValue* value);
6084  hipKernelNodeAttrValue* value);
6096  hipMemcpy3DParms* pNodeParams);
6097 
6114  const hipGraphNode_t* pDependencies, size_t numDependencies,
6115  void* dst, const void* src, size_t count, hipMemcpyKind kind);
6116 
6130  size_t count, hipMemcpyKind kind);
6131 
6147  void* dst, const void* src, size_t count,
6148  hipMemcpyKind kind);
6149 
6167  const hipGraphNode_t* pDependencies,
6168  size_t numDependencies, void* dst, const void* symbol,
6169  size_t count, size_t offset, hipMemcpyKind kind);
6170 
6185  size_t count, size_t offset, hipMemcpyKind kind);
6186 
6203  void* dst, const void* symbol, size_t count,
6204  size_t offset, hipMemcpyKind kind);
6205 
6223  const hipGraphNode_t* pDependencies,
6224  size_t numDependencies, const void* symbol,
6225  const void* src, size_t count, size_t offset,
6226  hipMemcpyKind kind);
6227 
6242  const void* src, size_t count, size_t offset,
6243  hipMemcpyKind kind);
6244 
6245 
6261  const void* symbol, const void* src,
6262  size_t count, size_t offset, hipMemcpyKind kind);
6263 
6277  const hipGraphNode_t* pDependencies, size_t numDependencies,
6278  const hipMemsetParams* pMemsetParams);
6279 
6290 
6301 
6313  const hipMemsetParams* pNodeParams);
6314 
6328  const hipGraphNode_t* pDependencies, size_t numDependencies,
6329  const hipHostNodeParams* pNodeParams);
6330 
6341 
6352 
6364  const hipHostNodeParams* pNodeParams);
6365 
6379  const hipGraphNode_t* pDependencies, size_t numDependencies,
6380  hipGraph_t childGraph);
6381 
6392 
6404  hipGraph_t childGraph);
6405 
6418  const hipGraphNode_t* pDependencies, size_t numDependencies);
6419 
6420 
6434  const hipGraphNode_t* pDependencies, size_t numDependencies,
6435  hipEvent_t event);
6436 
6447 
6458 
6470  hipEvent_t event);
6471 
6485  const hipGraphNode_t* pDependencies, size_t numDependencies,
6486  hipEvent_t event);
6487 
6488 
6499 
6510 
6522  hipEvent_t event);
6523 
6537  const hipGraphNode_t* pDependencies, size_t numDependencies, hipMemAllocNodeParams* pNodeParams);
6538 
6549 
6563  const hipGraphNode_t* pDependencies, size_t numDependencies, void* dev_ptr);
6564 
6575 
6587 
6599 
6608 
6622  unsigned int initialRefcount, unsigned int flags);
6623 
6634 
6645 
6658  unsigned int count __dparm(1), unsigned int flags __dparm(0));
6659 
6671  unsigned int count __dparm(1));
6672 
6683 hipError_t hipGraphDebugDotPrint(hipGraph_t graph, const char* path, unsigned int flags);
6684 
6700 
6724  unsigned int isEnabled);
6746  unsigned int* isEnabled);
6747 
6748 // doxygen end graph API
6771 hipError_t hipMemAddressFree(void* devPtr, size_t size);
6772 
6785 hipError_t hipMemAddressReserve(void** ptr, size_t size, size_t alignment, void* addr, unsigned long long flags);
6786 
6798 hipError_t hipMemCreate(hipMemGenericAllocationHandle_t* handle, size_t size, const hipMemAllocationProp* prop, unsigned long long flags);
6799 
6811 hipError_t hipMemExportToShareableHandle(void* shareableHandle, hipMemGenericAllocationHandle_t handle, hipMemAllocationHandleType handleType, unsigned long long flags);
6812 
6823 hipError_t hipMemGetAccess(unsigned long long* flags, const hipMemLocation* location, void* ptr);
6824 
6836 
6847 
6859 
6872 hipError_t hipMemMap(void* ptr, size_t size, size_t offset, hipMemGenericAllocationHandle_t handle, unsigned long long flags);
6873 
6884 hipError_t hipMemMapArrayAsync(hipArrayMapInfo* mapInfoList, unsigned int count, hipStream_t stream);
6885 
6895 
6906 
6918 hipError_t hipMemSetAccess(void* ptr, size_t size, const hipMemAccessDesc* desc, size_t count);
6919 
6929 hipError_t hipMemUnmap(void* ptr, size_t size);
6930 
6931 // doxygen end virtual memory management API
6943 typedef unsigned int GLuint;
6944 typedef unsigned int GLenum;
6945 
6946 // Queries devices associated with GL Context.
6947 hipError_t hipGLGetDevices(unsigned int* pHipDeviceCount, int* pHipDevices,
6948  unsigned int hipDeviceCount, hipGLDeviceList deviceList);
6949 // Registers a GL Buffer for interop and returns corresponding graphics resource.
6951  unsigned int flags);
6952 // Register a GL Image for interop and returns the corresponding graphic resource
6954  GLenum target, unsigned int flags);
6955 // Maps a graphics resource for hip access.
6957  hipStream_t stream __dparm(0) );
6958 // Get an array through which to access a subresource of a mapped graphics resource.
6960  unsigned int arrayIndex, unsigned int mipLevel);
6961 // Gets device accessible address of a graphics resource.
6963  hipGraphicsResource_t resource);
6964 // Unmaps a graphics resource for hip access.
6966  hipStream_t stream __dparm(0));
6967 // Unregisters a graphics resource.
6969 // doxygen end GL Interop
6975 #ifdef __cplusplus
6976 } /* extern "c" */
6977 #endif
6978 #ifdef __cplusplus
6979 #if defined(__clang__) && defined(__HIP__)
6980 template <typename T>
6981 static hipError_t __host__ inline hipOccupancyMaxPotentialBlockSize(int* gridSize, int* blockSize,
6982  T f, size_t dynSharedMemPerBlk = 0, int blockSizeLimit = 0) {
6983  return hipOccupancyMaxPotentialBlockSize(gridSize, blockSize, reinterpret_cast<const void*>(f),dynSharedMemPerBlk,blockSizeLimit);
6984 }
6985 template <typename T>
6986 static hipError_t __host__ inline hipOccupancyMaxPotentialBlockSizeWithFlags(int* gridSize, int* blockSize,
6987  T f, size_t dynSharedMemPerBlk = 0, int blockSizeLimit = 0, unsigned int flags = 0 ) {
6988  return hipOccupancyMaxPotentialBlockSize(gridSize, blockSize, reinterpret_cast<const void*>(f),dynSharedMemPerBlk,blockSizeLimit);
6989 }
6990 #endif // defined(__clang__) && defined(__HIP__)
6991 template <typename T>
6992 hipError_t hipGetSymbolAddress(void** devPtr, const T &symbol) {
6993  return ::hipGetSymbolAddress(devPtr, (const void *)&symbol);
6994 }
6995 template <typename T>
6996 hipError_t hipGetSymbolSize(size_t* size, const T &symbol) {
6997  return ::hipGetSymbolSize(size, (const void *)&symbol);
6998 }
6999 template <typename T>
7000 hipError_t hipMemcpyToSymbol(const T& symbol, const void* src, size_t sizeBytes,
7001  size_t offset __dparm(0),
7003  return ::hipMemcpyToSymbol((const void*)&symbol, src, sizeBytes, offset, kind);
7004 }
7005 template <typename T>
7006 hipError_t hipMemcpyToSymbolAsync(const T& symbol, const void* src, size_t sizeBytes, size_t offset,
7007  hipMemcpyKind kind, hipStream_t stream __dparm(0)) {
7008  return ::hipMemcpyToSymbolAsync((const void*)&symbol, src, sizeBytes, offset, kind, stream);
7009 }
7010 template <typename T>
7011 hipError_t hipMemcpyFromSymbol(void* dst, const T &symbol,
7012  size_t sizeBytes, size_t offset __dparm(0),
7014  return ::hipMemcpyFromSymbol(dst, (const void*)&symbol, sizeBytes, offset, kind);
7015 }
7016 template <typename T>
7017 hipError_t hipMemcpyFromSymbolAsync(void* dst, const T& symbol, size_t sizeBytes, size_t offset,
7018  hipMemcpyKind kind, hipStream_t stream __dparm(0)) {
7019  return ::hipMemcpyFromSymbolAsync(dst, (const void*)&symbol, sizeBytes, offset, kind, stream);
7020 }
7021 template <class T>
7023  int* numBlocks, T f, int blockSize, size_t dynSharedMemPerBlk) {
7025  numBlocks, reinterpret_cast<const void*>(f), blockSize, dynSharedMemPerBlk);
7026 }
7027 template <class T>
7029  int* numBlocks, T f, int blockSize, size_t dynSharedMemPerBlk, unsigned int flags) {
7031  numBlocks, reinterpret_cast<const void*>(f), blockSize, dynSharedMemPerBlk, flags);
7032 }
7052 template<typename UnaryFunction, class T>
7053 static hipError_t __host__ inline hipOccupancyMaxPotentialBlockSizeVariableSMemWithFlags(
7054  int* min_grid_size,
7055  int* block_size,
7056  T func,
7057  UnaryFunction block_size_to_dynamic_smem_size,
7058  int block_size_limit = 0,
7059  unsigned int flags = 0) {
7060  if (min_grid_size == nullptr || block_size == nullptr ||
7061  reinterpret_cast<const void*>(func) == nullptr) {
7062  return hipErrorInvalidValue;
7063  }
7064 
7065  int dev;
7066  hipError_t status;
7067  if ((status = hipGetDevice(&dev)) != hipSuccess) {
7068  return status;
7069  }
7070 
7071  int max_threads_per_cu;
7072  if ((status = hipDeviceGetAttribute(&max_threads_per_cu,
7074  return status;
7075  }
7076 
7077  int warp_size;
7078  if ((status = hipDeviceGetAttribute(&warp_size,
7080  return status;
7081  }
7082 
7083  int max_cu_count;
7084  if ((status = hipDeviceGetAttribute(&max_cu_count,
7086  return status;
7087  }
7088 
7089  struct hipFuncAttributes attr;
7090  if ((status = hipFuncGetAttributes(&attr, reinterpret_cast<const void*>(func))) != hipSuccess) {
7091  return status;
7092  }
7093 
7094  // Initial limits for the execution
7095  const int func_max_threads_per_block = attr.maxThreadsPerBlock;
7096  if (block_size_limit == 0) {
7097  block_size_limit = func_max_threads_per_block;
7098  }
7099 
7100  if (func_max_threads_per_block < block_size_limit) {
7101  block_size_limit = func_max_threads_per_block;
7102  }
7103 
7104  const int block_size_limit_aligned =
7105  ((block_size_limit + (warp_size - 1)) / warp_size) * warp_size;
7106 
7107  // For maximum search
7108  int max_threads = 0;
7109  int max_block_size{};
7110  int max_num_blocks{};
7111  for (int block_size_check_aligned = block_size_limit_aligned;
7112  block_size_check_aligned > 0;
7113  block_size_check_aligned -= warp_size) {
7114  // Make sure the logic uses the requested limit and not aligned
7115  int block_size_check = (block_size_limit < block_size_check_aligned) ?
7116  block_size_limit : block_size_check_aligned;
7117 
7118  size_t dyn_smem_size = block_size_to_dynamic_smem_size(block_size_check);
7119  int optimal_blocks;
7121  &optimal_blocks, func, block_size_check, dyn_smem_size, flags)) != hipSuccess) {
7122  return status;
7123  }
7124 
7125  int total_threads = block_size_check * optimal_blocks;
7126  if (total_threads > max_threads) {
7127  max_block_size = block_size_check;
7128  max_num_blocks = optimal_blocks;
7129  max_threads = total_threads;
7130  }
7131 
7132  // Break if the logic reached possible maximum
7133  if (max_threads_per_cu == max_threads) {
7134  break;
7135  }
7136  }
7137 
7138  // Grid size is the number of blocks per CU * CU count
7139  *min_grid_size = max_num_blocks * max_cu_count;
7140  *block_size = max_block_size;
7141 
7142  return status;
7143 }
7144 
7163 template<typename UnaryFunction, class T>
7164 static hipError_t __host__ inline hipOccupancyMaxPotentialBlockSizeVariableSMem(
7165  int* min_grid_size,
7166  int* block_size,
7167  T func,
7168  UnaryFunction block_size_to_dynamic_smem_size,
7169  int block_size_limit = 0)
7170 {
7171  return hipOccupancyMaxPotentialBlockSizeVariableSMemWithFlags(min_grid_size, block_size, func,
7172  block_size_to_dynamic_smem_size, block_size_limit);
7173 }
7174 
7175 template <typename F>
7176 inline hipError_t hipOccupancyMaxPotentialBlockSize(int* gridSize, int* blockSize,
7177  F kernel, size_t dynSharedMemPerBlk, uint32_t blockSizeLimit) {
7178 return hipOccupancyMaxPotentialBlockSize(gridSize, blockSize,(hipFunction_t)kernel, dynSharedMemPerBlk, blockSizeLimit);
7179 }
7180 template <class T>
7181 inline hipError_t hipLaunchCooperativeKernel(T f, dim3 gridDim, dim3 blockDim,
7182  void** kernelParams, unsigned int sharedMemBytes, hipStream_t stream) {
7183  return hipLaunchCooperativeKernel(reinterpret_cast<const void*>(f), gridDim,
7184  blockDim, kernelParams, sharedMemBytes, stream);
7185 }
7186 template <class T>
7188  unsigned int numDevices, unsigned int flags = 0) {
7189  return hipLaunchCooperativeKernelMultiDevice(launchParamsList, numDevices, flags);
7190 }
7191 template <class T>
7193  unsigned int numDevices, unsigned int flags = 0) {
7194  return hipExtLaunchMultiKernelMultiDevice(launchParamsList, numDevices, flags);
7195 }
7196 hipError_t hipCreateSurfaceObject(hipSurfaceObject_t* pSurfObject, const hipResourceDesc* pResDesc);
7197 hipError_t hipDestroySurfaceObject(hipSurfaceObject_t surfaceObject);
7198 template <class T, int dim, enum hipTextureReadMode readMode>
7200 static inline hipError_t hipBindTexture(size_t* offset, const struct texture<T, dim, readMode>& tex,
7201  const void* devPtr, size_t size = UINT_MAX) {
7202  return hipBindTexture(offset, &tex, devPtr, &tex.channelDesc, size);
7203 }
7204 template <class T, int dim, enum hipTextureReadMode readMode>
7206 static inline hipError_t
7207  hipBindTexture(size_t* offset, const struct texture<T, dim, readMode>& tex, const void* devPtr,
7208  const struct hipChannelFormatDesc& desc, size_t size = UINT_MAX) {
7209  return hipBindTexture(offset, &tex, devPtr, &desc, size);
7210 }
7211 template<class T, int dim, enum hipTextureReadMode readMode>
7213 static inline hipError_t hipBindTexture2D(
7214  size_t *offset,
7215  const struct texture<T, dim, readMode> &tex,
7216  const void *devPtr,
7217  size_t width,
7218  size_t height,
7219  size_t pitch)
7220 {
7221  return hipBindTexture2D(offset, &tex, devPtr, &tex.channelDesc, width, height, pitch);
7222 }
7223 template<class T, int dim, enum hipTextureReadMode readMode>
7225 static inline hipError_t hipBindTexture2D(
7226  size_t *offset,
7227  const struct texture<T, dim, readMode> &tex,
7228  const void *devPtr,
7229  const struct hipChannelFormatDesc &desc,
7230  size_t width,
7231  size_t height,
7232  size_t pitch)
7233 {
7234  return hipBindTexture2D(offset, &tex, devPtr, &desc, width, height, pitch);
7235 }
7236 template<class T, int dim, enum hipTextureReadMode readMode>
7238 static inline hipError_t hipBindTextureToArray(
7239  const struct texture<T, dim, readMode> &tex,
7240  hipArray_const_t array)
7241 {
7242  struct hipChannelFormatDesc desc;
7243  hipError_t err = hipGetChannelDesc(&desc, array);
7244  return (err == hipSuccess) ? hipBindTextureToArray(&tex, array, &desc) : err;
7245 }
7246 template<class T, int dim, enum hipTextureReadMode readMode>
7248 static inline hipError_t hipBindTextureToArray(
7249  const struct texture<T, dim, readMode> &tex,
7250  hipArray_const_t array,
7251  const struct hipChannelFormatDesc &desc)
7252 {
7253  return hipBindTextureToArray(&tex, array, &desc);
7254 }
7255 template<class T, int dim, enum hipTextureReadMode readMode>
7257  const struct texture<T, dim, readMode> &tex,
7258  hipMipmappedArray_const_t mipmappedArray)
7259 {
7260  struct hipChannelFormatDesc desc;
7261  hipArray_t levelArray;
7262  hipError_t err = hipGetMipmappedArrayLevel(&levelArray, mipmappedArray, 0);
7263  if (err != hipSuccess) {
7264  return err;
7265  }
7266  err = hipGetChannelDesc(&desc, levelArray);
7267  return (err == hipSuccess) ? hipBindTextureToMipmappedArray(&tex, mipmappedArray, &desc) : err;
7268 }
7269 template<class T, int dim, enum hipTextureReadMode readMode>
7271  const struct texture<T, dim, readMode> &tex,
7272  hipMipmappedArray_const_t mipmappedArray,
7273  const struct hipChannelFormatDesc &desc)
7274 {
7275  return hipBindTextureToMipmappedArray(&tex, mipmappedArray, &desc);
7276 }
7277 template<class T, int dim, enum hipTextureReadMode readMode>
7279 static inline hipError_t hipUnbindTexture(
7280  const struct texture<T, dim, readMode> &tex)
7281 {
7282  return hipUnbindTexture(&tex);
7283 }
7291 static inline hipError_t hipMallocAsync(
7292  void** dev_ptr,
7293  size_t size,
7294  hipMemPool_t mem_pool,
7295  hipStream_t stream) {
7296  return hipMallocFromPoolAsync(dev_ptr, size, mem_pool, stream);
7297 }
7298 
7299 template<class T>
7300 static inline hipError_t hipMallocAsync(
7301  T** dev_ptr,
7302  size_t size,
7303  hipMemPool_t mem_pool,
7304  hipStream_t stream) {
7305  return hipMallocFromPoolAsync(reinterpret_cast<void**>(dev_ptr), size, mem_pool, stream);
7306 }
7307 
7308 template<class T>
7309 static inline hipError_t hipMallocAsync(
7310  T** dev_ptr,
7311  size_t size,
7312  hipStream_t stream) {
7313  return hipMallocAsync(reinterpret_cast<void**>(dev_ptr), size, stream);
7314 }
7315 
7316 template<class T>
7317 static inline hipError_t hipMallocFromPoolAsync(
7318  T** dev_ptr,
7319  size_t size,
7320  hipMemPool_t mem_pool,
7321  hipStream_t stream) {
7322  return hipMallocFromPoolAsync(reinterpret_cast<void**>(dev_ptr), size, mem_pool, stream);
7323 }
7324 #endif // __cplusplus
7325 
7326 #ifdef __GNUC__
7327 #pragma GCC visibility pop
7328 #endif
7329 // doxygen end HIP API
7334 #elif !(defined(__HIP_PLATFORM_HCC__) || defined(__HIP_PLATFORM_AMD__)) && (defined(__HIP_PLATFORM_NVCC__) || defined(__HIP_PLATFORM_NVIDIA__))
7335 #include "hip/nvidia_detail/nvidia_hip_runtime_api.h"
7336 #else
7337 #error("Must define exactly one of __HIP_PLATFORM_AMD__ or __HIP_PLATFORM_NVIDIA__");
7338 #endif
7339 
7340 
7352 #if defined(__cplusplus) && !defined(__HIP_DISABLE_CPP_FUNCTIONS__)
7353 template <class T>
7354 static inline hipError_t hipMalloc(T** devPtr, size_t size) {
7355  return hipMalloc((void**)devPtr, size);
7356 }
7357 
7358 // Provide an override to automatically typecast the pointer type from void**, and also provide a
7359 // default for the flags.
7360 template <class T>
7361 static inline hipError_t hipHostMalloc(T** ptr, size_t size,
7362  unsigned int flags = hipHostMallocDefault) {
7363  return hipHostMalloc((void**)ptr, size, flags);
7364 }
7365 
7366 template <class T>
7367 static inline hipError_t hipMallocManaged(T** devPtr, size_t size,
7368  unsigned int flags = hipMemAttachGlobal) {
7369  return hipMallocManaged((void**)devPtr, size, flags);
7370 }
7371 
7372 #endif
7373 #endif
7374 
7375 #include <hip/amd_detail/amd_hip_runtime_pt_api.h>
7376 
7377 #if USE_PROF_API
7378 #include <hip/amd_detail/hip_prof_str.h>
7379 #endif
hipMemcpyKind
Definition: driver_types.h:344
@ hipMemcpyDeviceToHost
Device-to-Host Copy.
Definition: driver_types.h:347
@ hipMemcpyHostToDevice
Host-to-Device Copy.
Definition: driver_types.h:346
hipPointer_attribute
Definition: driver_types.h:441
void * hipDeviceptr_t
Definition: driver_types.h:40
hipFunction_attribute
Definition: driver_types.h:427
hipArray_Format
Definition: driver_types.h:58
hipResourceType
Definition: driver_types.h:134
const char * hipKernelNameRef(const hipFunction_t f)
const char * hipKernelNameRefByPtr(const void *hostFunction, hipStream_t stream)
const char * hipApiName(uint32_t id)
int hipGetStreamDeviceId(hipStream_t stream)
hipError_t hipSetupArgument(const void *arg, size_t size, size_t offset)
Set a kernel argument.
hipError_t __hipPopCallConfiguration(dim3 *gridDim, dim3 *blockDim, size_t *sharedMem, hipStream_t *stream)
Pop configuration of a kernel launch.
hipError_t __hipPushCallConfiguration(dim3 gridDim, dim3 blockDim, size_t sharedMem __dparm(0), hipStream_t stream __dparm(0))
Push configuration of a kernel launch.
hipError_t hipLaunchHostFunc(hipStream_t stream, hipHostFn_t fn, void *userData)
Enqueues a host function call in a stream.
hipError_t hipExtLaunchKernel(const void *function_address, dim3 numBlocks, dim3 dimBlocks, void **args, size_t sharedMemBytes, hipStream_t stream, hipEvent_t startEvent, hipEvent_t stopEvent, int flags)
Launches kernel from the pointer address, with arguments and shared memory on stream.
hipError_t hipConfigureCall(dim3 gridDim, dim3 blockDim, size_t sharedMem __dparm(0), hipStream_t stream __dparm(0))
Configure a kernel launch.
hipError_t hipLaunchByPtr(const void *func)
Launch a kernel.
hipError_t hipLaunchKernel(const void *function_address, dim3 numBlocks, dim3 dimBlocks, void **args, size_t sharedMemBytes __dparm(0), hipStream_t stream __dparm(0))
C compliant kernel launch API.
hipError_t hipDrvMemcpy2DUnaligned(const hip_Memcpy2D *pCopy)
hipError_t hipCtxGetFlags(unsigned int *flags)
Return flags used for creating default context.
hipError_t hipCtxPopCurrent(hipCtx_t *ctx)
Pop the current/default context and return the popped context.
hipError_t hipCtxGetSharedMemConfig(hipSharedMemConfig *pConfig)
Get Shared memory bank configuration.
hipError_t hipCtxGetCurrent(hipCtx_t *ctx)
Get the handle of the current/ default context.
hipError_t hipCtxSetCacheConfig(hipFuncCache_t cacheConfig)
Set L1/Shared cache partition.
hipError_t hipCtxSetCurrent(hipCtx_t ctx)
Set the passed context as current/default.
hipError_t hipCtxEnablePeerAccess(hipCtx_t peerCtx, unsigned int flags)
Enables direct access to memory allocations in a peer context.
hipError_t hipCtxGetDevice(hipDevice_t *device)
Get the handle of the device associated with current/default context.
hipError_t hipCtxDestroy(hipCtx_t ctx)
Destroy a HIP context.
hipError_t hipCtxPushCurrent(hipCtx_t ctx)
Push the context to be set as current/ default context.
hipError_t hipCtxGetCacheConfig(hipFuncCache_t *cacheConfig)
Set Cache configuration for a specific function.
hipError_t hipCtxCreate(hipCtx_t *ctx, unsigned int flags, hipDevice_t device)
Create a context and set it as current/ default context.
hipError_t hipCtxGetApiVersion(hipCtx_t ctx, int *apiVersion)
Returns the approximate HIP api version.
hipError_t hipCtxSynchronize(void)
Blocks until the default context has completed all preceding requested tasks.
hipError_t hipCtxSetSharedMemConfig(hipSharedMemConfig config)
Set Shared memory bank configuration.
hipError_t hipCtxDisablePeerAccess(hipCtx_t peerCtx)
Disable direct access from current context's virtual address space to memory allocations physically l...
hipError_t hipDevicePrimaryCtxSetFlags(hipDevice_t dev, unsigned int flags)
Set flags for the primary context.
hipError_t hipDevicePrimaryCtxGetState(hipDevice_t dev, unsigned int *flags, int *active)
Get the state of the primary context.
hipError_t hipDevicePrimaryCtxRelease(hipDevice_t dev)
Release the primary context on the GPU.
hipError_t hipDevicePrimaryCtxRetain(hipCtx_t *pctx, hipDevice_t dev)
Retain the primary context on the GPU.
hipError_t hipDevicePrimaryCtxReset(hipDevice_t dev)
Resets the primary context on the GPU.
hipError_t hipGetDeviceFlags(unsigned int *flags)
Gets the flags set for current device.
hipError_t hipIpcGetEventHandle(hipIpcEventHandle_t *handle, hipEvent_t event)
Gets an opaque interprocess handle for an event.
hipError_t hipDeviceGetDefaultMemPool(hipMemPool_t *mem_pool, int device)
Returns the default memory pool of the specified device.
hipError_t hipDeviceGetSharedMemConfig(hipSharedMemConfig *pConfig)
Returns bank width of shared memory for current device.
hipError_t hipDeviceSetMemPool(int device, hipMemPool_t mem_pool)
Sets the current memory pool of a device.
hipError_t hipIpcOpenMemHandle(void **devPtr, hipIpcMemHandle_t handle, unsigned int flags)
Opens an interprocess memory handle exported from another process and returns a device pointer usable...
hipError_t hipGetDeviceProperties(hipDeviceProp_t *prop, int deviceId)
Returns device properties.
hipError_t hipDeviceGetCacheConfig(hipFuncCache_t *cacheConfig)
Get Cache configuration for a specific Device.
hipError_t hipSetDevice(int deviceId)
Set default device to be used for subsequent hip API calls from this thread.
hipError_t hipExtGetLinkTypeAndHopCount(int device1, int device2, uint32_t *linktype, uint32_t *hopcount)
Returns the link type and hop count between two devices.
hipError_t hipSetDeviceFlags(unsigned flags)
The current device behavior is changed according the flags passed.
hipError_t hipDeviceGetAttribute(int *pi, hipDeviceAttribute_t attr, int deviceId)
Query for a specific device attribute.
hipError_t hipGetDevice(int *deviceId)
Return the default device id for the calling host thread.
hipError_t hipGetDeviceCount(int *count)
Return number of compute-capable devices.
hipError_t hipDeviceGetMemPool(hipMemPool_t *mem_pool, int device)
Gets the current memory pool for the specified device.
hipError_t hipDeviceReset(void)
The state of current device is discarded and updated to a fresh state.
hipError_t hipDeviceGetLimit(size_t *pValue, enum hipLimit_t limit)
Gets resource limits of current device The funtion querys the size of limit value,...
hipError_t hipDeviceSetSharedMemConfig(hipSharedMemConfig config)
The bank width of shared memory on current device is set.
hipError_t hipDeviceSetLimit(enum hipLimit_t limit, size_t value)
Sets resource limits of current device As the input enum limit, hipLimitStackSize sets the limit valu...
hipError_t hipDeviceSetCacheConfig(hipFuncCache_t cacheConfig)
Set L1/Shared cache partition.
hipError_t hipIpcCloseMemHandle(void *devPtr)
Close memory mapped with hipIpcOpenMemHandle.
hipError_t hipIpcOpenEventHandle(hipEvent_t *event, hipIpcEventHandle_t handle)
Opens an interprocess event handles.
hipError_t hipDeviceSynchronize(void)
Waits on all active streams on current device.
hipError_t hipChooseDevice(int *device, const hipDeviceProp_t *prop)
Device which matches hipDeviceProp_t is returned.
hipError_t hipIpcGetMemHandle(hipIpcMemHandle_t *handle, void *devPtr)
Gets an interprocess memory handle for an existing device memory allocation.
hipError_t hipInit(unsigned int flags)
Explicitly initializes the HIP runtime.
hipError_t hipDeviceComputeCapability(int *major, int *minor, hipDevice_t device)
Returns the compute capability of the device.
hipError_t hipDeviceGetName(char *name, int len, hipDevice_t device)
Returns an identifer string for the device.
hipError_t hipDeviceGetByPCIBusId(int *device, const char *pciBusId)
Returns a handle to a compute device.
hipError_t hipDeviceGetUuid(hipUUID *uuid, hipDevice_t device)
Returns an UUID for the device.[BETA].
hipError_t hipDeviceTotalMem(size_t *bytes, hipDevice_t device)
Returns the total amount of memory on the device.
hipError_t hipDeviceGetPCIBusId(char *pciBusId, int len, int device)
Returns a PCI Bus Id string for the device, overloaded to take int device ID.
hipError_t hipDeviceGet(hipDevice_t *device, int ordinal)
Returns a handle to a compute device.
hipError_t hipRuntimeGetVersion(int *runtimeVersion)
Returns the approximate HIP Runtime version.
hipError_t hipDeviceGetP2PAttribute(int *value, hipDeviceP2PAttr attr, int srcDevice, int dstDevice)
Returns a value for attribute of link between two devices.
hipError_t hipDriverGetVersion(int *driverVersion)
Returns the approximate HIP driver version.
const char * hipGetErrorString(hipError_t hipError)
Return handy text string message to explain the error which occurred.
hipError_t hipPeekAtLastError(void)
Return last error returned by any HIP runtime API call.
hipError_t hipDrvGetErrorString(hipError_t hipError, const char **errorString)
Return handy text string message to explain the error which occurred.
hipError_t hipGetLastError(void)
Return last error returned by any HIP runtime API call and resets the stored error code to hipSuccess...
const char * hipGetErrorName(hipError_t hip_error)
Return hip error as text string form.
hipError_t hipDrvGetErrorName(hipError_t hipError, const char **errorString)
Return hip error as text string form.
hipError_t hipEventSynchronize(hipEvent_t event)
Wait for an event to complete.
hipError_t hipEventRecord(hipEvent_t event, hipStream_t stream)
Record an event in the specified stream.
hipError_t hipEventQuery(hipEvent_t event)
Query event status.
hipError_t hipEventCreate(hipEvent_t *event)
hipError_t hipEventDestroy(hipEvent_t event)
Destroy the specified event.
hipError_t hipEventElapsedTime(float *ms, hipEvent_t start, hipEvent_t stop)
Return the elapsed time between two events.
hipError_t hipEventCreateWithFlags(hipEvent_t *event, unsigned flags)
Create an event with the specified flags.
hipError_t hipFuncSetSharedMemConfig(const void *func, hipSharedMemConfig config)
Set shared memory configuation for a specific function.
hipError_t hipFuncSetAttribute(const void *func, hipFuncAttribute attr, int value)
Set attribute for a specific function.
hipError_t hipFuncSetCacheConfig(const void *func, hipFuncCache_t config)
Set Cache configuration for a specific function.
hipError_t hipGLGetDevices(unsigned int *pHipDeviceCount, int *pHipDevices, unsigned int hipDeviceCount, hipGLDeviceList deviceList)
hipError_t hipGraphicsGLRegisterImage(hipGraphicsResource **resource, GLuint image, GLenum target, unsigned int flags)
hipError_t hipGraphicsUnregisterResource(hipGraphicsResource_t resource)
hipError_t hipGraphicsGLRegisterBuffer(hipGraphicsResource **resource, GLuint buffer, unsigned int flags)
hipError_t hipGraphicsMapResources(int count, hipGraphicsResource_t *resources, hipStream_t stream __dparm(0))
unsigned int GLenum
Definition: hip_runtime_api.h:6944
hipError_t hipGraphicsSubResourceGetMappedArray(hipArray_t *array, hipGraphicsResource_t resource, unsigned int arrayIndex, unsigned int mipLevel)
unsigned int GLuint
Definition: hip_runtime_api.h:6943
hipError_t hipGraphicsUnmapResources(int count, hipGraphicsResource_t *resources, hipStream_t stream __dparm(0))
hipError_t hipGraphicsResourceGetMappedPointer(void **devPtr, size_t *size, hipGraphicsResource_t resource)
hipMemAllocationHandleType
Definition: hip_runtime_api.h:866
hipGraphicsResource * hipGraphicsResource_t
Definition: hip_runtime_api.h:1091
hipGLDeviceList
Definition: hip_runtime_api.h:1066
hipAccessProperty
Definition: hip_runtime_api.h:1176
hipMemRangeAttribute
Definition: hip_runtime_api.h:740
#define hipMemAttachSingle
Definition: hip_runtime_api.h:628
hipMemoryAdvise
Definition: hip_runtime_api.h:703
#define hipArrayDefault
Definition: hip_runtime_api.h:673
hipSharedMemConfig
Definition: hip_runtime_api.h:937
hipComputeMode
Definition: hip_runtime_api.h:469
hipStreamCaptureMode
Definition: hip_runtime_api.h:1213
hipGraphNodeType
Definition: hip_runtime_api.h:1117
hipExternalMemoryHandleType
Definition: hip_runtime_api.h:976
#define hipMemAttachGlobal
Definition: hip_runtime_api.h:622
hipFuncAttribute
Definition: hip_runtime_api.h:920
hipExternalSemaphoreHandleType
Definition: hip_runtime_api.h:1003
hipJitOption
Definition: hip_runtime_api.h:897
hipGraphDebugDotFlags
Definition: hip_runtime_api.h:1249
hipUserObjectRetainFlags
Definition: hip_runtime_api.h:1240
enum __HIP_NODISCARD hipError_t hipError_t
Definition: hip_runtime_api.h:213
void(* hipHostFn_t)(void *userData)
Definition: hip_runtime_api.h:1135
#define hipOccupancyDefault
Definition: hip_runtime_api.h:678
hipStreamUpdateCaptureDependenciesFlags
Definition: hip_runtime_api.h:1225
struct ihipGraph * hipGraph_t
Definition: hip_runtime_api.h:1096
hipMemHandleType
Definition: hip_runtime_api.h:1302
hipFuncCache_t
Definition: hip_runtime_api.h:928
hipUserObjectFlags
Definition: hip_runtime_api.h:1236
#define __HIP_NODISCARD
Definition: hip_runtime_api.h:202
hipGraphMemAttributeType
Definition: hip_runtime_api.h:1230
hipMemPoolAttr
Definition: hip_runtime_api.h:758
struct hipUserObject * hipUserObject_t
Definition: hip_runtime_api.h:1109
hipMemOperationType
Definition: hip_runtime_api.h:1311
void * hipExternalSemaphore_t
Definition: hip_runtime_api.h:1020
hipGraphicsRegisterFlags
Definition: hip_runtime_api.h:1079
hipMemRangeCoherencyMode
Definition: hip_runtime_api.h:726
hipMemAccessFlags
Definition: hip_runtime_api.h:836
hipMemAllocationGranularity_flags
Definition: hip_runtime_api.h:1292
struct hipGraphExec * hipGraphExec_t
Definition: hip_runtime_api.h:1104
hipGraphExecUpdateResult
Definition: hip_runtime_api.h:1198
void * hipExternalMemory_t
Definition: hip_runtime_api.h:1002
hipStreamCaptureStatus
Definition: hip_runtime_api.h:1218
hipDeviceAttribute_t
Definition: hip_runtime_api.h:336
#define hipHostMallocDefault
Definition: hip_runtime_api.h:598
struct _hipGraphicsResource hipGraphicsResource
Definition: hip_runtime_api.h:1089
hipMemAllocationType
Definition: hip_runtime_api.h:853
struct hipGraphNode * hipGraphNode_t
Definition: hip_runtime_api.h:1100
struct ihipMemGenericAllocationHandle * hipMemGenericAllocationHandle_t
Definition: hip_runtime_api.h:1285
hipGraphInstantiateFlags
Definition: hip_runtime_api.h:1244
hipKernelNodeAttrID
Definition: hip_runtime_api.h:1172
hipMemLocationType
Definition: hip_runtime_api.h:818
hipArraySparseSubresourceType
Definition: hip_runtime_api.h:1321
@ hipMemHandleTypeWin32
Allows a Win32 NT handle for exporting. (HANDLE)
Definition: hip_runtime_api.h:869
@ hipMemHandleTypeWin32Kmt
Allows a Win32 KMT handle for exporting. (D3DKMT_HANDLE)
Definition: hip_runtime_api.h:870
@ hipMemHandleTypeNone
Does not allow any export mechanism.
Definition: hip_runtime_api.h:867
@ hipMemHandleTypePosixFileDescriptor
Allows a file descriptor for exporting. Permitted only on POSIX systems.
Definition: hip_runtime_api.h:868
@ hipGLDeviceListNextFrame
frame.
Definition: hip_runtime_api.h:1070
@ hipGLDeviceListAll
All hip devices used by current OpenGL context.
Definition: hip_runtime_api.h:1067
@ hipGLDeviceListCurrentFrame
frame
Definition: hip_runtime_api.h:1068
@ hipAccessPropertyNormal
Definition: hip_runtime_api.h:1177
@ hipAccessPropertyPersisting
Definition: hip_runtime_api.h:1179
@ hipAccessPropertyStreaming
Definition: hip_runtime_api.h:1178
@ hipMemRangeAttributeLastPrefetchLocation
prefetched
Definition: hip_runtime_api.h:746
@ hipMemRangeAttributePreferredLocation
The preferred location of the range.
Definition: hip_runtime_api.h:743
@ hipMemRangeAttributeAccessedBy
Definition: hip_runtime_api.h:744
@ hipMemRangeAttributeReadMostly
Definition: hip_runtime_api.h:741
@ hipMemRangeAttributeCoherencyMode
Definition: hip_runtime_api.h:748
@ hipMemAdviseUnsetAccessedBy
Definition: hip_runtime_api.h:712
@ hipMemAdviseUnsetCoarseGrain
Restores cache coherency policy back to fine-grain.
Definition: hip_runtime_api.h:719
@ hipMemAdviseSetCoarseGrain
Definition: hip_runtime_api.h:714
@ hipMemAdviseUnsetPreferredLocation
Clear the preferred location for the data.
Definition: hip_runtime_api.h:709
@ hipMemAdviseSetAccessedBy
Definition: hip_runtime_api.h:710
@ hipMemAdviseSetPreferredLocation
Definition: hip_runtime_api.h:707
@ hipMemAdviseSetReadMostly
Definition: hip_runtime_api.h:704
@ hipMemAdviseUnsetReadMostly
Undo the effect of hipMemAdviseSetReadMostly.
Definition: hip_runtime_api.h:706
@ hipSharedMemBankSizeFourByte
Definition: hip_runtime_api.h:939
@ hipSharedMemBankSizeEightByte
Definition: hip_runtime_api.h:941
@ hipSharedMemBankSizeDefault
The compiler selects a device-specific value for the banking.
Definition: hip_runtime_api.h:938
@ hipComputeModeProhibited
Definition: hip_runtime_api.h:472
@ hipComputeModeExclusive
Definition: hip_runtime_api.h:471
@ hipComputeModeDefault
Definition: hip_runtime_api.h:470
@ hipComputeModeExclusiveProcess
Definition: hip_runtime_api.h:473
@ hipStreamCaptureModeRelaxed
Definition: hip_runtime_api.h:1216
@ hipStreamCaptureModeThreadLocal
Definition: hip_runtime_api.h:1215
@ hipStreamCaptureModeGlobal
Definition: hip_runtime_api.h:1214
@ hipGraphNodeTypeGraph
Node which executes an embedded graph.
Definition: hip_runtime_api.h:1122
@ hipGraphNodeTypeMemset
Memset node.
Definition: hip_runtime_api.h:1120
@ hipGraphNodeTypeEventRecord
External event record node.
Definition: hip_runtime_api.h:1125
@ hipGraphNodeTypeExtSemaphoreSignal
External Semaphore signal node.
Definition: hip_runtime_api.h:1126
@ hipGraphNodeTypeMemcpy
Memcpy node.
Definition: hip_runtime_api.h:1119
@ hipGraphNodeTypeWaitEvent
External event wait node.
Definition: hip_runtime_api.h:1124
@ hipGraphNodeTypeCount
Definition: hip_runtime_api.h:1132
@ hipGraphNodeTypeKernel
GPU kernel node.
Definition: hip_runtime_api.h:1118
@ hipGraphNodeTypeHost
Host (executable) node.
Definition: hip_runtime_api.h:1121
@ hipGraphNodeTypeMemAlloc
Memory alloc node.
Definition: hip_runtime_api.h:1128
@ hipGraphNodeTypeMemFree
Memory free node.
Definition: hip_runtime_api.h:1129
@ hipGraphNodeTypeMemcpyFromSymbol
MemcpyFromSymbol node.
Definition: hip_runtime_api.h:1130
@ hipGraphNodeTypeMemcpyToSymbol
MemcpyToSymbol node.
Definition: hip_runtime_api.h:1131
@ hipGraphNodeTypeEmpty
Empty (no-op) node.
Definition: hip_runtime_api.h:1123
@ hipGraphNodeTypeExtSemaphoreWait
External Semaphore wait node.
Definition: hip_runtime_api.h:1127
@ hipExternalMemoryHandleTypeD3D11Resource
Definition: hip_runtime_api.h:982
@ hipExternalMemoryHandleTypeD3D12Resource
Definition: hip_runtime_api.h:981
@ hipExternalMemoryHandleTypeOpaqueFd
Definition: hip_runtime_api.h:977
@ hipExternalMemoryHandleTypeD3D12Heap
Definition: hip_runtime_api.h:980
@ hipExternalMemoryHandleTypeOpaqueWin32Kmt
Definition: hip_runtime_api.h:979
@ hipExternalMemoryHandleTypeOpaqueWin32
Definition: hip_runtime_api.h:978
@ hipExternalMemoryHandleTypeD3D11ResourceKmt
Definition: hip_runtime_api.h:983
@ hipFuncAttributePreferredSharedMemoryCarveout
Definition: hip_runtime_api.h:922
@ hipFuncAttributeMaxDynamicSharedMemorySize
Definition: hip_runtime_api.h:921
@ hipFuncAttributeMax
Definition: hip_runtime_api.h:923
@ hipExternalSemaphoreHandleTypeOpaqueWin32Kmt
Definition: hip_runtime_api.h:1006
@ hipExternalSemaphoreHandleTypeOpaqueFd
Definition: hip_runtime_api.h:1004
@ hipExternalSemaphoreHandleTypeOpaqueWin32
Definition: hip_runtime_api.h:1005
@ hipExternalSemaphoreHandleTypeD3D12Fence
Definition: hip_runtime_api.h:1007
@ hipJitOptionCacheMode
Definition: hip_runtime_api.h:912
@ hipJitOptionFastCompile
Definition: hip_runtime_api.h:914
@ hipJitOptionInfoLogBuffer
Definition: hip_runtime_api.h:901
@ hipJitOptionErrorLogBuffer
Definition: hip_runtime_api.h:903
@ hipJitOptionTarget
Definition: hip_runtime_api.h:907
@ hipJitOptionThreadsPerBlock
Definition: hip_runtime_api.h:899
@ hipJitOptionNumOptions
Definition: hip_runtime_api.h:915
@ hipJitOptionGenerateLineInfo
Definition: hip_runtime_api.h:911
@ hipJitOptionOptimizationLevel
Definition: hip_runtime_api.h:905
@ hipJitOptionErrorLogBufferSizeBytes
Definition: hip_runtime_api.h:904
@ hipJitOptionWallTime
Definition: hip_runtime_api.h:900
@ hipJitOptionInfoLogBufferSizeBytes
Definition: hip_runtime_api.h:902
@ hipJitOptionTargetFromContext
Definition: hip_runtime_api.h:906
@ hipJitOptionGenerateDebugInfo
Definition: hip_runtime_api.h:909
@ hipJitOptionLogVerbose
Definition: hip_runtime_api.h:910
@ hipJitOptionMaxRegisters
Definition: hip_runtime_api.h:898
@ hipJitOptionSm3xOpt
Definition: hip_runtime_api.h:913
@ hipJitOptionFallbackStrategy
Definition: hip_runtime_api.h:908
@ hipGraphDebugDotFlagsKernelNodeAttributes
Definition: hip_runtime_api.h:1262
@ hipGraphDebugDotFlagsMemsetNodeParams
Definition: hip_runtime_api.h:1254
@ hipGraphDebugDotFlagsKernelNodeParams
Definition: hip_runtime_api.h:1252
@ hipGraphDebugDotFlagsExtSemasWaitNodeParams
Definition: hip_runtime_api.h:1260
@ hipGraphDebugDotFlagsHandles
Definition: hip_runtime_api.h:1264
@ hipGraphDebugDotFlagsExtSemasSignalNodeParams
Definition: hip_runtime_api.h:1258
@ hipGraphDebugDotFlagsHostNodeParams
Definition: hip_runtime_api.h:1255
@ hipGraphDebugDotFlagsEventNodeParams
Definition: hip_runtime_api.h:1256
@ hipGraphDebugDotFlagsVerbose
Definition: hip_runtime_api.h:1250
@ hipGraphDebugDotFlagsMemcpyNodeParams
Definition: hip_runtime_api.h:1253
@ hipGraphUserObjectMove
Add new reference or retain.
Definition: hip_runtime_api.h:1241
@ hipStreamAddCaptureDependencies
Add new nodes to the dependency set.
Definition: hip_runtime_api.h:1226
@ hipStreamSetCaptureDependencies
Replace the dependency set with the new nodes.
Definition: hip_runtime_api.h:1227
@ hipMemHandleTypeGeneric
Generic handle type.
Definition: hip_runtime_api.h:1303
@ hipFuncCachePreferNone
no preference for shared memory or L1 (default)
Definition: hip_runtime_api.h:929
@ hipFuncCachePreferEqual
prefer equal size L1 cache and shared memory
Definition: hip_runtime_api.h:932
@ hipFuncCachePreferL1
prefer larger L1 cache and smaller shared memory
Definition: hip_runtime_api.h:931
@ hipFuncCachePreferShared
prefer larger shared memory and smaller L1 cache
Definition: hip_runtime_api.h:930
@ hipUserObjectNoDestructorSync
Destructor execution is not synchronized.
Definition: hip_runtime_api.h:1237
@ hipGraphMemAttrReservedMemHigh
High watermark of memory, in bytes, currently allocated for graphs.
Definition: hip_runtime_api.h:1234
@ hipGraphMemAttrUsedMemCurrent
Amount of memory, in bytes, currently associated with graphs.
Definition: hip_runtime_api.h:1231
@ hipGraphMemAttrUsedMemHigh
High watermark of memory, in bytes, associated with graphs since the last time.
Definition: hip_runtime_api.h:1232
@ hipGraphMemAttrReservedMemCurrent
Amount of memory, in bytes, currently allocated for graphs.
Definition: hip_runtime_api.h:1233
@ hipMemPoolAttrUsedMemCurrent
Definition: hip_runtime_api.h:805
@ hipMemPoolAttrReservedMemHigh
Definition: hip_runtime_api.h:800
@ hipMemPoolAttrReservedMemCurrent
Definition: hip_runtime_api.h:794
@ hipMemPoolAttrReleaseThreshold
Definition: hip_runtime_api.h:789
@ hipMemPoolAttrUsedMemHigh
Definition: hip_runtime_api.h:811
@ hipMemPoolReuseAllowInternalDependencies
Definition: hip_runtime_api.h:780
@ hipMemPoolReuseFollowEventDependencies
Definition: hip_runtime_api.h:767
@ hipMemPoolReuseAllowOpportunistic
Definition: hip_runtime_api.h:773
@ hipMemOperationTypeMap
Map operation.
Definition: hip_runtime_api.h:1312
@ hipMemOperationTypeUnmap
Unmap operation.
Definition: hip_runtime_api.h:1313
@ hipGraphicsRegisterFlagsReadOnly
HIP will not write to this registered resource.
Definition: hip_runtime_api.h:1081
@ hipGraphicsRegisterFlagsTextureGather
HIP will perform texture gather operations on this registered resource.
Definition: hip_runtime_api.h:1085
@ hipGraphicsRegisterFlagsWriteDiscard
HIP will only write and will not read from this registered resource.
Definition: hip_runtime_api.h:1082
@ hipGraphicsRegisterFlagsNone
Definition: hip_runtime_api.h:1080
@ hipGraphicsRegisterFlagsSurfaceLoadStore
HIP will bind this resource to a surface.
Definition: hip_runtime_api.h:1084
@ hipMemRangeCoherencyModeFineGrain
Definition: hip_runtime_api.h:727
@ hipMemRangeCoherencyModeIndeterminate
Definition: hip_runtime_api.h:731
@ hipMemRangeCoherencyModeCoarseGrain
Definition: hip_runtime_api.h:729
@ hipMemAccessFlagsProtRead
Set the address range read accessible.
Definition: hip_runtime_api.h:838
@ hipMemAccessFlagsProtNone
Default, make the address range not accessible.
Definition: hip_runtime_api.h:837
@ hipMemAccessFlagsProtReadWrite
Set the address range read-write accessible.
Definition: hip_runtime_api.h:839
@ hipMemAllocationGranularityMinimum
Minimum granularity.
Definition: hip_runtime_api.h:1293
@ hipMemAllocationGranularityRecommended
Recommended granularity for performance.
Definition: hip_runtime_api.h:1294
@ hipGraphExecUpdateErrorNotSupported
The update failed because something about the node is not supported.
Definition: hip_runtime_api.h:1208
@ hipGraphExecUpdateErrorNodeTypeChanged
The update failed because a node type changed.
Definition: hip_runtime_api.h:1203
@ hipGraphExecUpdateErrorTopologyChanged
The update failed because the topology changed.
Definition: hip_runtime_api.h:1202
@ hipGraphExecUpdateErrorUnsupportedFunctionChange
Definition: hip_runtime_api.h:1210
@ hipGraphExecUpdateError
Definition: hip_runtime_api.h:1200
@ hipGraphExecUpdateErrorFunctionChanged
The update failed because the function of a kernel node changed.
Definition: hip_runtime_api.h:1204
@ hipGraphExecUpdateSuccess
The update succeeded.
Definition: hip_runtime_api.h:1199
@ hipGraphExecUpdateErrorParametersChanged
The update failed because the parameters changed in a way that is not supported.
Definition: hip_runtime_api.h:1206
@ hipStreamCaptureStatusInvalidated
Definition: hip_runtime_api.h:1221
@ hipStreamCaptureStatusNone
Stream is not capturing.
Definition: hip_runtime_api.h:1219
@ hipStreamCaptureStatusActive
Stream is actively capturing.
Definition: hip_runtime_api.h:1220
@ hipDeviceAttributeDirectManagedMemAccessFromHost
Definition: hip_runtime_api.h:354
@ hipDeviceAttributeSurfaceAlignment
Cuda only. Alignment requirement for surfaces.
Definition: hip_runtime_api.h:424
@ hipDeviceAttributeMaxGridDimX
Max grid size in width.
Definition: hip_runtime_api.h:371
@ hipDeviceAttributeMaxSurfaceCubemapLayered
Cuda only. Maximum dimension of Cubemap layered surface.
Definition: hip_runtime_api.h:380
@ hipDeviceAttributeMaxSurface3D
Maximum dimension (width, height, depth) of 3D surface.
Definition: hip_runtime_api.h:378
@ hipDeviceAttributeMaxPitch
Maximum pitch in bytes allowed by memory copies.
Definition: hip_runtime_api.h:401
@ hipDeviceAttributeTccDriver
Cuda only. Whether device is a Tesla device using TCC driver.
Definition: hip_runtime_api.h:425
@ hipDeviceAttributeHostNativeAtomicSupported
Cuda only. Link between the device and the host supports native atomic operations.
Definition: hip_runtime_api.h:357
@ hipDeviceAttributePageableMemoryAccessUsesHostPageTables
Device accesses pageable memory via the host's page tables.
Definition: hip_runtime_api.h:410
@ hipDeviceAttributeMaxBlockDimY
Max block size in height.
Definition: hip_runtime_api.h:369
@ hipDeviceAttributeMaxSurfaceCubemap
Cuda only. Maximum dimensions of Cubemap surface.
Definition: hip_runtime_api.h:379
@ hipDeviceAttributeName
Device name.
Definition: hip_runtime_api.h:407
@ hipDeviceAttributePageableMemoryAccess
Definition: hip_runtime_api.h:408
@ hipDeviceAttributeClockRate
Peak clock frequency in kilohertz.
Definition: hip_runtime_api.h:345
@ hipDeviceAttributeCudaCompatibleEnd
Definition: hip_runtime_api.h:436
@ hipDeviceAttributeMaxTexture1DMipmap
Cuda only. Maximum size of 1D mipmapped texture.
Definition: hip_runtime_api.h:385
@ hipDeviceAttributeComputeCapabilityMajor
Major compute capability version number.
Definition: hip_runtime_api.h:365
@ hipDeviceAttributeGlobalL1CacheSupported
Cuda only. Device supports caching globals in L1.
Definition: hip_runtime_api.h:356
@ hipDeviceAttributeCooperativeMultiDeviceUnmatchedSharedMem
Definition: hip_runtime_api.h:452
@ hipDeviceAttributeAccessPolicyMaxWindowSize
Cuda only. The maximum size of the window policy in bytes.
Definition: hip_runtime_api.h:340
@ hipDeviceAttributeMaxTexture3DHeight
Maximum dimension height of 3D texture.
Definition: hip_runtime_api.h:393
@ hipDeviceAttributeComputeCapabilityMinor
Minor compute capability version number.
Definition: hip_runtime_api.h:404
@ hipDeviceAttributeMaxTextureCubemap
Cuda only. Maximum dimensions of Cubemap texture.
Definition: hip_runtime_api.h:396
@ hipDeviceAttributeDeviceOverlap
Definition: hip_runtime_api.h:352
@ hipDeviceAttributeMaxTexture2DLinear
Cuda only. Maximum dimensions (width, height, pitch) of 2D textures bound to pitched memory.
Definition: hip_runtime_api.h:390
@ hipDeviceAttributeMaxSurface2D
Maximum dimension (width, height) of 2D surface.
Definition: hip_runtime_api.h:376
@ hipDeviceAttributeMaxSurface1DLayered
Cuda only. Maximum dimensions of 1D layered surface.
Definition: hip_runtime_api.h:375
@ hipDeviceAttributeHdpRegFlushCntl
Address of the HDP_REG_COHERENCY_FLUSH_CNTL register.
Definition: hip_runtime_api.h:445
@ hipDeviceAttributeComputeMode
Compute mode that device is currently in.
Definition: hip_runtime_api.h:346
@ hipDeviceAttributeCooperativeMultiDeviceUnmatchedFunc
Definition: hip_runtime_api.h:446
@ hipDeviceAttributeAsicRevision
Revision of the GPU in this device.
Definition: hip_runtime_api.h:455
@ hipDeviceAttributeCooperativeMultiDeviceLaunch
Support cooperative launch on multiple devices.
Definition: hip_runtime_api.h:351
@ hipDeviceAttributeMaxTexture2DHeight
Maximum dimension hight of 2D texture.
Definition: hip_runtime_api.h:387
@ hipDeviceAttributePersistingL2CacheMaxSize
Cuda11 only. Maximum l2 persisting lines capacity in bytes.
Definition: hip_runtime_api.h:414
@ hipDeviceAttributeEccEnabled
Whether ECC support is enabled.
Definition: hip_runtime_api.h:339
@ hipDeviceAttributeCanUseHostPointerForRegisteredMem
Definition: hip_runtime_api.h:343
@ hipDeviceAttributePciBusId
PCI Bus ID.
Definition: hip_runtime_api.h:411
@ hipDeviceAttributeL2CacheSize
Size of L2 cache in bytes. 0 if the device doesn't have L2 cache.
Definition: hip_runtime_api.h:361
@ hipDeviceAttributeKernelExecTimeout
Run time limit for kernels executed on the device.
Definition: hip_runtime_api.h:360
@ hipDeviceAttributeMaxThreadsDim
Maximum dimension of a block.
Definition: hip_runtime_api.h:398
@ hipDeviceAttributeSingleToDoublePrecisionPerfRatio
Cuda only. Performance ratio of single precision to double precision.
Definition: hip_runtime_api.h:422
@ hipDeviceAttributeMaxGridDimY
Max grid size in height.
Definition: hip_runtime_api.h:372
@ hipDeviceAttributeMultiprocessorCount
Number of multiprocessors on the device.
Definition: hip_runtime_api.h:406
@ hipDeviceAttributeUuid
Cuda only. Unique ID in 16 byte.
Definition: hip_runtime_api.h:431
@ hipDeviceAttributeAmdSpecificBegin
Definition: hip_runtime_api.h:437
@ hipDeviceAttributeMaxRegistersPerMultiprocessor
32-bit registers available per block.
Definition: hip_runtime_api.h:417
@ hipDeviceAttributeGcnArchName
Device gcnArch name in 256 bytes.
Definition: hip_runtime_api.h:443
@ hipDeviceAttributeIsMultiGpuBoard
Multiple GPU devices.
Definition: hip_runtime_api.h:359
@ hipDeviceAttributeSharedMemPerBlockOptin
Cuda only. Maximum shared memory per block usable by special opt in.
Definition: hip_runtime_api.h:420
@ hipDeviceAttributeMaxSurface2DLayered
Cuda only. Maximum dimensions of 2D layered surface.
Definition: hip_runtime_api.h:377
@ hipDeviceAttributeAmdSpecificEnd
Definition: hip_runtime_api.h:464
@ hipDeviceAttributeMemoryClockRate
Peak memory clock frequency in kilohertz.
Definition: hip_runtime_api.h:403
@ hipDeviceAttributeGcnArch
Device gcn architecture.
Definition: hip_runtime_api.h:442
@ hipDeviceAttributeMaxGridDimZ
Max grid size in depth.
Definition: hip_runtime_api.h:373
@ hipDeviceAttributeHdpMemFlushCntl
Address of the HDP_MEM_COHERENCY_FLUSH_CNTL register.
Definition: hip_runtime_api.h:444
@ hipDeviceAttributeFineGrainSupport
'1' if Device supports fine grain, '0' otherwise
Definition: hip_runtime_api.h:461
@ hipDeviceAttributeCooperativeLaunch
Support cooperative launch.
Definition: hip_runtime_api.h:350
@ hipDeviceAttributeUnifiedAddressing
Cuda only. An unified address space shared with the host.
Definition: hip_runtime_api.h:430
@ hipDeviceAttributeAsyncEngineCount
Cuda only. Asynchronous engines number.
Definition: hip_runtime_api.h:341
@ hipDeviceAttributeMultiGpuBoardGroupID
Cuda only. Unique ID of device group on the same multi-GPU board.
Definition: hip_runtime_api.h:405
@ hipDeviceAttributeStreamPrioritiesSupported
Cuda only. Whether to support stream priorities.
Definition: hip_runtime_api.h:423
@ hipDeviceAttributeMaxSharedMemoryPerBlock
Maximum shared memory available per block in bytes.
Definition: hip_runtime_api.h:419
@ hipDeviceAttributeLocalL1CacheSupported
caching locals in L1 is supported
Definition: hip_runtime_api.h:362
@ hipDeviceAttributeCanUseStreamWaitValue
Definition: hip_runtime_api.h:456
@ hipDeviceAttributeMaxRegistersPerBlock
Definition: hip_runtime_api.h:415
@ hipDeviceAttributeMaxThreadsPerBlock
Maximum number of threads per block.
Definition: hip_runtime_api.h:399
@ hipDeviceAttributeMemoryBusWidth
Global memory bus width in bits.
Definition: hip_runtime_api.h:402
@ hipDeviceAttributeComputePreemptionSupported
Cuda only. Device supports Compute Preemption.
Definition: hip_runtime_api.h:347
@ hipDeviceAttributeMaxSurface1D
Maximum size of 1D surface.
Definition: hip_runtime_api.h:374
@ hipDeviceAttributeMaxTexture3DAlt
Cuda only. Maximum dimensions of alternate 3D texture.
Definition: hip_runtime_api.h:395
@ hipDeviceAttributeMaxTexture1DLinear
Definition: hip_runtime_api.h:383
@ hipDeviceAttributeMaxTexture2DGather
Cuda only. Maximum dimensions of 2D texture if gather operations performed.
Definition: hip_runtime_api.h:388
@ hipDeviceAttributeWallClockRate
Constant frequency of wall clock in kilohertz.
Definition: hip_runtime_api.h:462
@ hipDeviceAttributePciDeviceId
PCI Device ID.
Definition: hip_runtime_api.h:412
@ hipDeviceAttributeCanMapHostMemory
Whether host memory can be mapped into device address space.
Definition: hip_runtime_api.h:342
@ hipDeviceAttributeMaxTexture1DWidth
Maximum size of 1D texture.
Definition: hip_runtime_api.h:381
@ hipDeviceAttributeConcurrentManagedAccess
Device can coherently access managed memory concurrently with the CPU.
Definition: hip_runtime_api.h:349
@ hipDeviceAttributeVendorSpecificBegin
Definition: hip_runtime_api.h:465
@ hipDeviceAttributeArch
Device architecture.
Definition: hip_runtime_api.h:440
@ hipDeviceAttributeManagedMemory
Device supports allocating managed memory on this system.
Definition: hip_runtime_api.h:366
@ hipDeviceAttributeIntegrated
Device is integrated GPU.
Definition: hip_runtime_api.h:358
@ hipDeviceAttributeMaxTexture2DLayered
Cuda only. Maximum dimensions of 2D layered texture.
Definition: hip_runtime_api.h:389
@ hipDeviceAttributeCooperativeMultiDeviceUnmatchedGridDim
Definition: hip_runtime_api.h:448
@ hipDeviceAttributeMaxTexture3DDepth
Maximum dimension depth of 3D texture.
Definition: hip_runtime_api.h:394
@ hipDeviceAttributeImageSupport
'1' if Device supports image, '0' otherwise.
Definition: hip_runtime_api.h:458
@ hipDeviceAttributeTotalGlobalMem
Global memory available on devicice.
Definition: hip_runtime_api.h:429
@ hipDeviceAttributeMaxBlocksPerMultiProcessor
Cuda only. Max block size per multiprocessor.
Definition: hip_runtime_api.h:367
@ hipDeviceAttributeIsLargeBar
Whether it is LargeBar.
Definition: hip_runtime_api.h:454
@ hipDeviceAttributeMaxTexture2DWidth
Maximum dimension width of 2D texture.
Definition: hip_runtime_api.h:386
@ hipDeviceAttributeMaxBlockDimX
Max block size in width.
Definition: hip_runtime_api.h:368
@ hipDeviceAttributeMaxTexture3DWidth
Maximum dimension width of 3D texture.
Definition: hip_runtime_api.h:392
@ hipDeviceAttributeTotalConstantMemory
Constant memory size in bytes.
Definition: hip_runtime_api.h:428
@ hipDeviceAttributeTextureAlignment
Alignment requirement for textures.
Definition: hip_runtime_api.h:426
@ hipDeviceAttributeMaxTexture1DLayered
Cuda only. Maximum dimensions of 1D layered texture.
Definition: hip_runtime_api.h:382
@ hipDeviceAttributeMaxSharedMemoryPerMultiprocessor
Maximum Shared Memory PerMultiprocessor.
Definition: hip_runtime_api.h:441
@ hipDeviceAttributeReservedSharedMemPerBlock
Cuda11 only. Shared memory reserved by CUDA driver per block.
Definition: hip_runtime_api.h:418
@ hipDeviceAttributeCudaCompatibleBegin
Definition: hip_runtime_api.h:337
@ hipDeviceAttributeConcurrentKernels
Device can possibly execute multiple kernels concurrently.
Definition: hip_runtime_api.h:348
@ hipDeviceAttributeLuid
Cuda only. 8-byte locally unique identifier in 8 bytes. Undefined on TCC and non-Windows platforms.
Definition: hip_runtime_api.h:363
@ hipDeviceAttributePciDomainID
PCI Domain ID.
Definition: hip_runtime_api.h:413
@ hipDeviceAttributeMaxThreadsPerMultiProcessor
Maximum resident threads per multiprocessor.
Definition: hip_runtime_api.h:400
@ hipDeviceAttributeTexturePitchAlignment
Pitch alignment requirement for 2D texture references bound to pitched memory;.
Definition: hip_runtime_api.h:427
@ hipDeviceAttributePhysicalMultiProcessorCount
Definition: hip_runtime_api.h:459
@ hipDeviceAttributeSharedMemPerMultiprocessor
Cuda only. Shared memory available per multiprocessor.
Definition: hip_runtime_api.h:421
@ hipDeviceAttributeLuidDeviceNodeMask
Cuda only. Luid device node mask. Undefined on TCC and non-Windows platforms.
Definition: hip_runtime_api.h:364
@ hipDeviceAttributeMaxTextureCubemapLayered
Cuda only. Maximum dimensions of Cubemap layered texture.
Definition: hip_runtime_api.h:397
@ hipDeviceAttributeCooperativeMultiDeviceUnmatchedBlockDim
Definition: hip_runtime_api.h:450
@ hipDeviceAttributeVirtualMemoryManagementSupported
Device supports HIP virtual memory management.
Definition: hip_runtime_api.h:434
@ hipDeviceAttributeMemoryPoolsSupported
Device supports HIP Stream Ordered Memory Allocator.
Definition: hip_runtime_api.h:433
@ hipDeviceAttributeClockInstructionRate
Frequency in khz of the timer used by the device-side "clock*".
Definition: hip_runtime_api.h:439
@ hipDeviceAttributeMaxTexture2DMipmap
Cuda only. Maximum dimensions of 2D mipmapped texture.
Definition: hip_runtime_api.h:391
@ hipDeviceAttributeMaxBlockDimZ
Max block size in depth.
Definition: hip_runtime_api.h:370
@ hipDeviceAttributeWarpSize
Warp size in threads.
Definition: hip_runtime_api.h:432
@ hipMemAllocationTypeMax
Definition: hip_runtime_api.h:859
@ hipMemAllocationTypePinned
Definition: hip_runtime_api.h:858
@ hipMemAllocationTypeInvalid
Definition: hip_runtime_api.h:854
@ hipGraphInstantiateFlagAutoFreeOnLaunch
Automatically free memory allocated in a graph before relaunching.
Definition: hip_runtime_api.h:1245
@ hipKernelNodeAttributeCooperative
Definition: hip_runtime_api.h:1174
@ hipKernelNodeAttributeAccessPolicyWindow
Definition: hip_runtime_api.h:1173
@ hipMemLocationTypeInvalid
Definition: hip_runtime_api.h:819
@ hipMemLocationTypeDevice
Device location, thus it's HIP device ID.
Definition: hip_runtime_api.h:820
@ hipArraySparseSubresourceTypeSparseLevel
Sparse level.
Definition: hip_runtime_api.h:1322
@ hipArraySparseSubresourceTypeMiptail
Miptail.
Definition: hip_runtime_api.h:1323
hipError_t hipGraphKernelNodeSetParams(hipGraphNode_t node, const hipKernelNodeParams *pNodeParams)
Sets a kernel node's parameters.
hipError_t hipGraphMemFreeNodeGetParams(hipGraphNode_t node, void *dev_ptr)
Returns parameters for memory free node.
hipError_t hipGraphNodeGetDependencies(hipGraphNode_t node, hipGraphNode_t *pDependencies, size_t *pNumDependencies)
Returns a node's dependencies.
hipError_t hipGraphCreate(hipGraph_t *pGraph, unsigned int flags)
Creates a graph.
hipError_t hipGraphAddMemcpyNode1D(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, void *dst, const void *src, size_t count, hipMemcpyKind kind)
Creates a 1D memcpy node and adds it to a graph.
hipError_t hipDeviceSetGraphMemAttribute(int device, hipGraphMemAttributeType attr, void *value)
Set the mem attribute for graphs.
hipError_t hipGraphMemcpyNodeSetParams(hipGraphNode_t node, const hipMemcpy3DParms *pNodeParams)
Sets a memcpy node's parameters.
hipError_t hipUserObjectCreate(hipUserObject_t *object_out, void *ptr, hipHostFn_t destroy, unsigned int initialRefcount, unsigned int flags)
Create an instance of userObject to manage lifetime of a resource.
hipError_t hipGraphExecUpdate(hipGraphExec_t hGraphExec, hipGraph_t hGraph, hipGraphNode_t *hErrorNode_out, hipGraphExecUpdateResult *updateResult_out)
Check whether an executable graph can be updated with a graph and perform the update if * possible.
hipError_t hipGraphNodeFindInClone(hipGraphNode_t *pNode, hipGraphNode_t originalNode, hipGraph_t clonedGraph)
Finds a cloned version of a node.
hipError_t hipGraphAddEventWaitNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, hipEvent_t event)
Creates an event wait node and adds it to a graph.
hipError_t hipGraphMemcpyNodeSetParamsToSymbol(hipGraphNode_t node, const void *symbol, const void *src, size_t count, size_t offset, hipMemcpyKind kind)
Sets a memcpy node's parameters to copy to a symbol on the device.
hipError_t hipGraphRetainUserObject(hipGraph_t graph, hipUserObject_t object, unsigned int count __dparm(1), unsigned int flags __dparm(0))
Retain user object for graphs.
hipError_t hipStreamIsCapturing(hipStream_t stream, hipStreamCaptureStatus *pCaptureStatus)
Get stream's capture state.
hipError_t hipGraphNodeGetEnabled(hipGraphExec_t hGraphExec, hipGraphNode_t hNode, unsigned int *isEnabled)
Query whether a node in the given graphExec is enabled.
hipError_t hipGraphAddChildGraphNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, hipGraph_t childGraph)
Creates a child graph node and adds it to a graph.
hipError_t hipGraphDestroyNode(hipGraphNode_t node)
Remove a node from the graph.
hipError_t hipGraphMemcpyNodeSetParamsFromSymbol(hipGraphNode_t node, void *dst, const void *symbol, size_t count, size_t offset, hipMemcpyKind kind)
Sets a memcpy node's parameters to copy from a symbol on the device.
hipError_t hipGraphRemoveDependencies(hipGraph_t graph, const hipGraphNode_t *from, const hipGraphNode_t *to, size_t numDependencies)
Removes dependency edges from a graph.
hipError_t hipGraphMemcpyNodeSetParams1D(hipGraphNode_t node, void *dst, const void *src, size_t count, hipMemcpyKind kind)
Sets a memcpy node's parameters to perform a 1-dimensional copy.
hipError_t hipGraphExecMemcpyNodeSetParams1D(hipGraphExec_t hGraphExec, hipGraphNode_t node, void *dst, const void *src, size_t count, hipMemcpyKind kind)
Sets the parameters for a memcpy node in the given graphExec to perform a 1-dimensional copy.
hipError_t hipGraphExecDestroy(hipGraphExec_t graphExec)
Destroys an executable graph.
hipError_t hipGraphExecHostNodeSetParams(hipGraphExec_t hGraphExec, hipGraphNode_t node, const hipHostNodeParams *pNodeParams)
Sets the parameters for a host node in the given graphExec.
hipError_t hipGraphExecChildGraphNodeSetParams(hipGraphExec_t hGraphExec, hipGraphNode_t node, hipGraph_t childGraph)
Updates node parameters in the child graph node in the given graphExec.
hipError_t hipStreamGetCaptureInfo(hipStream_t stream, hipStreamCaptureStatus *pCaptureStatus, unsigned long long *pId)
Get capture status of a stream.
hipError_t hipGraphAddDependencies(hipGraph_t graph, const hipGraphNode_t *from, const hipGraphNode_t *to, size_t numDependencies)
Adds dependency edges to a graph.
hipError_t hipGraphExecKernelNodeSetParams(hipGraphExec_t hGraphExec, hipGraphNode_t node, const hipKernelNodeParams *pNodeParams)
Sets the parameters for a kernel node in the given graphExec.
hipError_t hipGraphNodeGetDependentNodes(hipGraphNode_t node, hipGraphNode_t *pDependentNodes, size_t *pNumDependentNodes)
Returns a node's dependent nodes.
hipError_t hipDeviceGetGraphMemAttribute(int device, hipGraphMemAttributeType attr, void *value)
Get the mem attribute for graphs.
hipError_t hipGraphHostNodeGetParams(hipGraphNode_t node, hipHostNodeParams *pNodeParams)
Returns a host node's parameters.
hipError_t hipGraphInstantiateWithFlags(hipGraphExec_t *pGraphExec, hipGraph_t graph, unsigned long long flags)
Creates an executable graph from a graph.
hipError_t hipGraphUpload(hipGraphExec_t graphExec, hipStream_t stream)
uploads an executable graph in a stream
hipError_t hipGraphExecMemcpyNodeSetParamsToSymbol(hipGraphExec_t hGraphExec, hipGraphNode_t node, const void *symbol, const void *src, size_t count, size_t offset, hipMemcpyKind kind)
Sets the parameters for a memcpy node in the given graphExec to copy to a symbol on the device.
hipError_t hipGraphKernelNodeGetParams(hipGraphNode_t node, hipKernelNodeParams *pNodeParams)
Gets kernel node's parameters.
hipError_t hipGraphAddMemcpyNodeFromSymbol(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, void *dst, const void *symbol, size_t count, size_t offset, hipMemcpyKind kind)
Creates a memcpy node to copy from a symbol on the device and adds it to a graph.
hipError_t hipGraphKernelNodeCopyAttributes(hipGraphNode_t hSrc, hipGraphNode_t hDst)
Copies attributes from source node to destination node.
hipError_t hipGraphAddMemFreeNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, void *dev_ptr)
Creates a memory free node and adds it to a graph.
hipError_t hipUserObjectRelease(hipUserObject_t object, unsigned int count __dparm(1))
Release number of references to resource.
hipError_t hipGraphMemcpyNodeGetParams(hipGraphNode_t node, hipMemcpy3DParms *pNodeParams)
Gets a memcpy node's parameters.
hipError_t hipGraphAddEventRecordNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, hipEvent_t event)
Creates an event record node and adds it to a graph.
hipError_t hipStreamUpdateCaptureDependencies(hipStream_t stream, hipGraphNode_t *dependencies, size_t numDependencies, unsigned int flags __dparm(0))
Update the set of dependencies in a capturing stream.
hipError_t hipStreamBeginCapture(hipStream_t stream, hipStreamCaptureMode mode)
Begins graph capture on a stream.
hipError_t hipStreamEndCapture(hipStream_t stream, hipGraph_t *pGraph)
Ends capture on a stream, returning the captured graph.
hipError_t hipGraphNodeGetType(hipGraphNode_t node, hipGraphNodeType *pType)
Returns a node's type.
hipError_t hipGraphNodeSetEnabled(hipGraphExec_t hGraphExec, hipGraphNode_t hNode, unsigned int isEnabled)
Enables or disables the specified node in the given graphExec.
hipError_t hipGraphExecMemcpyNodeSetParams(hipGraphExec_t hGraphExec, hipGraphNode_t node, hipMemcpy3DParms *pNodeParams)
Sets the parameters for a memcpy node in the given graphExec.
hipError_t hipGraphHostNodeSetParams(hipGraphNode_t node, const hipHostNodeParams *pNodeParams)
Sets a host node's parameters.
hipError_t hipGraphMemAllocNodeGetParams(hipGraphNode_t node, hipMemAllocNodeParams *pNodeParams)
Returns parameters for memory allocation node.
hipError_t hipUserObjectRetain(hipUserObject_t object, unsigned int count __dparm(1))
Retain number of references to resource.
hipError_t hipGraphExecEventRecordNodeSetEvent(hipGraphExec_t hGraphExec, hipGraphNode_t hNode, hipEvent_t event)
Sets the event for an event record node in the given graphExec.
hipError_t hipGraphMemsetNodeGetParams(hipGraphNode_t node, hipMemsetParams *pNodeParams)
Gets a memset node's parameters.
hipError_t hipGraphChildGraphNodeGetGraph(hipGraphNode_t node, hipGraph_t *pGraph)
Gets a handle to the embedded graph of a child graph node.
hipError_t hipGraphKernelNodeGetAttribute(hipGraphNode_t hNode, hipKernelNodeAttrID attr, hipKernelNodeAttrValue *value)
Gets a node attribute.
hipError_t hipThreadExchangeStreamCaptureMode(hipStreamCaptureMode *mode)
Swaps the stream capture mode of a thread.
hipError_t hipGraphLaunch(hipGraphExec_t graphExec, hipStream_t stream)
launches an executable graph in a stream
hipError_t hipGraphDebugDotPrint(hipGraph_t graph, const char *path, unsigned int flags)
Write a DOT file describing graph structure.
hipError_t hipGraphExecMemsetNodeSetParams(hipGraphExec_t hGraphExec, hipGraphNode_t node, const hipMemsetParams *pNodeParams)
Sets the parameters for a memset node in the given graphExec.
hipError_t hipGraphGetEdges(hipGraph_t graph, hipGraphNode_t *from, hipGraphNode_t *to, size_t *numEdges)
Returns a graph's dependency edges.
hipError_t hipGraphAddKernelNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, const hipKernelNodeParams *pNodeParams)
Creates a kernel execution node and adds it to a graph.
hipError_t hipGraphExecEventWaitNodeSetEvent(hipGraphExec_t hGraphExec, hipGraphNode_t hNode, hipEvent_t event)
Sets the event for an event record node in the given graphExec.
hipError_t hipGraphEventWaitNodeSetEvent(hipGraphNode_t node, hipEvent_t event)
Sets an event wait node's event.
hipError_t hipGraphEventRecordNodeSetEvent(hipGraphNode_t node, hipEvent_t event)
Sets an event record node's event.
hipError_t hipGraphEventWaitNodeGetEvent(hipGraphNode_t node, hipEvent_t *event_out)
Returns the event associated with an event wait node.
hipError_t hipGraphKernelNodeSetAttribute(hipGraphNode_t hNode, hipKernelNodeAttrID attr, const hipKernelNodeAttrValue *value)
Sets a node attribute.
hipError_t hipGraphMemsetNodeSetParams(hipGraphNode_t node, const hipMemsetParams *pNodeParams)
Sets a memset node's parameters.
hipError_t hipGraphEventRecordNodeGetEvent(hipGraphNode_t node, hipEvent_t *event_out)
Returns the event associated with an event record node.
hipError_t hipGraphAddEmptyNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies)
Creates an empty node and adds it to a graph.
hipError_t hipGraphAddMemcpyNodeToSymbol(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, const void *symbol, const void *src, size_t count, size_t offset, hipMemcpyKind kind)
Creates a memcpy node to copy to a symbol on the device and adds it to a graph.
hipError_t hipGraphDestroy(hipGraph_t graph)
Destroys a graph.
hipError_t hipGraphExecMemcpyNodeSetParamsFromSymbol(hipGraphExec_t hGraphExec, hipGraphNode_t node, void *dst, const void *symbol, size_t count, size_t offset, hipMemcpyKind kind)
Sets the parameters for a memcpy node in the given graphExec to copy from a symbol on the.
hipError_t hipGraphAddMemAllocNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, hipMemAllocNodeParams *pNodeParams)
Creates a memory allocation node and adds it to a graph.
hipError_t hipGraphAddHostNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, const hipHostNodeParams *pNodeParams)
Creates a host execution node and adds it to a graph.
hipError_t hipGraphGetNodes(hipGraph_t graph, hipGraphNode_t *nodes, size_t *numNodes)
Returns graph nodes.
hipError_t hipGraphAddMemsetNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, const hipMemsetParams *pMemsetParams)
Creates a memset node and adds it to a graph.
hipError_t hipGraphInstantiate(hipGraphExec_t *pGraphExec, hipGraph_t graph, hipGraphNode_t *pErrorNode, char *pLogBuffer, size_t bufferSize)
Creates an executable graph from a graph.
hipError_t hipDeviceGraphMemTrim(int device)
Free unused memory on specific device used for graph back to OS.
hipError_t hipGraphClone(hipGraph_t *pGraphClone, hipGraph_t originalGraph)
Clones a graph.
hipError_t hipGraphGetRootNodes(hipGraph_t graph, hipGraphNode_t *pRootNodes, size_t *pNumRootNodes)
Returns graph's root nodes.
hipError_t hipGraphAddMemcpyNode(hipGraphNode_t *pGraphNode, hipGraph_t graph, const hipGraphNode_t *pDependencies, size_t numDependencies, const hipMemcpy3DParms *pCopyParams)
Creates a memcpy node and adds it to a graph.
hipError_t hipStreamGetCaptureInfo_v2(hipStream_t stream, hipStreamCaptureStatus *captureStatus_out, unsigned long long *id_out __dparm(0), hipGraph_t *graph_out __dparm(0), const hipGraphNode_t **dependencies_out __dparm(0), size_t *numDependencies_out __dparm(0))
Get stream's capture state.
hipError_t hipGraphReleaseUserObject(hipGraph_t graph, hipUserObject_t object, unsigned int count __dparm(1))
Release user object from graphs.
hipError_t hipFreeMipmappedArray(hipMipmappedArray_t mipmappedArray)
Frees a mipmapped array on the device.
hipError_t hipMemcpyToSymbol(const void *symbol, const void *src, size_t sizeBytes, size_t offset __dparm(0), hipMemcpyKind kind __dparm(hipMemcpyHostToDevice))
Copies data to the given symbol on the device. Symbol HIP APIs allow a kernel to define a device-side...
hipError_t hipDestroyExternalMemory(hipExternalMemory_t extMem)
Destroys an external memory object.
hipError_t hipImportExternalSemaphore(hipExternalSemaphore_t *extSem_out, const hipExternalSemaphoreHandleDesc *semHandleDesc)
Imports an external semaphore.
hipError_t hipMemcpyAtoH(void *dst, hipArray *srcArray, size_t srcOffset, size_t count)
Copies data between host and device.
hipError_t hipHostAlloc(void **ptr, size_t size, unsigned int flags)
Allocate device accessible page locked host memory [Deprecated].
hipError_t hipMemcpy2DToArrayAsync(hipArray *dst, size_t wOffset, size_t hOffset, const void *src, size_t spitch, size_t width, size_t height, hipMemcpyKind kind, hipStream_t stream __dparm(0))
Copies data between host and device.
hipError_t hipGetMipmappedArrayLevel(hipArray_t *levelArray, hipMipmappedArray_const_t mipmappedArray, unsigned int level)
Gets a mipmap level of a HIP mipmapped array.
hipError_t hipMemsetD16Async(hipDeviceptr_t dest, unsigned short value, size_t count, hipStream_t stream __dparm(0))
Fills the first sizeBytes bytes of the memory area pointed to by dest with the constant short value v...
hipError_t hipFreeHost(void *ptr)
Free memory allocated by the hcc hip host memory allocation API. [Deprecated].
hipError_t hipMemcpyFromSymbol(void *dst, const void *symbol, size_t sizeBytes, size_t offset __dparm(0), hipMemcpyKind kind __dparm(hipMemcpyDeviceToHost))
Copies data from the given symbol on the device.
hipError_t hipHostFree(void *ptr)
Free memory allocated by the hcc hip host memory allocation API This API performs an implicit hipDevi...
hipError_t hipMemcpyToArray(hipArray *dst, size_t wOffset, size_t hOffset, const void *src, size_t count, hipMemcpyKind kind)
Copies data between host and device.
hipError_t hipMemcpy2DFromArrayAsync(void *dst, size_t dpitch, hipArray_const_t src, size_t wOffset, size_t hOffset, size_t width, size_t height, hipMemcpyKind kind, hipStream_t stream __dparm(0))
Copies data between host and device asynchronously.
hipError_t hipMemGetInfo(size_t *free, size_t *total)
Query memory info.
hipError_t hipExtMallocWithFlags(void **ptr, size_t sizeBytes, unsigned int flags)
Allocate memory on the default accelerator.
hipError_t hipImportExternalMemory(hipExternalMemory_t *extMem_out, const hipExternalMemoryHandleDesc *memHandleDesc)
Imports an external memory object.
hipError_t hipMemcpy3D(const struct hipMemcpy3DParms *p)
Copies data between host and device.
hipError_t hipMemcpy3DAsync(const struct hipMemcpy3DParms *p, hipStream_t stream __dparm(0))
Copies data between host and device asynchronously.
hipError_t hipMemset3D(hipPitchedPtr pitchedDevPtr, int value, hipExtent extent)
Fills synchronously the memory area pointed to by pitchedDevPtr with the constant value.
hipError_t hipModuleGetGlobal(hipDeviceptr_t *dptr, size_t *bytes, hipModule_t hmod, const char *name)
Returns a global pointer from a module. Returns in *dptr and *bytes the pointer and size of the globa...
hipError_t hipMemsetD16(hipDeviceptr_t dest, unsigned short value, size_t count)
Fills the first sizeBytes bytes of the memory area pointed to by dest with the constant short value v...
hipError_t hipMemcpyFromSymbolAsync(void *dst, const void *symbol, size_t sizeBytes, size_t offset, hipMemcpyKind kind, hipStream_t stream __dparm(0))
Copies data from the given symbol on the device asynchronously.
hipError_t hipMalloc(void **ptr, size_t size)
Allocate memory on the default accelerator.
hipError_t hipHostUnregister(void *hostPtr)
Un-register host pointer.
hipError_t hipHostGetFlags(unsigned int *flagsPtr, void *hostPtr)
Return flags associated with host pointer.
hipError_t hipMemsetD32(hipDeviceptr_t dest, int value, size_t count)
Fills the memory area pointed to by dest with the constant integer value for specified number of time...
hipError_t hipDrvMemcpy3DAsync(const HIP_MEMCPY3D *pCopy, hipStream_t stream)
Copies data between host and device asynchronously.
hipError_t hipMallocHost(void **ptr, size_t size)
Allocate pinned host memory [Deprecated].
hipError_t hipMalloc3DArray(hipArray **array, const struct hipChannelFormatDesc *desc, struct hipExtent extent, unsigned int flags)
Allocate an array on the device.
hipError_t hipFree(void *ptr)
Free memory allocated by the hcc hip memory allocation API. This API performs an implicit hipDeviceSy...
hipError_t hipMemcpyToSymbolAsync(const void *symbol, const void *src, size_t sizeBytes, size_t offset, hipMemcpyKind kind, hipStream_t stream __dparm(0))
Copies data to the given symbol on the device asynchronously.
hipError_t hipPointerGetAttributes(hipPointerAttribute_t *attributes, const void *ptr)
Return attributes for the specified pointer.
hipError_t hipMallocPitch(void **ptr, size_t *pitch, size_t width, size_t height)
hipError_t hipMemcpyDtoD(hipDeviceptr_t dst, hipDeviceptr_t src, size_t sizeBytes)
Copy data from Device to Device.
hipError_t hipMemcpy2D(void *dst, size_t dpitch, const void *src, size_t spitch, size_t width, size_t height, hipMemcpyKind kind)
Copies data between host and device.
hipError_t hipMemcpyFromArray(void *dst, hipArray_const_t srcArray, size_t wOffset, size_t hOffset, size_t count, hipMemcpyKind kind)
Copies data between host and device.
hipError_t hipHostGetDevicePointer(void **devPtr, void *hstPtr, unsigned int flags)
Get Device pointer from Host Pointer allocated through hipHostMalloc.
hipError_t hipMemcpyParam2DAsync(const hip_Memcpy2D *pCopy, hipStream_t stream __dparm(0))
Copies memory for 2D arrays.
hipError_t hipDestroyExternalSemaphore(hipExternalSemaphore_t extSem)
Destroys an external semaphore object and releases any references to the underlying resource....
hipError_t hipMemsetD8Async(hipDeviceptr_t dest, unsigned char value, size_t count, hipStream_t stream __dparm(0))
Fills the first sizeBytes bytes of the memory area pointed to by dest with the constant byte value va...
hipError_t hipMemcpy2DFromArray(void *dst, size_t dpitch, hipArray_const_t src, size_t wOffset, size_t hOffset, size_t width, size_t height, hipMemcpyKind kind)
Copies data between host and device.
hipError_t hipDrvMemcpy3D(const HIP_MEMCPY3D *pCopy)
Copies data between host and device.
hipError_t hipMemcpyHtoD(hipDeviceptr_t dst, void *src, size_t sizeBytes)
Copy data from Host to Device.
hipError_t hipMemcpyParam2D(const hip_Memcpy2D *pCopy)
Copies memory for 2D arrays.
hipError_t hipMemsetAsync(void *dst, int value, size_t sizeBytes, hipStream_t stream __dparm(0))
Fills the first sizeBytes bytes of the memory area pointed to by dev with the constant byte value val...
hipError_t hipMemset3DAsync(hipPitchedPtr pitchedDevPtr, int value, hipExtent extent, hipStream_t stream __dparm(0))
Fills asynchronously the memory area pointed to by pitchedDevPtr with the constant value.
hipError_t hipHostMalloc(void **ptr, size_t size, unsigned int flags)
Allocate device accessible page locked host memory.
hipError_t hipMemcpy2DToArray(hipArray *dst, size_t wOffset, size_t hOffset, const void *src, size_t spitch, size_t width, size_t height, hipMemcpyKind kind)
Copies data between host and device.
hipError_t hipMemcpyAsync(void *dst, const void *src, size_t sizeBytes, hipMemcpyKind kind, hipStream_t stream __dparm(0))
Copy data from src to dst asynchronously.
hipError_t hipArray3DCreate(hipArray **array, const HIP_ARRAY3D_DESCRIPTOR *pAllocateArray)
hipError_t hipHostRegister(void *hostPtr, size_t sizeBytes, unsigned int flags)
Register host memory so it can be accessed from the current device.
hipError_t hipMemcpy(void *dst, const void *src, size_t sizeBytes, hipMemcpyKind kind)
Copy data from src to dst.
hipError_t hipMemset(void *dst, int value, size_t sizeBytes)
Fills the first sizeBytes bytes of the memory area pointed to by dest with the constant byte value va...
hipError_t hipMemcpy2DAsync(void *dst, size_t dpitch, const void *src, size_t spitch, size_t width, size_t height, hipMemcpyKind kind, hipStream_t stream __dparm(0))
Copies data between host and device.
hipError_t hipDrvPointerGetAttributes(unsigned int numAttributes, hipPointer_attribute *attributes, void **data, hipDeviceptr_t ptr)
Returns information about the specified pointer.[BETA].
hipError_t hipMalloc3D(hipPitchedPtr *pitchedDevPtr, hipExtent extent)
hipError_t hipMallocArray(hipArray **array, const hipChannelFormatDesc *desc, size_t width, size_t height __dparm(0), unsigned int flags __dparm(hipArrayDefault))
Allocate an array on the device.
hipError_t hipPointerSetAttribute(const void *value, hipPointer_attribute attribute, hipDeviceptr_t ptr)
Sets information on the specified pointer.[BETA].
hipError_t hipMemcpyDtoDAsync(hipDeviceptr_t dst, hipDeviceptr_t src, size_t sizeBytes, hipStream_t stream)
Copy data from Device to Device asynchronously.
hipError_t hipMemAllocPitch(hipDeviceptr_t *dptr, size_t *pitch, size_t widthInBytes, size_t height, unsigned int elementSizeBytes)
hipError_t hipMemsetD8(hipDeviceptr_t dest, unsigned char value, size_t count)
Fills the first sizeBytes bytes of the memory area pointed to by dest with the constant byte value va...
hipError_t hipMemcpyDtoHAsync(void *dst, hipDeviceptr_t src, size_t sizeBytes, hipStream_t stream)
Copy data from Device to Host asynchronously.
hipError_t hipMemset2DAsync(void *dst, size_t pitch, int value, size_t width, size_t height, hipStream_t stream __dparm(0))
Fills asynchronously the memory area pointed to by dst with the constant value.
hipError_t hipWaitExternalSemaphoresAsync(const hipExternalSemaphore_t *extSemArray, const hipExternalSemaphoreWaitParams *paramsArray, unsigned int numExtSems, hipStream_t stream)
Waits on a set of external semaphore objects.
hipError_t hipMallocMipmappedArray(hipMipmappedArray_t *mipmappedArray, const struct hipChannelFormatDesc *desc, struct hipExtent extent, unsigned int numLevels, unsigned int flags __dparm(0))
Allocate a mipmapped array on the device.
hipError_t hipMemset2D(void *dst, size_t pitch, int value, size_t width, size_t height)
Fills the memory area pointed to by dst with the constant value.
hipError_t hipFreeArray(hipArray *array)
Frees an array on the device.
hipError_t hipMemcpyHtoDAsync(hipDeviceptr_t dst, void *src, size_t sizeBytes, hipStream_t stream)
Copy data from Host to Device asynchronously.
hipError_t hipGetSymbolSize(size_t *size, const void *symbol)
Gets the size of the given symbol on the device.
hipError_t hipMemcpyDtoH(void *dst, hipDeviceptr_t src, size_t sizeBytes)
Copy data from Device to Host.
hipError_t hipMemcpyWithStream(void *dst, const void *src, size_t sizeBytes, hipMemcpyKind kind, hipStream_t stream)
hipError_t hipSignalExternalSemaphoresAsync(const hipExternalSemaphore_t *extSemArray, const hipExternalSemaphoreSignalParams *paramsArray, unsigned int numExtSems, hipStream_t stream)
Signals a set of external semaphore objects.
hipError_t hipGetSymbolAddress(void **devPtr, const void *symbol)
Gets device pointer associated with symbol on the device.
hipError_t hipArrayCreate(hipArray **pHandle, const HIP_ARRAY_DESCRIPTOR *pAllocateArray)
hipError_t hipMemAllocHost(void **ptr, size_t size)
Allocate pinned host memory [Deprecated].
hipError_t hipPointerGetAttribute(void *data, hipPointer_attribute attribute, hipDeviceptr_t ptr)
Returns information about the specified pointer.[BETA].
hipError_t hipArrayDestroy(hipArray *array)
hipError_t hipMemcpyHtoA(hipArray *dstArray, size_t dstOffset, const void *srcHost, size_t count)
Copies data between host and device.
hipError_t hipMemPtrGetInfo(void *ptr, size_t *size)
hipError_t hipMemsetD32Async(hipDeviceptr_t dst, int value, size_t count, hipStream_t stream __dparm(0))
Fills the memory area pointed to by dev with the constant integer value for specified number of times...
hipError_t hipExternalMemoryGetMappedBuffer(void **devPtr, hipExternalMemory_t extMem, const hipExternalMemoryBufferDesc *bufferDesc)
Maps a buffer onto an imported memory object.
hipError_t hipStreamAttachMemAsync(hipStream_t stream, void *dev_ptr, size_t length __dparm(0), unsigned int flags __dparm(hipMemAttachSingle))
Attach memory to a stream asynchronously in HIP.
hipError_t hipMemRangeGetAttributes(void **data, size_t *data_sizes, hipMemRangeAttribute *attributes, size_t num_attributes, const void *dev_ptr, size_t count)
Query attributes of a given memory range in HIP.
hipError_t hipMemAdvise(const void *dev_ptr, size_t count, hipMemoryAdvise advice, int device)
Advise about the usage of a given memory range to HIP.
hipError_t hipMemPrefetchAsync(const void *dev_ptr, size_t count, int device, hipStream_t stream __dparm(0))
Prefetches memory to the specified destination device using HIP.
hipError_t hipMemRangeGetAttribute(void *data, size_t data_size, hipMemRangeAttribute attribute, const void *dev_ptr, size_t count)
Query an attribute of a given memory range in HIP.
hipError_t hipMallocManaged(void **dev_ptr, size_t size, unsigned int flags __dparm(hipMemAttachGlobal))
Allocates memory that will be automatically managed by HIP.
hipError_t hipModuleLaunchCooperativeKernelMultiDevice(hipFunctionLaunchParams *launchParamsList, unsigned int numDevices, unsigned int flags)
Launches kernels on multiple devices where thread blocks can cooperate and synchronize as they execut...
hipError_t hipFuncGetAttributes(struct hipFuncAttributes *attr, const void *func)
Find out attributes for a given function.
hipError_t hipModuleGetTexRef(textureReference **texRef, hipModule_t hmod, const char *name)
returns the handle of the texture reference with the name from the module.
hipError_t hipExtLaunchMultiKernelMultiDevice(hipLaunchParams *launchParamsList, int numDevices, unsigned int flags)
Launches kernels on multiple devices and guarantees all specified kernels are dispatched on respectiv...
hipError_t hipModuleLaunchKernel(hipFunction_t f, unsigned int gridDimX, unsigned int gridDimY, unsigned int gridDimZ, unsigned int blockDimX, unsigned int blockDimY, unsigned int blockDimZ, unsigned int sharedMemBytes, hipStream_t stream, void **kernelParams, void **extra)
launches kernel f with launch parameters and shared memory on stream with arguments passed to kernelp...
hipError_t hipModuleLoad(hipModule_t *module, const char *fname)
Loads code object from file into a hipModule_t.
hipError_t hipModuleLoadDataEx(hipModule_t *module, const void *image, unsigned int numOptions, hipJitOption *options, void **optionValues)
builds module from code object which resides in host memory. Image is pointer to that location....
hipError_t hipFuncGetAttribute(int *value, hipFunction_attribute attrib, hipFunction_t hfunc)
Find out a specific attribute for a given function.
hipError_t hipLaunchCooperativeKernelMultiDevice(hipLaunchParams *launchParamsList, int numDevices, unsigned int flags)
Launches kernels on multiple devices where thread blocks can cooperate and synchronize as they execut...
hipError_t hipModuleLaunchCooperativeKernel(hipFunction_t f, unsigned int gridDimX, unsigned int gridDimY, unsigned int gridDimZ, unsigned int blockDimX, unsigned int blockDimY, unsigned int blockDimZ, unsigned int sharedMemBytes, hipStream_t stream, void **kernelParams)
launches kernel f with launch parameters and shared memory on stream with arguments passed to kernelP...
hipError_t hipModuleGetFunction(hipFunction_t *function, hipModule_t module, const char *kname)
Function with kname will be extracted if present in module.
hipError_t hipLaunchCooperativeKernel(const void *f, dim3 gridDim, dim3 blockDimX, void **kernelParams, unsigned int sharedMemBytes, hipStream_t stream)
launches kernel f with launch parameters and shared memory on stream with arguments passed to kernelp...
hipError_t hipModuleLoadData(hipModule_t *module, const void *image)
builds module from code object which resides in host memory. Image is pointer to that location.
hipError_t hipModuleUnload(hipModule_t module)
Frees the module.
hipError_t hipOccupancyMaxActiveBlocksPerMultiprocessorWithFlags(int *numBlocks, const void *f, int blockSize, size_t dynSharedMemPerBlk, unsigned int flags __dparm(hipOccupancyDefault))
Returns occupancy for a device function.
hipError_t hipModuleOccupancyMaxPotentialBlockSize(int *gridSize, int *blockSize, hipFunction_t f, size_t dynSharedMemPerBlk, int blockSizeLimit)
determine the grid and block sizes to achieves maximum occupancy for a kernel
hipError_t hipOccupancyMaxActiveBlocksPerMultiprocessor(int *numBlocks, const void *f, int blockSize, size_t dynSharedMemPerBlk)
Returns occupancy for a device function.
hipError_t hipOccupancyMaxPotentialBlockSize(int *gridSize, int *blockSize, const void *f, size_t dynSharedMemPerBlk, int blockSizeLimit)
determine the grid and block sizes to achieves maximum occupancy for a kernel
hipError_t hipModuleOccupancyMaxActiveBlocksPerMultiprocessor(int *numBlocks, hipFunction_t f, int blockSize, size_t dynSharedMemPerBlk)
Returns occupancy for a device function.
hipError_t hipModuleOccupancyMaxActiveBlocksPerMultiprocessorWithFlags(int *numBlocks, hipFunction_t f, int blockSize, size_t dynSharedMemPerBlk, unsigned int flags)
Returns occupancy for a device function.
hipError_t hipModuleOccupancyMaxPotentialBlockSizeWithFlags(int *gridSize, int *blockSize, hipFunction_t f, size_t dynSharedMemPerBlk, int blockSizeLimit, unsigned int flags)
determine the grid and block sizes to achieves maximum occupancy for a kernel
hipError_t hipDeviceCanAccessPeer(int *canAccessPeer, int deviceId, int peerDeviceId)
Determine if a device can access a peer's memory.
hipError_t hipDeviceEnablePeerAccess(int peerDeviceId, unsigned int flags)
Enable direct access from current device's virtual address space to memory allocations physically loc...
hipError_t hipMemcpyPeer(void *dst, int dstDeviceId, const void *src, int srcDeviceId, size_t sizeBytes)
Copies memory from one device to memory on another device.
hipError_t hipMemcpyPeerAsync(void *dst, int dstDeviceId, const void *src, int srcDevice, size_t sizeBytes, hipStream_t stream __dparm(0))
Copies memory from one device to memory on another device.
hipError_t hipDeviceDisablePeerAccess(int peerDeviceId)
Disable direct access from current device's virtual address space to memory allocations physically lo...
hipError_t hipMemGetAddressRange(hipDeviceptr_t *pbase, size_t *psize, hipDeviceptr_t dptr)
Get information on memory allocations.
hipError_t hipProfilerStart()
Start recording of profiling information When using this API, start the profiler with profiling disab...
hipError_t hipProfilerStop()
Stop recording of profiling information. When using this API, start the profiler with profiling disab...
hipError_t hipDeviceGetStreamPriorityRange(int *leastPriority, int *greatestPriority)
Returns numerical values that correspond to the least and greatest stream priority.
hipError_t hipStreamDestroy(hipStream_t stream)
Destroys the specified stream.
hipError_t hipStreamGetFlags(hipStream_t stream, unsigned int *flags)
Return flags associated with this stream.
hipError_t hipStreamAddCallback(hipStream_t stream, hipStreamCallback_t callback, void *userData, unsigned int flags)
Adds a callback to be called on the host after all currently enqueued items in the stream have comple...
void(* hipStreamCallback_t)(hipStream_t stream, hipError_t status, void *userData)
Definition: hip_runtime_api.h:2258
hipError_t hipStreamQuery(hipStream_t stream)
Return hipSuccess if all of the operations in the specified stream have completed,...
hipError_t hipStreamSynchronize(hipStream_t stream)
Wait for all commands in stream to complete.
hipError_t hipStreamWaitEvent(hipStream_t stream, hipEvent_t event, unsigned int flags)
Make the specified compute stream wait for an event.
hipError_t hipStreamCreateWithPriority(hipStream_t *stream, unsigned int flags, int priority)
Create an asynchronous stream with the specified priority.
hipError_t hipExtStreamCreateWithCUMask(hipStream_t *stream, uint32_t cuMaskSize, const uint32_t *cuMask)
Create an asynchronous stream with the specified CU mask.
hipError_t hipStreamGetPriority(hipStream_t stream, int *priority)
Query the priority of a stream.
hipError_t hipExtStreamGetCUMask(hipStream_t stream, uint32_t cuMaskSize, uint32_t *cuMask)
Get CU mask associated with an asynchronous stream.
hipError_t hipStreamCreateWithFlags(hipStream_t *stream, unsigned int flags)
Create an asynchronous stream.
hipError_t hipStreamCreate(hipStream_t *stream)
Create an asynchronous stream.
hipError_t hipStreamWriteValue64(hipStream_t stream, void *ptr, uint64_t value, unsigned int flags)
Enqueues a write command to the stream.[BETA].
hipError_t hipStreamWriteValue32(hipStream_t stream, void *ptr, uint32_t value, unsigned int flags)
Enqueues a write command to the stream.[BETA].
hipError_t hipStreamWaitValue32(hipStream_t stream, void *ptr, uint32_t value, unsigned int flags, uint32_t mask __dparm(0xFFFFFFFF))
Enqueues a wait command to the stream.[BETA].
hipError_t hipStreamWaitValue64(hipStream_t stream, void *ptr, uint64_t value, unsigned int flags, uint64_t mask __dparm(0xFFFFFFFFFFFFFFFF))
Enqueues a wait command to the stream.[BETA].
hipError_t hipMemPoolImportPointer(void **dev_ptr, hipMemPool_t mem_pool, hipMemPoolPtrExportData *export_data)
Import a memory pool allocation from another process.
hipError_t hipMemPoolImportFromShareableHandle(hipMemPool_t *mem_pool, void *shared_handle, hipMemAllocationHandleType handle_type, unsigned int flags)
Imports a memory pool from a shared handle.
hipError_t hipMallocFromPoolAsync(void **dev_ptr, size_t size, hipMemPool_t mem_pool, hipStream_t stream)
Allocates memory from a specified pool with stream ordered semantics.
hipError_t hipFreeAsync(void *dev_ptr, hipStream_t stream)
Frees memory with stream ordered semantics.
hipError_t hipMemPoolTrimTo(hipMemPool_t mem_pool, size_t min_bytes_to_hold)
Releases freed memory back to the OS.
hipError_t hipMemPoolCreate(hipMemPool_t *mem_pool, const hipMemPoolProps *pool_props)
Creates a memory pool.
hipError_t hipMemPoolSetAccess(hipMemPool_t mem_pool, const hipMemAccessDesc *desc_list, size_t count)
Controls visibility of the specified pool between devices.
hipError_t hipMemPoolDestroy(hipMemPool_t mem_pool)
Destroys the specified memory pool.
hipError_t hipMemPoolSetAttribute(hipMemPool_t mem_pool, hipMemPoolAttr attr, void *value)
Sets attributes of a memory pool.
hipError_t hipMemPoolGetAttribute(hipMemPool_t mem_pool, hipMemPoolAttr attr, void *value)
Gets attributes of a memory pool.
hipError_t hipMemPoolExportToShareableHandle(void *shared_handle, hipMemPool_t mem_pool, hipMemAllocationHandleType handle_type, unsigned int flags)
Exports a memory pool to the requested handle type.
hipError_t hipMemPoolExportPointer(hipMemPoolPtrExportData *export_data, void *dev_ptr)
Export data to share a memory pool allocation between processes.
hipError_t hipMallocAsync(void **dev_ptr, size_t size, hipStream_t stream)
Allocates memory with stream ordered semantics.
hipError_t hipMemPoolGetAccess(hipMemAccessFlags *flags, hipMemPool_t mem_pool, hipMemLocation *location)
Returns the accessibility of a pool from a device.
hipError_t hipTexRefGetFilterMode(enum hipTextureFilterMode *pfm, const textureReference *texRef)
hipError_t hipTexRefGetMipmapLevelClamp(float *pminMipmapLevelClamp, float *pmaxMipmapLevelClamp, const textureReference *texRef)
hipError_t hipTexRefGetAddressMode(enum hipTextureAddressMode *pam, const textureReference *texRef, int dim)
hipError_t hipTexRefGetFlags(unsigned int *pFlags, const textureReference *texRef)
hipError_t hipTexRefSetAddress(size_t *ByteOffset, textureReference *texRef, hipDeviceptr_t dptr, size_t bytes)
hipError_t hipTexRefSetFilterMode(textureReference *texRef, enum hipTextureFilterMode fm)
hipError_t hipTexRefSetMipmappedArray(textureReference *texRef, struct hipMipmappedArray *mipmappedArray, unsigned int Flags)
hipError_t hipTexRefGetMipmapFilterMode(enum hipTextureFilterMode *pfm, const textureReference *texRef)
hipError_t hipGetTextureAlignmentOffset(size_t *offset, const textureReference *texref)
hipError_t hipBindTexture2D(size_t *offset, const textureReference *tex, const void *devPtr, const hipChannelFormatDesc *desc, size_t width, size_t height, size_t pitch)
hipError_t hipTexRefGetMaxAnisotropy(int *pmaxAnsio, const textureReference *texRef)
hipError_t hipUnbindTexture(const textureReference *tex)
hipError_t hipTexRefSetFormat(textureReference *texRef, hipArray_Format fmt, int NumPackedComponents)
hipError_t hipTexRefGetAddress(hipDeviceptr_t *dev_ptr, const textureReference *texRef)
hipError_t hipTexRefSetFlags(textureReference *texRef, unsigned int Flags)
hipError_t hipTexRefSetAddressMode(textureReference *texRef, int dim, enum hipTextureAddressMode am)
hipError_t hipTexRefGetMipMappedArray(hipMipmappedArray_t *pArray, const textureReference *texRef)
hipError_t hipTexRefSetMaxAnisotropy(textureReference *texRef, unsigned int maxAniso)
hipError_t hipTexRefSetMipmapLevelClamp(textureReference *texRef, float minMipMapLevelClamp, float maxMipMapLevelClamp)
hipError_t hipTexRefSetBorderColor(textureReference *texRef, float *pBorderColor)
hipError_t hipTexRefSetArray(textureReference *tex, hipArray_const_t array, unsigned int flags)
hipError_t hipTexRefSetMipmapLevelBias(textureReference *texRef, float bias)
hipError_t hipTexRefGetMipmapLevelBias(float *pbias, const textureReference *texRef)
hipError_t hipBindTextureToArray(const textureReference *tex, hipArray_const_t array, const hipChannelFormatDesc *desc)
hipError_t hipBindTexture(size_t *offset, const textureReference *tex, const void *devPtr, const hipChannelFormatDesc *desc, size_t size __dparm(UINT_MAX))
hipError_t hipGetTextureReference(const textureReference **texref, const void *symbol)
Gets the texture reference related with the symbol.
hipError_t hipTexRefSetAddress2D(textureReference *texRef, const HIP_ARRAY_DESCRIPTOR *desc, hipDeviceptr_t dptr, size_t Pitch)
hipError_t hipTexRefSetMipmapFilterMode(textureReference *texRef, enum hipTextureFilterMode fm)
hipError_t hipTexRefGetFormat(hipArray_Format *pFormat, int *pNumChannels, const textureReference *texRef)
hipError_t hipBindTextureToMipmappedArray(const textureReference *tex, hipMipmappedArray_const_t mipmappedArray, const hipChannelFormatDesc *desc)
Binds a mipmapped array to a texture.
hipError_t hipTexObjectCreate(hipTextureObject_t *pTexObject, const HIP_RESOURCE_DESC *pResDesc, const HIP_TEXTURE_DESC *pTexDesc, const HIP_RESOURCE_VIEW_DESC *pResViewDesc)
Creates a texture object.
hipError_t hipGetTextureObjectResourceDesc(hipResourceDesc *pResDesc, hipTextureObject_t textureObject)
Gets resource descriptor for the texture object.
hipError_t hipGetTextureObjectResourceViewDesc(struct hipResourceViewDesc *pResViewDesc, hipTextureObject_t textureObject)
Gets resource view descriptor for the texture object.
hipError_t hipTexObjectGetTextureDesc(HIP_TEXTURE_DESC *pTexDesc, hipTextureObject_t texObject)
Gets texture descriptor of a texture object.
hipError_t hipCreateTextureObject(hipTextureObject_t *pTexObject, const hipResourceDesc *pResDesc, const hipTextureDesc *pTexDesc, const struct hipResourceViewDesc *pResViewDesc)
Creates a texture object.
hipError_t hipTexObjectDestroy(hipTextureObject_t texObject)
Destroys a texture object.
hipError_t hipGetChannelDesc(hipChannelFormatDesc *desc, hipArray_const_t array)
Gets the channel descriptor in an array.
hipError_t hipTexObjectGetResourceDesc(HIP_RESOURCE_DESC *pResDesc, hipTextureObject_t texObject)
Gets resource descriptor of a texture object.
hipError_t hipTexObjectGetResourceViewDesc(HIP_RESOURCE_VIEW_DESC *pResViewDesc, hipTextureObject_t texObject)
Gets resource view descriptor of a texture object.
hipError_t hipDestroyTextureObject(hipTextureObject_t textureObject)
Destroys a texture object.
hipError_t hipGetTextureObjectTextureDesc(hipTextureDesc *pTexDesc, hipTextureObject_t textureObject)
Gets texture descriptor for the texture object.
hipError_t hipMipmappedArrayGetLevel(hipArray_t *pLevelArray, hipMipmappedArray_t hMipMappedArray, unsigned int level)
hipError_t hipMipmappedArrayDestroy(hipMipmappedArray_t hMipmappedArray)
hipError_t hipMipmappedArrayCreate(hipMipmappedArray_t *pHandle, HIP_ARRAY3D_DESCRIPTOR *pMipmappedArrayDesc, unsigned int numMipmapLevels)
hipError_t hipMemAddressFree(void *devPtr, size_t size)
Frees an address range reservation made via hipMemAddressReserve.
hipError_t hipMemExportToShareableHandle(void *shareableHandle, hipMemGenericAllocationHandle_t handle, hipMemAllocationHandleType handleType, unsigned long long flags)
Exports an allocation to a requested shareable handle type.
hipError_t hipMemGetAccess(unsigned long long *flags, const hipMemLocation *location, void *ptr)
Get the access flags set for the given location and ptr.
hipError_t hipMemSetAccess(void *ptr, size_t size, const hipMemAccessDesc *desc, size_t count)
Set the access flags for each location specified in desc for the given virtual address range.
hipError_t hipMemRelease(hipMemGenericAllocationHandle_t handle)
Release a memory handle representing a memory allocation which was previously allocated through hipMe...
hipError_t hipMemUnmap(void *ptr, size_t size)
Unmap memory allocation of a given address range.
hipError_t hipMemGetAllocationGranularity(size_t *granularity, const hipMemAllocationProp *prop, hipMemAllocationGranularity_flags option)
Calculates either the minimal or recommended granularity.
hipError_t hipMemRetainAllocationHandle(hipMemGenericAllocationHandle_t *handle, void *addr)
Returns the allocation handle of the backing memory allocation given the address.
hipError_t hipMemCreate(hipMemGenericAllocationHandle_t *handle, size_t size, const hipMemAllocationProp *prop, unsigned long long flags)
Creates a memory allocation described by the properties and size.
hipError_t hipMemMap(void *ptr, size_t size, size_t offset, hipMemGenericAllocationHandle_t handle, unsigned long long flags)
Maps an allocation handle to a reserved virtual address range.
hipError_t hipMemAddressReserve(void **ptr, size_t size, size_t alignment, void *addr, unsigned long long flags)
Reserves an address range.
hipError_t hipMemGetAllocationPropertiesFromHandle(hipMemAllocationProp *prop, hipMemGenericAllocationHandle_t handle)
Retrieve the property structure of the given handle.
hipError_t hipMemMapArrayAsync(hipArrayMapInfo *mapInfoList, unsigned int count, hipStream_t stream)
Maps or unmaps subregions of sparse HIP arrays and sparse HIP mipmapped arrays.
hipError_t hipMemImportFromShareableHandle(hipMemGenericAllocationHandle_t *handle, void *osHandle, hipMemAllocationHandleType shHandleType)
Imports an allocation from a requested shareable handle type.
hipLimit_t
Definition: hip_runtime_api.h:558
@ hipLimitMallocHeapSize
Definition: hip_runtime_api.h:561
@ hipLimitStackSize
Definition: hip_runtime_api.h:559
@ hipLimitRange
Definition: hip_runtime_api.h:562
@ hipLimitPrintfFifoSize
Definition: hip_runtime_api.h:560
hipErrorIllegalAddress
Definition: hip_runtime_api.h:273
hipErrorMemoryAllocation
Memory allocation error.
Definition: hip_runtime_api.h:219
hipErrorNotFound
Definition: hip_runtime_api.h:268
struct ihipCtx_t * hipCtx_t
Definition: hip_runtime_api.h:520
hipErrorProfilerDisabled
Definition: hip_runtime_api.h:224
#define __dparm(x)
Definition: hip_runtime_api.h:504
struct ihipStream_t * hipStream_t
Definition: hip_runtime_api.h:529
hipErrorInvalidDevicePointer
Invalid Device Pointer.
Definition: hip_runtime_api.h:231
int hipDevice_t
Definition: hip_runtime_api.h:522
hipErrorRuntimeMemory
Definition: hip_runtime_api.h:322
hipErrorInvalidImage
Definition: hip_runtime_api.h:239
hipErrorPeerAccessUnsupported
Definition: hip_runtime_api.h:256
hipErrorArrayIsMapped
Definition: hip_runtime_api.h:246
hipErrorStreamCaptureIsolation
Definition: hip_runtime_api.h:303
hipErrorInvalidKernelFile
In CUDA DRV, it is CUDA_ERROR_INVALID_PTX.
Definition: hip_runtime_api.h:257
hipErrorNotMapped
Definition: hip_runtime_api.h:250
struct ihipEvent_t * hipEvent_t
Definition: hip_runtime_api.h:557
hipErrorGraphExecUpdateFailure
Definition: hip_runtime_api.h:316
hipErrorNotInitialized
Definition: hip_runtime_api.h:220
hipErrorInvalidResourceHandle
Resource handle (hipEvent_t or hipStream_t) invalid.
Definition: hip_runtime_api.h:266
hipErrorSharedObjectInitFailed
Definition: hip_runtime_api.h:262
hipErrorInvalidPitchValue
Definition: hip_runtime_api.h:229
hipErrorNoBinaryForGpu
Definition: hip_runtime_api.h:248
hipErrorInvalidContext
Produced when input context is invalid.
Definition: hip_runtime_api.h:240
hipDeviceP2PAttr
Definition: hip_runtime_api.h:523
@ hipDevP2PAttrAccessSupported
Definition: hip_runtime_api.h:525
@ hipDevP2PAttrHipArrayAccessSupported
Definition: hip_runtime_api.h:527
@ hipDevP2PAttrNativeAtomicSupported
Definition: hip_runtime_api.h:526
@ hipDevP2PAttrPerformanceRank
Definition: hip_runtime_api.h:524
hipErrorStreamCaptureUnsupported
Definition: hip_runtime_api.h:294
hipErrorPeerAccessNotEnabled
Peer access was never enabled from the current device.
Definition: hip_runtime_api.h:278
hipErrorOperatingSystem
Definition: hip_runtime_api.h:263
hipErrorStreamCaptureUnjoined
Definition: hip_runtime_api.h:301
hipErrorInitializationError
Definition: hip_runtime_api.h:222
hipErrorNotMappedAsPointer
Definition: hip_runtime_api.h:252
hipErrorPriorLaunchFailure
Definition: hip_runtime_api.h:235
hipErrorContextIsDestroyed
Definition: hip_runtime_api.h:281
hipErrorInvalidValue
Definition: hip_runtime_api.h:215
hipErrorLaunchTimeOut
Definition: hip_runtime_api.h:275
hipErrorUnmapFailed
Definition: hip_runtime_api.h:245
hipErrorSetOnActiveProcess
Definition: hip_runtime_api.h:280
hipErrorFileNotFound
Definition: hip_runtime_api.h:260
hipErrorLaunchFailure
An exception occurred on the device while executing a kernel.
Definition: hip_runtime_api.h:287
hipErrorInvalidDevice
DeviceID must be in range 0...#compute-devices.
Definition: hip_runtime_api.h:238
hipErrorUnsupportedLimit
Definition: hip_runtime_api.h:254
hipErrorMapBufferObjectFailed
Produced when the IPC memory attach failed from ROCr.
Definition: hip_runtime_api.h:244
hipErrorHostMemoryAlreadyRegistered
Produced when trying to lock a page-locked memory.
Definition: hip_runtime_api.h:283
hipErrorMissingConfiguration
Definition: hip_runtime_api.h:234
hipErrorSharedObjectSymbolNotFound
Definition: hip_runtime_api.h:261
hipErrorECCNotCorrectable
Definition: hip_runtime_api.h:253
hipErrorStreamCaptureWrongThread
Definition: hip_runtime_api.h:312
hipErrorAssert
Produced when the kernel calls assert.
Definition: hip_runtime_api.h:282
#define DEPRECATED_MSG
Definition: hip_runtime_api.h:496
hipErrorContextAlreadyInUse
Definition: hip_runtime_api.h:255
hipErrorNotReady
Definition: hip_runtime_api.h:269
hipErrorInvalidSource
Definition: hip_runtime_api.h:259
hipErrorLaunchOutOfResources
Out of resources error.
Definition: hip_runtime_api.h:274
hipErrorInvalidDeviceFunction
Definition: hip_runtime_api.h:236
hipErrorCooperativeLaunchTooLarge
Definition: hip_runtime_api.h:289
hipErrorAlreadyMapped
Definition: hip_runtime_api.h:247
struct ihipModule_t * hipModule_t
Definition: hip_runtime_api.h:538
hipErrorProfilerNotInitialized
Definition: hip_runtime_api.h:225
hipErrorProfilerAlreadyStarted
Definition: hip_runtime_api.h:226
hipErrorNoDevice
Call to hipGetDeviceCount returned 0 devices.
Definition: hip_runtime_api.h:237
@ HIP_ERROR_LAUNCH_OUT_OF_RESOURCES
Definition: hip_runtime_api.h:42
@ HIP_ERROR_INVALID_VALUE
Definition: hip_runtime_api.h:40
@ HIP_SUCCESS
Definition: hip_runtime_api.h:39
@ HIP_ERROR_NOT_INITIALIZED
Definition: hip_runtime_api.h:41
hipErrorMapFailed
Definition: hip_runtime_api.h:242
hipErrorStreamCaptureInvalidated
Definition: hip_runtime_api.h:296
struct ihipModuleSymbol_t * hipFunction_t
Definition: hip_runtime_api.h:539
hipErrorProfilerAlreadyStopped
Definition: hip_runtime_api.h:227
hipErrorDeinitialized
Definition: hip_runtime_api.h:223
hipErrorPeerAccessAlreadyEnabled
Peer access was already enabled from the current device.
Definition: hip_runtime_api.h:276
hipErrorNotMappedAsArray
Definition: hip_runtime_api.h:251
#define DEPRECATED(msg)
Definition: hip_runtime_api.h:494
hipErrorNotSupported
Produced when the hip API is not supported/implemented.
Definition: hip_runtime_api.h:293
hipErrorInvalidConfiguration
Definition: hip_runtime_api.h:228
hipErrorStreamCaptureImplicit
Definition: hip_runtime_api.h:307
hipErrorStreamCaptureMerge
Definition: hip_runtime_api.h:298
hipErrorInvalidGraphicsContext
Definition: hip_runtime_api.h:258
hipErrorIllegalState
Resource required is not in a valid state to perform operation.
Definition: hip_runtime_api.h:267
hipErrorOutOfMemory
Definition: hip_runtime_api.h:217
hipErrorInvalidSymbol
Definition: hip_runtime_api.h:230
hipSuccess
Successful completion.
Definition: hip_runtime_api.h:214
hipErrorUnknown
Definition: hip_runtime_api.h:320
hipMemoryType
Definition: hip_runtime_api.h:161
@ hipMemoryTypeDevice
Definition: hip_runtime_api.h:163
@ hipMemoryTypeHost
Memory is physically located on host.
Definition: hip_runtime_api.h:162
@ hipMemoryTypeArray
Definition: hip_runtime_api.h:165
@ hipMemoryTypeManaged
Definition: hip_runtime_api.h:168
@ hipMemoryTypeUnified
Not used currently.
Definition: hip_runtime_api.h:167
hipErrorInvalidHandle
Definition: hip_runtime_api.h:264
hipErrorStreamCaptureUnmatched
The capture was not initiated in this stream.
Definition: hip_runtime_api.h:300
hipErrorCapturedEvent
Definition: hip_runtime_api.h:310
hipErrorAlreadyAcquired
Definition: hip_runtime_api.h:249
hipErrorInsufficientDriver
Definition: hip_runtime_api.h:233
hipErrorHostMemoryNotRegistered
Produced when trying to unlock a non-page-locked memory.
Definition: hip_runtime_api.h:285
#define HIP_IPC_HANDLE_SIZE
Definition: hip_runtime_api.h:531
struct ihipMemPoolHandle_t * hipMemPool_t
Definition: hip_runtime_api.h:543
hipErrorRuntimeOther
Definition: hip_runtime_api.h:324
hipErrorContextAlreadyCurrent
Definition: hip_runtime_api.h:241
hipErrorInvalidMemcpyDirection
Invalid memory copy direction.
Definition: hip_runtime_api.h:232
Definition: driver_types.h:74
Definition: driver_types.h:68
Definition: driver_types.h:379
Definition: driver_types.h:282
Definition: driver_types.h:328
Definition: driver_types.h:165
Definition: hip_runtime_api.h:948
uint32_t y
y
Definition: hip_runtime_api.h:950
uint32_t z
z
Definition: hip_runtime_api.h:951
uint32_t x
x
Definition: hip_runtime_api.h:949
Definition: driver_types.h:95
Definition: hip_runtime_api.h:1181
hipAccessProperty hitProp
Definition: hip_runtime_api.h:1183
hipAccessProperty missProp
Definition: hip_runtime_api.h:1185
float hitRatio
Definition: hip_runtime_api.h:1184
void * base_ptr
Definition: hip_runtime_api.h:1182
size_t num_bytes
Definition: hip_runtime_api.h:1186
Definition: driver_types.h:82
Definition: hip_runtime_api.h:1329
unsigned int level
For mipmapped arrays must be a valid mipmap level. For arrays must be zero.
Definition: hip_runtime_api.h:1338
struct hipArrayMapInfo::@26::@28 sparseLevel
unsigned int flags
flags for future use, must be zero now.
Definition: hip_runtime_api.h:1360
union hipArrayMapInfo::@25 resource
hipArraySparseSubresourceType subresourceType
Sparse subresource type.
Definition: hip_runtime_api.h:1335
unsigned int extentDepth
Depth in elements.
Definition: hip_runtime_api.h:1345
unsigned int offsetX
X offset in elements.
Definition: hip_runtime_api.h:1340
hipArray_t array
Definition: hip_runtime_api.h:1333
hipResourceType resourceType
Resource type.
Definition: hip_runtime_api.h:1330
hipMemOperationType memOperationType
Memory operation type.
Definition: hip_runtime_api.h:1353
unsigned int reserved[2]
Reserved for future use, must be zero now.
Definition: hip_runtime_api.h:1361
unsigned int extentWidth
Width in elements.
Definition: hip_runtime_api.h:1343
union hipArrayMapInfo::@26 subresource
unsigned int extentHeight
Height in elements.
Definition: hip_runtime_api.h:1344
unsigned int offsetY
Y offset in elements.
Definition: hip_runtime_api.h:1341
hipMemHandleType memHandleType
Memory handle type.
Definition: hip_runtime_api.h:1354
struct hipArrayMapInfo::@26::@29 miptail
hipMemGenericAllocationHandle_t memHandle
Definition: hip_runtime_api.h:1356
hipMipmappedArray mipmap
Definition: hip_runtime_api.h:1332
unsigned int layer
For layered arrays must be a valid layer index. Otherwise, must be zero.
Definition: hip_runtime_api.h:1339
unsigned int deviceBitMask
Device ordinal bit mask.
Definition: hip_runtime_api.h:1359
unsigned long long size
Extent in bytes.
Definition: hip_runtime_api.h:1350
unsigned long long offset
Offset within mip tail.
Definition: hip_runtime_api.h:1349
unsigned int offsetZ
Z offset in elements.
Definition: hip_runtime_api.h:1342
Definition: driver_types.h:47
Definition: hip_runtime_api.h:45
unsigned hasSharedInt64Atomics
64-bit integer atomics for shared memory.
Definition: hip_runtime_api.h:55
unsigned hasSharedInt32Atomics
32-bit integer atomics for shared memory.
Definition: hip_runtime_api.h:49
unsigned hasFloatAtomicAdd
32-bit float atomic add in global and shared memory.
Definition: hip_runtime_api.h:51
unsigned hasDoubles
Double-precision floating point.
Definition: hip_runtime_api.h:58
unsigned hasWarpVote
Warp vote instructions (__any, __all).
Definition: hip_runtime_api.h:61
unsigned hasWarpShuffle
Warp shuffle operations. (__shfl_*).
Definition: hip_runtime_api.h:63
unsigned hasGlobalInt32Atomics
32-bit integer atomics for global memory.
Definition: hip_runtime_api.h:47
unsigned hasGlobalFloatAtomicExch
32-bit float atomic exch for global memory.
Definition: hip_runtime_api.h:48
unsigned hasDynamicParallelism
Dynamic parallelism.
Definition: hip_runtime_api.h:73
unsigned hasSurfaceFuncs
Surface functions.
Definition: hip_runtime_api.h:71
unsigned has3dGrid
Grid and group dims are 3D (rather than 2D).
Definition: hip_runtime_api.h:72
unsigned hasFunnelShift
Funnel two words into one with shift&mask caps.
Definition: hip_runtime_api.h:64
unsigned hasThreadFenceSystem
__threadfence_system.
Definition: hip_runtime_api.h:67
unsigned hasGlobalInt64Atomics
64-bit integer atomics for global memory.
Definition: hip_runtime_api.h:54
unsigned hasSyncThreadsExt
__syncthreads_count, syncthreads_and, syncthreads_or.
Definition: hip_runtime_api.h:68
unsigned hasWarpBallot
Warp ballot instructions (__ballot).
Definition: hip_runtime_api.h:62
unsigned hasSharedFloatAtomicExch
32-bit float atomic exch for shared memory.
Definition: hip_runtime_api.h:50
Definition: hip_runtime_api.h:87
int ECCEnabled
Device has ECC support enabled.
Definition: hip_runtime_api.h:135
int maxTexture1DLinear
Maximum size for 1D textures bound to linear memory.
Definition: hip_runtime_api.h:125
int pciBusID
PCI Bus ID.
Definition: hip_runtime_api.h:115
int maxTexture1D
Maximum number of elements in 1D images.
Definition: hip_runtime_api.h:126
int memoryBusWidth
Global memory bus width in bits.
Definition: hip_runtime_api.h:98
int clockRate
Max clock frequency of the multiProcessors in khz.
Definition: hip_runtime_api.h:96
int maxThreadsPerMultiProcessor
Maximum resident threads per multi-processor.
Definition: hip_runtime_api.h:108
int l2CacheSize
L2 cache size.
Definition: hip_runtime_api.h:107
size_t totalConstMem
Size of shared memory region (in bytes).
Definition: hip_runtime_api.h:99
size_t memPitch
Maximum pitch in bytes allowed by memory copies.
Definition: hip_runtime_api.h:131
size_t sharedMemPerBlock
Size of shared memory region (in bytes).
Definition: hip_runtime_api.h:90
int cooperativeMultiDeviceLaunch
HIP device supports cooperative launch on multiple devices.
Definition: hip_runtime_api.h:124
int pageableMemoryAccess
Definition: hip_runtime_api.h:150
char name[256]
Device name.
Definition: hip_runtime_api.h:88
size_t textureAlignment
Alignment requirement for textures.
Definition: hip_runtime_api.h:132
int memoryClockRate
Max global memory clock frequency in khz.
Definition: hip_runtime_api.h:97
int clockInstructionRate
Definition: hip_runtime_api.h:110
int regsPerBlock
Registers per block.
Definition: hip_runtime_api.h:91
int maxTexture2D[2]
Maximum dimensions (width, height) of 2D images, in image elements.
Definition: hip_runtime_api.h:127
int cooperativeLaunch
HIP device supports cooperative launch.
Definition: hip_runtime_api.h:123
int maxTexture3D[3]
Maximum dimensions (width, height, depth) of 3D images, in image elements.
Definition: hip_runtime_api.h:128
int directManagedMemAccessFromHost
Host can directly access managed memory on the device without migration.
Definition: hip_runtime_api.h:148
int cooperativeMultiDeviceUnmatchedFunc
Definition: hip_runtime_api.h:137
int pageableMemoryAccessUsesHostPageTables
Device accesses pageable memory via the host's page tables.
Definition: hip_runtime_api.h:152
unsigned int * hdpRegFlushCntl
Addres of HDP_REG_COHERENCY_FLUSH_CNTL register.
Definition: hip_runtime_api.h:130
int maxThreadsDim[3]
Max number of threads in each dimension (XYZ) of a block.
Definition: hip_runtime_api.h:94
int isMultiGpuBoard
1 if device is on a multi-GPU board, 0 if not.
Definition: hip_runtime_api.h:118
int pciDomainID
PCI Domain ID.
Definition: hip_runtime_api.h:114
size_t maxSharedMemoryPerMultiProcessor
Maximum Shared Memory Per Multiprocessor.
Definition: hip_runtime_api.h:117
int cooperativeMultiDeviceUnmatchedGridDim
Definition: hip_runtime_api.h:139
int minor
Definition: hip_runtime_api.h:103
char gcnArchName[256]
AMD GCN Arch Name.
Definition: hip_runtime_api.h:121
int kernelExecTimeoutEnabled
Run time limit for kernels executed on the device.
Definition: hip_runtime_api.h:134
unsigned int * hdpMemFlushCntl
Addres of HDP_MEM_COHERENCY_FLUSH_CNTL register.
Definition: hip_runtime_api.h:129
int concurrentManagedAccess
Device can coherently access managed memory concurrently with the CPU.
Definition: hip_runtime_api.h:149
int integrated
APU vs dGPU.
Definition: hip_runtime_api.h:122
int canMapHostMemory
Check whether HIP can map host memory.
Definition: hip_runtime_api.h:119
int asicRevision
Revision of the GPU in this device.
Definition: hip_runtime_api.h:146
size_t totalGlobalMem
Size of global memory region (in bytes).
Definition: hip_runtime_api.h:89
int cooperativeMultiDeviceUnmatchedBlockDim
Definition: hip_runtime_api.h:141
int concurrentKernels
Device can possibly execute multiple kernels concurrently.
Definition: hip_runtime_api.h:113
int isLargeBar
1: if it is a large PCI bar device, else 0
Definition: hip_runtime_api.h:145
int gcnArch
DEPRECATED: use gcnArchName instead.
Definition: hip_runtime_api.h:120
int multiProcessorCount
Number of multi-processors (compute units).
Definition: hip_runtime_api.h:106
int maxGridSize[3]
Max grid dimensions (XYZ).
Definition: hip_runtime_api.h:95
int pciDeviceID
PCI Device ID.
Definition: hip_runtime_api.h:116
int computeMode
Compute mode.
Definition: hip_runtime_api.h:109
int major
Definition: hip_runtime_api.h:100
int warpSize
Warp size.
Definition: hip_runtime_api.h:92
int tccDriver
1:If device is Tesla device using TCC driver, else 0
Definition: hip_runtime_api.h:136
int cooperativeMultiDeviceUnmatchedSharedMem
Definition: hip_runtime_api.h:143
int maxThreadsPerBlock
Max work items per work group or workgroup max size.
Definition: hip_runtime_api.h:93
hipDeviceArch_t arch
Architectural feature flags. New for HIP.
Definition: hip_runtime_api.h:112
int managedMemory
Device supports allocating managed memory on this system.
Definition: hip_runtime_api.h:147
size_t texturePitchAlignment
Pitch alignment requirement for texture references bound to pitched memory.
Definition: hip_runtime_api.h:133
Definition: driver_types.h:358
Definition: hip_runtime_api.h:997
unsigned int flags
Definition: hip_runtime_api.h:1000
unsigned long long offset
Definition: hip_runtime_api.h:998
unsigned long long size
Definition: hip_runtime_api.h:999
Definition: hip_runtime_api.h:985
unsigned int flags
Definition: hip_runtime_api.h:995
const void * name
Definition: hip_runtime_api.h:991
int fd
Definition: hip_runtime_api.h:988
unsigned long long size
Definition: hip_runtime_api.h:994
hipExternalMemoryHandleType type
Definition: hip_runtime_api.h:986
void * handle
Definition: hip_runtime_api.h:990
Definition: hip_runtime_api.h:1009
unsigned int flags
Definition: hip_runtime_api.h:1018
const void * name
Definition: hip_runtime_api.h:1015
hipExternalSemaphoreHandleType type
Definition: hip_runtime_api.h:1010
void * handle
Definition: hip_runtime_api.h:1014
int fd
Definition: hip_runtime_api.h:1012
Definition: hip_runtime_api.h:1021
unsigned long long value
Definition: hip_runtime_api.h:1024
unsigned int flags
Definition: hip_runtime_api.h:1031
unsigned long long key
Definition: hip_runtime_api.h:1027
Definition: hip_runtime_api.h:1037
unsigned long long value
Definition: hip_runtime_api.h:1040
unsigned int timeoutMs
Definition: hip_runtime_api.h:1044
unsigned long long key
Definition: hip_runtime_api.h:1043
unsigned int flags
Definition: hip_runtime_api.h:1048
Definition: hip_runtime_api.h:545
int cacheModeCA
Definition: hip_runtime_api.h:547
int binaryVersion
Definition: hip_runtime_api.h:546
size_t constSizeBytes
Definition: hip_runtime_api.h:548
int preferredShmemCarveout
Definition: hip_runtime_api.h:553
size_t sharedSizeBytes
Definition: hip_runtime_api.h:555
int maxDynamicSharedSizeBytes
Definition: hip_runtime_api.h:550
int ptxVersion
Definition: hip_runtime_api.h:554
int numRegs
Definition: hip_runtime_api.h:552
size_t localSizeBytes
Definition: hip_runtime_api.h:549
int maxThreadsPerBlock
Definition: hip_runtime_api.h:551
Definition: hip_runtime_api.h:964
unsigned int gridDimX
Width(X) of grid in blocks.
Definition: hip_runtime_api.h:966
unsigned int blockDimX
X dimension of each thread block.
Definition: hip_runtime_api.h:969
hipStream_t hStream
Stream identifier.
Definition: hip_runtime_api.h:973
unsigned int blockDimY
Y dimension of each thread block.
Definition: hip_runtime_api.h:970
unsigned int gridDimY
Height(Y) of grid in blocks.
Definition: hip_runtime_api.h:967
unsigned int gridDimZ
Depth(Z) of grid in blocks.
Definition: hip_runtime_api.h:968
unsigned int sharedMemBytes
Shared memory.
Definition: hip_runtime_api.h:972
unsigned int blockDimZ
Z dimension of each thread block.
Definition: hip_runtime_api.h:971
void ** kernelParams
Kernel parameters.
Definition: hip_runtime_api.h:974
Definition: hip_runtime_api.h:1136
hipHostFn_t fn
Definition: hip_runtime_api.h:1137
void * userData
Definition: hip_runtime_api.h:1138
Definition: hip_runtime_api.h:535
Definition: hip_runtime_api.h:532
Definition: hip_runtime_api.h:1140
dim3 gridDim
Definition: hip_runtime_api.h:1144
unsigned int sharedMemBytes
Definition: hip_runtime_api.h:1146
dim3 blockDim
Definition: hip_runtime_api.h:1141
void ** kernelParams
Definition: hip_runtime_api.h:1145
void ** extra
Definition: hip_runtime_api.h:1142
void * func
Definition: hip_runtime_api.h:1143
Definition: hip_runtime_api.h:956
size_t sharedMem
Shared memory.
Definition: hip_runtime_api.h:961
void ** args
Arguments.
Definition: hip_runtime_api.h:960
dim3 blockDim
Block dimentions.
Definition: hip_runtime_api.h:959
dim3 gridDim
Grid dimentions.
Definition: hip_runtime_api.h:958
void * func
Device function symbol.
Definition: hip_runtime_api.h:957
hipStream_t stream
Stream identifier.
Definition: hip_runtime_api.h:962
Definition: hip_runtime_api.h:844
hipMemAccessFlags flags
Accessibility flags to set.
Definition: hip_runtime_api.h:846
hipMemLocation location
Location on which the accessibility has to change.
Definition: hip_runtime_api.h:845
Definition: hip_runtime_api.h:1157
const hipMemAccessDesc * accessDescs
Definition: hip_runtime_api.h:1160
size_t bytesize
The size of the requested allocation in bytes.
Definition: hip_runtime_api.h:1163
hipMemPoolProps poolProps
Definition: hip_runtime_api.h:1158
size_t accessDescCount
The number of access descriptors.
Definition: hip_runtime_api.h:1162
void * dptr
Returned device address of the allocation.
Definition: hip_runtime_api.h:1164
Definition: hip_runtime_api.h:1270
void * win32HandleMetaData
Metadata for Win32 handles.
Definition: hip_runtime_api.h:1274
hipMemAllocationType type
Memory allocation type.
Definition: hip_runtime_api.h:1271
unsigned char gpuDirectRDMACapable
RDMA capable.
Definition: hip_runtime_api.h:1277
struct hipMemAllocationProp::@24 allocFlags
unsigned short usage
Usage.
Definition: hip_runtime_api.h:1278
hipMemAllocationHandleType requestedHandleType
Requested handle type.
Definition: hip_runtime_api.h:1272
hipMemLocation location
Memory location.
Definition: hip_runtime_api.h:1273
unsigned char compressionType
Compression type.
Definition: hip_runtime_api.h:1276
Definition: hip_runtime_api.h:827
int id
Identifier for the provided location type hipMemLocationType.
Definition: hip_runtime_api.h:829
hipMemLocationType type
Specifies the location type, which describes the meaning of id.
Definition: hip_runtime_api.h:828
Definition: hip_runtime_api.h:875
hipMemLocation location
Location where allocations should reside.
Definition: hip_runtime_api.h:878
hipMemAllocationHandleType handleTypes
Handle types that will be supported by allocations from the pool.
Definition: hip_runtime_api.h:877
hipMemAllocationType allocType
Allocation type. Currently must be specified as hipMemAllocationTypePinned.
Definition: hip_runtime_api.h:876
unsigned char reserved[64]
Reserved for future use, must be 0.
Definition: hip_runtime_api.h:883
void * win32SecurityAttributes
Definition: hip_runtime_api.h:882
Definition: hip_runtime_api.h:888
unsigned char reserved[64]
Definition: hip_runtime_api.h:889
Definition: driver_types.h:369
Definition: hip_runtime_api.h:1148
void * dst
Definition: hip_runtime_api.h:1149
unsigned int value
Definition: hip_runtime_api.h:1153
unsigned int elementSize
Definition: hip_runtime_api.h:1150
size_t width
Definition: hip_runtime_api.h:1154
size_t pitch
Definition: hip_runtime_api.h:1152
size_t height
Definition: hip_runtime_api.h:1151
Definition: driver_types.h:117
Definition: driver_types.h:352
Definition: hip_runtime_api.h:175
int device
Definition: hip_runtime_api.h:181
enum hipMemoryType memoryType
Definition: hip_runtime_api.h:178
void * hostPointer
Definition: hip_runtime_api.h:183
enum hipMemoryType type
Definition: hip_runtime_api.h:179
int isManaged
Definition: hip_runtime_api.h:184
void * devicePointer
Definition: hip_runtime_api.h:182
unsigned allocationFlags
Definition: hip_runtime_api.h:185
Definition: driver_types.h:258
Definition: driver_types.h:314
Definition: texture_types.h:109
Definition: hip_runtime_api.h:76
Definition: texture_types.h:88
Defines surface types for HIP runtime.
struct __hip_surface * hipSurfaceObject_t
Definition: surface_types.h:34
struct __hip_texture * hipTextureObject_t
Definition: texture_types.h:63
hipTextureAddressMode
Definition: texture_types.h:68
hipTextureFilterMode
Definition: texture_types.h:78
Definition: hip_runtime_api.h:1188
int cooperative
Definition: hip_runtime_api.h:1190
hipAccessPolicyWindow accessPolicyWindow
Definition: hip_runtime_api.h:1189