added more error codes to hipErrorGetString

Change-Id: I80c675905d94813502040fd0caa07985fa8c7dcc
This commit is contained in:
Aditya Atluri
2016-09-15 11:28:18 -05:00
parent 2c12394d52
commit 6cb5a13a2b
2 changed files with 72 additions and 29 deletions
+23 -23
View File
@@ -185,30 +185,30 @@ typedef enum hipError_t {
hipErrorIllegalAddress = 700,
// Runtime Error Codes start here.
hipErrorMissingConfiguration = 1,
hipErrorMemoryAllocation = 2, ///< Memory allocation error.
hipErrorInitializationError = 3, ///< TODO comment from hipErrorInitializationError
hipErrorLaunchFailure = 4,
hipErrorPriorLaunchFailure = 5,
hipErrorLaunchTimeOut = 6,
hipErrorLaunchOutOfResources = 7, ///< Out of resources error.
hipErrorInvalidDeviceFunction = 8,
hipErrorInvalidConfiguration = 9,
hipErrorInvalidDevice = 10, ///< DeviceID must be in range 0...#compute-devices.
hipErrorInvalidValue = 11, ///< One or more of the parameters passed to the API call is NULL or not in an acceptable range.
hipErrorInvalidDevicePointer = 17, ///< Invalid Device Pointer
hipErrorInvalidMemcpyDirection = 21, ///< Invalid memory copy direction
hipErrorUnknown = 30, ///< Unknown error.
hipErrorInvalidResourceHandle = 33, ///< Resource handle (hipEvent_t or hipStream_t) invalid.
hipErrorNotReady = 34, ///< Indicates that asynchronous operations enqueued earlier are not ready. This is not actually an error, but is used to distinguish from hipSuccess (which indicates completion). APIs that return this error include hipEventQuery and hipStreamQuery.
hipErrorNoDevice = 38, ///< Call to hipGetDeviceCount returned 0 devices
hipErrorPeerAccessAlreadyEnabled = 50, ///< Peer access was already enabled from the current device.
hipErrorMissingConfiguration = 1001,
hipErrorMemoryAllocation = 1002, ///< Memory allocation error.
hipErrorInitializationError = 1003, ///< TODO comment from hipErrorInitializationError
hipErrorLaunchFailure = 1004,
hipErrorPriorLaunchFailure = 1005,
hipErrorLaunchTimeOut = 1006,
hipErrorLaunchOutOfResources = 1007, ///< Out of resources error.
hipErrorInvalidDeviceFunction = 1008,
hipErrorInvalidConfiguration = 1009,
hipErrorInvalidDevice = 1010, ///< DeviceID must be in range 0...#compute-devices.
hipErrorInvalidValue = 1011, ///< One or more of the parameters passed to the API call is NULL or not in an acceptable range.
hipErrorInvalidDevicePointer = 1017, ///< Invalid Device Pointer
hipErrorInvalidMemcpyDirection = 1021, ///< Invalid memory copy direction
hipErrorUnknown = 1030, ///< Unknown error.
hipErrorInvalidResourceHandle = 1033, ///< Resource handle (hipEvent_t or hipStream_t) invalid.
hipErrorNotReady = 1034, ///< Indicates that asynchronous operations enqueued earlier are not ready. This is not actually an error, but is used to distinguish from hipSuccess (which indicates completion). APIs that return this error include hipEventQuery and hipStreamQuery.
hipErrorNoDevice = 1038, ///< Call to hipGetDeviceCount returned 0 devices
hipErrorPeerAccessAlreadyEnabled = 1050, ///< Peer access was already enabled from the current device.
hipErrorPeerAccessNotEnabled = 51, ///< Peer access was never enabled from the current device.
hipErrorRuntimeMemory, ///< HSA runtime memory call returned error. Typically not seen in production systems.
hipErrorRuntimeOther, ///< HSA runtime call other than memory returned error. Typically not seen in production systems.
hipErrorHostMemoryAlreadyRegistered = 61, ///< Produced when trying to lock a page-locked memory.
hipErrorHostMemoryNotRegistered = 62, ///< Produced when trying to unlock a non-page-locked memory.
hipErrorPeerAccessNotEnabled = 1051, ///< Peer access was never enabled from the current device.
hipErrorRuntimeMemory = 1052, ///< HSA runtime memory call returned error. Typically not seen in production systems.
hipErrorRuntimeOther = 1053, ///< HSA runtime call other than memory returned error. Typically not seen in production systems.
hipErrorHostMemoryAlreadyRegistered = 1061, ///< Produced when trying to lock a page-locked memory.
hipErrorHostMemoryNotRegistered = 1062, ///< Produced when trying to unlock a non-page-locked memory.
hipErrorTbd ///< Marker that more error codes are needed.
} hipError_t;
+49 -6
View File
@@ -1559,21 +1559,64 @@ const char *ihipErrorString(hipError_t hip_error)
{
switch (hip_error) {
case hipSuccess : return "hipSuccess";
case hipErrorOutofMemory : return "hipOutofMemory";
case hipErrorOutOfMemory : return "hipErrorOutOfMemory";
case hipErrorNotInitialized : return "hipErrorNotInitialized";
case hipErrorDeinitialized : return "hipErrorDeinitialized";
case hipErrorProfilerDisabled : return "hipErrorProfilerDisabled";
case hipErrorProfilerNotInitialized : return "hipErrorProfilerNotInitialized";
case hipErrorProfilerAlreadyStarted : return "hipErrorProfilerAlreadyStarted";
case hipErrorProfilerAlreadyStopped : return "hipErrorProfilerAlreadyStopped";
case hipErrorInvalidImage : return "hipErrorInvalidImage";
case hipErrorInvalidContext : return "hipErrorInvalidContext";
case hipErrorContextAlreadyCurrent : return "hipErrorContextAlreadyCurrent";
case hipErrorMapFailed : return "hipErrorMapFailed";
case hipErrorUnmapFailed : return "hipErrorUnmapFailed";
case hipErrorArrayIsMapped : return "hipErrorArrayIsMapped";
case hipErrorAlreadyMapped : return "hipErrorAlreadyMapped";
case hipErrorNoBinaryForGpu : return "hipErrorNoBinaryForGpu";
case hipErrorAlreadyAcquired : return "hipErrorAlreadyAcquired";
case hipErrorNotMapped : return "hipErrorNotMapped";
case hipErrorNotMappedAsArray : return "hipErrorNotMappedAsArray";
case hipErrorNotMappedAsPointer : return "hipErrorNotMappedAsPointer";
case hipErrorECCNotCorrectable : return "hipErrorECCNotCorrectable";
case hipErrorUnsupportedLimit : return "hipErrorUnsupportedLimit";
case hipErrorContextAlreadyInUse : return "hipErrorContextAlreadyInUse";
case hipErrorPeerAccessUnsupported : return "hipErrorPeerAccessUnsupported";
case hipErrorInvalidKernelFile : return "hipErrorInvalidKernelFile";
case hipErrorInvalidGraphicsContext : return "hipErrorInvalidGraphicsContext";
case hipErrorInvalidSource : return "hipErrorInvalidSource";
case hipErrorFileNotFound : return "hipErrorFileNotFound";
case hipErrorSharedObjectSymbolNotFound : return "hipErrorSharedObjectSymbolNotFound";
case hipErrorSharedObjectInitFailed : return "hipErrorSharedObjectInitFailed";
case hipErrorOperatingSystem : return "hipErrorOperatingSystem";
case hipErrorInvalidHandle : return "hipErrorInvalidHandle";
case hipErrorNotFound : return "hipErrorNotFound";
case hipErrorIllegalAddress : return "hipErrorIllegalAddress";
case hipErrorMissingConfiguration : return "hipErrorMissingConfiguration";
case hipErrorMemoryAllocation : return "hipErrorMemoryAllocation";
case hipErrorInitializationError : return "hipErrorInitializationError";
case hipErrorLaunchFailure : return "hipErrorLaunchFailure";
case hipErrorPriorLaunchFailure : return "hipErrorPriorLaunchFailure";
case hipErrorLaunchTimeOut : return "hipErrorLaunchTimeOut";
case hipErrorLaunchOutOfResources : return "hipErrorLaunchOutOfResources";
case hipErrorInvalidValue : return "hipErrorInvalidValue";
case hipErrorInvalidResourceHandle : return "hipErrorInvalidResourceHandle";
case hipErrorInvalidDeviceFunction : return "hipErrorInvalidDeviceFunction";
case hipErrorInvalidConfiguration : return "hipErrorInvalidConfiguration";
case hipErrorInvalidDevice : return "hipErrorInvalidDevice";
case hipErrorInvalidValue : return "hipErrorInvalidValue";
case hipErrorInvalidDevicePointer : return "hipErrorInvalidDevicePointer";
case hipErrorInvalidMemcpyDirection : return "hipErrorInvalidMemcpyDirection";
case hipErrorNoDevice : return "hipErrorNoDevice";
case hipErrorUnknown : return "hipErrorUnknown";
case hipErrorInvalidResourceHandle : return "hipErrorInvalidResourceHandle";
case hipErrorNotReady : return "hipErrorNotReady";
case hipErrorPeerAccessNotEnabled : return "hipErrorPeerAccessNotEnabled";
case hipErrorNoDevice : return "hipErrorNoDevice";
case hipErrorPeerAccessAlreadyEnabled : return "hipErrorPeerAccessAlreadyEnabled";
case hipErrorPeerAccessNotEnabled : return "hipErrorPeerAccessNotEnabled";
case hipErrorRuntimeMemory : return "hipErrorRuntimeMemory";
case hipErrorRuntimeOther : return "hipErrorRuntimeOther";
case hipErrorUnknown : return "hipErrorUnknown";
case hipErrorHostMemoryAlreadyRegistered : return "hipErrorHostMemoryAlreadyRegistered";
case hipErrorHostMemoryNotRegistered : return "hipErrorHostMemoryNotRegistered";
case hipErrorTbd : return "hipErrorTbd";
default : return "hipErrorUnknown";
};