161#if defined(NVTX_VERSION) && NVTX_VERSION < 3
162#error "Trying to #include NVTX version 3 in a source file where an older NVTX version has already been included. If you are not directly using NVTX (the NVIDIA Tools Extension library), you are getting this error because libraries you are using have included different versions of NVTX. Suggested solutions are: (1) reorder #includes so the newest NVTX version is included first, (2) avoid using the conflicting libraries in the same .c/.cpp file, or (3) update the library using the older NVTX version to use the newer version instead."
166#if !defined(NVTX_VERSION)
167#define NVTX_VERSION 3
188#define NVTX_API __stdcall
191#define NVTX_DYNAMIC_EXPORT __declspec(dllexport)
193#define NVTX_DYNAMIC_EXPORT __attribute__((visibility("default"))) __declspec(dllexport)
196#if defined(_M_IX86) || defined(_M_ARM64EC)
197#define NVTX_EXPORT_UNMANGLED_FUNCTION_NAME _Pragma("comment(linker, \"/EXPORT:\" __FUNCTION__ \"=\" __FUNCDNAME__)")
199#define NVTX_EXPORT_UNMANGLED_FUNCTION_NAME
206#define NVTX_DYNAMIC_EXPORT __attribute__((visibility("default")))
208#define NVTX_EXPORT_UNMANGLED_FUNCTION_NAME
220#define NVTX_INLINE_STATIC __inline static
224#if defined(__cplusplus) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
225#define NVTX_INLINE_STATIC inline static
227#define NVTX_INLINE_STATIC __inline__ static
278#if defined(NVTX_NO_IMPL)
282#if !defined(NVTX_DECLSPEC)
285#if !defined(NVTX_SET_NAME_MANGLING_OPTIONS)
286#define NVTX_SET_NAME_MANGLING_OPTIONS
289#elif defined(NVTX_EXPORT_API)
294#if !defined(NVTX_DECLSPEC)
295#define NVTX_DECLSPEC NVTX_DYNAMIC_EXPORT
297#if !defined(NVTX_SET_NAME_MANGLING_OPTIONS)
298#define NVTX_SET_NAME_MANGLING_OPTIONS NVTX_EXPORT_UNMANGLED_FUNCTION_NAME
305#if !defined(NVTX_DECLSPEC)
306#define NVTX_DECLSPEC NVTX_INLINE_STATIC
308#if !defined(NVTX_SET_NAME_MANGLING_OPTIONS)
309#define NVTX_SET_NAME_MANGLING_OPTIONS
317#include "nvtxDetail/nvtxLinkOnce.h"
322#define NVTX_VERSIONED_IDENTIFIER_L3(NAME, VERSION) NAME##_v##VERSION
323#define NVTX_VERSIONED_IDENTIFIER_L2(NAME, VERSION) NVTX_VERSIONED_IDENTIFIER_L3(NAME, VERSION)
324#define NVTX_VERSIONED_IDENTIFIER(NAME) NVTX_VERSIONED_IDENTIFIER_L2(NAME, NVTX_VERSION)
345#ifndef NVTX_STDINT_TYPES_ALREADY_DEFINED
358#define NVTX_SUCCESS 0
360#define NVTX_ERR_INIT_LOAD_PROPERTY 2
361#define NVTX_ERR_INIT_ACCESS_LIBRARY 3
362#define NVTX_ERR_INIT_LOAD_LIBRARY 4
363#define NVTX_ERR_INIT_MISSING_LIBRARY_ENTRY_POINT 5
364#define NVTX_ERR_INIT_FAILED_LIBRARY_ENTRY_POINT 6
365#define NVTX_ERR_NO_INJECTION_LIBRARY_AVAILABLE 7
370#define NVTX_EVENT_ATTRIB_STRUCT_SIZE ( (uint16_t)( sizeof(nvtxEventAttributes_t) ) )
372#define NVTX_NO_PUSH_POP_TRACKING ((int)-2)
374typedef uint64_t nvtxRangeId_t;
377struct nvtxDomainRegistration_st;
378typedef struct nvtxDomainRegistration_st nvtxDomainRegistration;
388typedef nvtxDomainRegistration* nvtxDomainHandle_t;
391struct nvtxStringRegistration_st;
392typedef struct nvtxStringRegistration_st nvtxStringRegistration;
402typedef nvtxStringRegistration* nvtxStringHandle_t;
435 const wchar_t* unicode;
437 nvtxStringHandle_t registered;
693NVTX_DECLSPEC
void NVTX_API
nvtxDomainMarkEx(nvtxDomainHandle_t domain,
const nvtxEventAttributes_t* eventAttrib);
729NVTX_DECLSPEC
void NVTX_API
nvtxMarkEx(
const nvtxEventAttributes_t* eventAttrib);
753NVTX_DECLSPEC
void NVTX_API nvtxMarkW(
const wchar_t*
message);
788NVTX_DECLSPEC nvtxRangeId_t NVTX_API
nvtxDomainRangeStartEx(nvtxDomainHandle_t domain,
const nvtxEventAttributes_t* eventAttrib);
822NVTX_DECLSPEC nvtxRangeId_t NVTX_API
nvtxRangeStartEx(
const nvtxEventAttributes_t* eventAttrib);
850NVTX_DECLSPEC nvtxRangeId_t NVTX_API nvtxRangeStartW(
const wchar_t*
message);
937NVTX_DECLSPEC
int NVTX_API
nvtxDomainRangePushEx(nvtxDomainHandle_t domain,
const nvtxEventAttributes_t* eventAttrib);
1001NVTX_DECLSPEC
int NVTX_API nvtxRangePushW(
const wchar_t*
message);
1088#define NVTX_RESOURCE_MAKE_TYPE(CLASS, INDEX) ((((uint32_t)(NVTX_RESOURCE_CLASS_ ## CLASS))<<16)|((uint32_t)(INDEX)))
1089#define NVTX_RESOURCE_CLASS_GENERIC 1
1102 NVTX_RESOURCE_TYPE_UNKNOWN = 0,
1250#define NVTX_RESOURCE_ATTRIB_STRUCT_SIZE ( (uint16_t)( sizeof(nvtxResourceAttributes_v0) ) )
1251typedef struct nvtxResourceHandle* nvtxResourceHandle_t;
1351NVTX_DECLSPEC
void NVTX_API nvtxDomainNameCategoryW(nvtxDomainHandle_t domain, uint32_t category,
const wchar_t* name);
1376NVTX_DECLSPEC
void NVTX_API nvtxNameCategoryW(uint32_t category,
const wchar_t* name);
1443NVTX_DECLSPEC
void NVTX_API nvtxNameOsThreadW(uint32_t threadId,
const wchar_t* name);
1492NVTX_DECLSPEC nvtxStringHandle_t NVTX_API nvtxDomainRegisterStringW(nvtxDomainHandle_t domain,
const wchar_t*
string);
1555NVTX_DECLSPEC nvtxDomainHandle_t NVTX_API nvtxDomainCreateW(
const wchar_t* name);
1587 #define nvtxMark nvtxMarkW
1588 #define nvtxRangeStart nvtxRangeStartW
1589 #define nvtxRangePush nvtxRangePushW
1590 #define nvtxNameCategory nvtxNameCategoryW
1591 #define nvtxNameOsThread nvtxNameOsThreadW
1593 #define nvtxDomainCreate nvtxDomainCreateW
1594 #define nvtxDomainRegisterString nvtxDomainRegisterStringW
1595 #define nvtxDomainNameCategory nvtxDomainNameCategoryW
1597 #define nvtxMark nvtxMarkA
1598 #define nvtxRangeStart nvtxRangeStartA
1599 #define nvtxRangePush nvtxRangePushA
1600 #define nvtxNameCategory nvtxNameCategoryA
1601 #define nvtxNameOsThread nvtxNameOsThreadA
1603 #define nvtxDomainCreate nvtxDomainCreateA
1604 #define nvtxDomainRegisterString nvtxDomainRegisterStringA
1605 #define nvtxDomainNameCategory nvtxDomainNameCategoryA
1614#define NVTX_IMPL_GUARD
1616#include "nvtxDetail/nvtxTypes.h"
1619#include "nvtxDetail/nvtxImpl.h"
1622#undef NVTX_IMPL_GUARD
NVTX_DECLSPEC nvtxDomainHandle_t NVTX_API nvtxDomainCreateA(const char *name)
Register a NVTX domain.
NVTX_DECLSPEC void NVTX_API nvtxDomainDestroy(nvtxDomainHandle_t domain)
Unregister a NVTX domain.
@ NVTX_PAYLOAD_TYPE_INT32
@ NVTX_PAYLOAD_TYPE_DOUBLE
@ NVTX_PAYLOAD_TYPE_UNSIGNED_INT32
@ NVTX_PAYLOAD_TYPE_FLOAT
@ NVTX_PAYLOAD_TYPE_INT64
@ NVTX_PAYLOAD_TYPE_UNSIGNED_INT64
@ NVTX_MESSAGE_TYPE_REGISTERED
@ NVTX_MESSAGE_TYPE_UNICODE
@ NVTX_MESSAGE_TYPE_ASCII
NVTX_DECLSPEC int NVTX_API nvtxDomainRangePop(nvtxDomainHandle_t domain)
Ends a nested thread range.
NVTX_DECLSPEC void NVTX_API nvtxDomainRangeEnd(nvtxDomainHandle_t domain, nvtxRangeId_t id)
Ends a process range.
NVTX_DECLSPEC nvtxRangeId_t NVTX_API nvtxRangeStartA(const char *message)
Starts a process range.
NVTX_DECLSPEC int NVTX_API nvtxRangePop(void)
Ends a nested thread range.
NVTX_DECLSPEC int NVTX_API nvtxDomainRangePushEx(nvtxDomainHandle_t domain, const nvtxEventAttributes_t *eventAttrib)
Starts a nested thread range.
NVTX_DECLSPEC void NVTX_API nvtxRangeEnd(nvtxRangeId_t id)
Ends a process range.
NVTX_DECLSPEC int NVTX_API nvtxRangePushA(const char *message)
Starts a nested thread range.
NVTX_DECLSPEC void NVTX_API nvtxDomainMarkEx(nvtxDomainHandle_t domain, const nvtxEventAttributes_t *eventAttrib)
Marks an instantaneous event in the application.
NVTX_DECLSPEC void NVTX_API nvtxMarkEx(const nvtxEventAttributes_t *eventAttrib)
Marks an instantaneous event in the application.
NVTX_DECLSPEC void NVTX_API nvtxMarkA(const char *message)
Marks an instantaneous event in the application.
NVTX_DECLSPEC int NVTX_API nvtxRangePushEx(const nvtxEventAttributes_t *eventAttrib)
Starts a nested thread range.
NVTX_DECLSPEC nvtxRangeId_t NVTX_API nvtxRangeStartEx(const nvtxEventAttributes_t *eventAttrib)
Starts a process range.
NVTX_DECLSPEC nvtxRangeId_t NVTX_API nvtxDomainRangeStartEx(nvtxDomainHandle_t domain, const nvtxEventAttributes_t *eventAttrib)
Starts a process range in a domain.
NVTX_DECLSPEC nvtxResourceHandle_t NVTX_API nvtxDomainResourceCreate(nvtxDomainHandle_t domain, nvtxResourceAttributes_t *attribs)
Create a resource object to track and associate data with OS and middleware objects.
NVTX_DECLSPEC void NVTX_API nvtxNameCategoryA(uint32_t category, const char *name)
Annotate an NVTX category.
NVTX_DECLSPEC void NVTX_API nvtxDomainResourceDestroy(nvtxResourceHandle_t resource)
Destroy a resource object to track and associate data with OS and middleware objects.
nvtxResourceGenericType_t
Generic resource type for when a resource class is not available.
NVTX_DECLSPEC void NVTX_API nvtxNameOsThreadA(uint32_t threadId, const char *name)
Annotate an OS thread.
NVTX_DECLSPEC void NVTX_API nvtxDomainNameCategoryA(nvtxDomainHandle_t domain, uint32_t category, const char *name)
Annotate an NVTX category used within a domain.
@ NVTX_RESOURCE_TYPE_GENERIC_THREAD_POSIX
@ NVTX_RESOURCE_TYPE_GENERIC_HANDLE
@ NVTX_RESOURCE_TYPE_GENERIC_POINTER
@ NVTX_RESOURCE_TYPE_GENERIC_THREAD_NATIVE
NVTX_DECLSPEC nvtxStringHandle_t NVTX_API nvtxDomainRegisterStringA(nvtxDomainHandle_t domain, const char *string)
Register a string.
Event Attribute Structure. .
uint16_t version
Version flag of the structure.
int32_t colorType
Color type specified in this attribute structure.
uint16_t size
Size of the structure.
int32_t payloadType
Payload type specified in this attribute structure.
nvtxMessageValue_t message
Message assigned to this attribute structure..
int32_t messageType
Message type specified in this attribute structure.
uint32_t color
Color assigned to this event..
uint32_t category
ID of the category the event is assigned to.
Resource Attribute Structure. .
int32_t messageType
Message type specified in this attribute structure.
uint16_t size
Size of the structure.
uint16_t version
Version flag of the structure.
nvtxMessageValue_t message
Message assigned to this attribute structure..
int32_t identifierType
Identifier type specifies how to interpret the identifier field.
Payload assigned to this event..
Identifier for the resource. .