changed hipLimit to hipLimit_t and data type to enum

Change-Id: I94f408cdcac4b0bb38801d58709b68e9630d44d0
Cette révision appartient à :
Aditya Atluri
2016-10-13 15:13:11 -05:00
Parent 1970ea07f1
révision 34ab2a55ab
2 fichiers modifiés avec 6 ajouts et 4 suppressions
+5 -3
Voir le fichier
@@ -60,7 +60,10 @@ typedef void* hipDeviceptr_t;
typedef struct ihipEvent_t *hipEvent_t;
typedef unsigned hipLimit;
enum hipLimit_t
{
hipLimitMallocHeapSize = 0x02,
};
/**
* @addtogroup GlobalDefs More
@@ -98,7 +101,6 @@ typedef unsigned hipLimit;
#define hipDeviceMapHost 0x8
#define hipDeviceLmemResizeToMax 0x16
#define hipLimitMallocHeapSize 0x2
/**
* @warning On AMD devices and recent Nvidia devices, these hints and controls are ignored.
@@ -336,7 +338,7 @@ hipError_t hipDeviceGetCacheConfig ( hipFuncCache *cacheConfig );
* Note: Currently, only hipLimitMallocHeapSize is available
*
*/
hipError_t hipDeviceGetLimit(size_t *pValue, hipLimit limit);
hipError_t hipDeviceGetLimit(size_t *pValue, hipLimit_t limit);
/**
+1 -1
Voir le fichier
@@ -88,7 +88,7 @@ hipError_t hipDeviceGetCacheConfig(hipFuncCache *cacheConfig)
extern "C" size_t g_malloc_heap_size;
hipError_t hipDeviceGetLimit (size_t *pValue, hipLimit limit)
hipError_t hipDeviceGetLimit (size_t *pValue, hipLimit_t limit)
{
HIP_INIT_API(pValue, limit);
if(pValue == nullptr) {