6.14. Error Log Management Functions
This section describes the error log management functions of the low-level CUDA driver application programming interface.
Enumerations
Functions
- CUresult cuLogsCurrent(CUlogIterator *iterator_out, unsigned int flags)
Sets log iterator to point to the end of log buffer, where the next message would be written.
- CUresult cuLogsDumpToFile(CUlogIterator *iterator, const char *pathToFile, unsigned int flags)
Dump accumulated driver logs into a file.
- CUresult cuLogsDumpToMemory(CUlogIterator *iterator, char *buffer, size_t *size, unsigned int flags)
Dump accumulated driver logs into a buffer.
- CUresult cuLogsRegisterCallback(CUlogsCallback callbackFunc, void *userData, CUlogsCallbackHandle *callback_out)
Register a callback function to receive error log messages.
- CUresult cuLogsUnregisterCallback(CUlogsCallbackHandle callback)
Unregister a log message callback.
Typedefs
6.14.1. Enumerations
6.14.2. Functions
-
CUresult cuLogsCurrent(CUlogIterator *iterator_out, unsigned int flags)
Sets log iterator to point to the end of log buffer, where the next message would be written.
- Parameters
iterator_out – - Location to store an iterator to the current tail of the logs
flags – - Reserved for future use, must be 0
- Returns
-
CUresult cuLogsDumpToFile(CUlogIterator *iterator, const char *pathToFile, unsigned int flags)
Dump accumulated driver logs into a file.
Logs generated by the driver are stored in an internal buffer and can be copied out using this API. This API dumps all driver logs starting from
iteratorintopathToFileprovided.Note
iteratoris auto-advancing. Dumping logs will update the value ofiteratorto receive the next generated log.Note
The driver reserves limited memory for storing logs. The oldest logs may be overwritten and become unrecoverable. An indication will appear in the destination outupt if the logs have been truncated. Call dump after each failed API to mitigate this risk.
- Parameters
iterator – - Optional auto-advancing iterator specifying the starting log to read. NULL value dumps all logs.
pathToFile – - Path to output file for dumping logs
flags – - Reserved for future use, must be 0
- Returns
-
CUresult cuLogsDumpToMemory(CUlogIterator *iterator, char *buffer, size_t *size, unsigned int flags)
Dump accumulated driver logs into a buffer.
Logs generated by the driver are stored in an internal buffer and can be copied out using this API. This API dumps driver logs from
iteratorintobufferup to the size specified in*size. The driver will always null terminate the buffer but there will not be a null character between log entries, only a newline \n. The driver will then return the actual number of bytes written in*size, excluding the null terminator. If there are no messages to dump,*sizewill be set to 0 and the function will return CUDA_SUCCESS. If the providedbufferis not large enough to hold any messages,*sizewill be set to 0 and the function will return CUDA_ERROR_INVALID_VALUE.Note
iteratoris auto-advancing. Dumping logs will update the value ofiteratorto receive the next generated log.Note
The driver reserves limited memory for storing logs. The maximum size of the buffer is 25600 bytes. The oldest logs may be overwritten and become unrecoverable. An indication will appear in the destination outupt if the logs have been truncated. Call dump after each failed API to mitigate this risk.
Note
If the provided value in
*sizeis not large enough to hold all buffered messages, a message will be added at the head of the buffer indicating this. The driver then computes the number of messages it is able to store inbufferand writes it out. The final message inbufferwill always be the most recent log message as of when the API is called.- Parameters
iterator – - Optional auto-advancing iterator specifying the starting log to read. NULL value dumps all logs.
buffer – - Pointer to dump logs
size – - See description
flags – - Reserved for future use, must be 0
- Returns
-
CUresult cuLogsRegisterCallback(CUlogsCallback callbackFunc, void *userData, CUlogsCallbackHandle *callback_out)
Register a callback function to receive error log messages.
- Parameters
callbackFunc – - The function to register as a callback
userData – - A generic pointer to user data. This is passed into the callback function.
callback_out – - Optional location to store the callback handle after it is registered
- Returns
-
CUresult cuLogsUnregisterCallback(CUlogsCallbackHandle callback)
Unregister a log message callback.
- Parameters
callback – - The callback instance to unregister from receiving log messages
- Returns
6.14.3. Typedefs
-
typedef unsigned int CUlogIterator
-
typedef void (*CUlogsCallback)(void *data, CUlogLevel logLevel, char *message, size_t length)
-
typedef struct CUlogsCallbackEntry_st *CUlogsCallbackHandle