Helper library for setting NVTX markers.
Definition in file sources/includes/nvtx_helper.h.
Go to the source code of this file.
Functions | |
| void | nvtx_helper_push_pop (char *context) |
| Function definition for pushing/popping a NVTX range. More... | |
| void | nvtx_helper_start_end (char *context, unsigned long *id) |
| Function definition for starting/stopping a NVTX range. More... | |
| void nvtx_helper_push_pop | ( | char * | context | ) |
Function definition for pushing/popping a NVTX range.
| [in] | context | If specified, calls nvtxRangePushA(). If not specified(NULL), nvtxRangePop() gets called. |
| void nvtx_helper_start_end | ( | char * | context, |
| unsigned long * | id | ||
| ) |
Function definition for starting/stopping a NVTX range.
| [in] | context | If specified, calls nvtxRangeStartA(). If not specified (NULL), nvtxRangeEnd() gets called. |
| [in] | id | The unique ID used to correlate a pair of Start and End events. |