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
170#define NVTX_API __stdcall
171#define NVTX_INLINE_STATIC __inline static
174#if defined(__cplusplus) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
175#define NVTX_INLINE_STATIC inline static
177#define NVTX_INLINE_STATIC __inline__ static
181#if defined(NVTX_NO_IMPL)
185#elif defined(NVTX_EXPORT_API)
188#if !defined(NVTX_DECLSPEC)
194#define NVTX_DECLSPEC NVTX_INLINE_STATIC
197#include "nvtxDetail/nvtxLinkOnce.h"
199#define NVTX_VERSIONED_IDENTIFIER_L3(NAME, VERSION) NAME##_v##VERSION
200#define NVTX_VERSIONED_IDENTIFIER_L2(NAME, VERSION) NVTX_VERSIONED_IDENTIFIER_L3(NAME, VERSION)
201#define NVTX_VERSIONED_IDENTIFIER(NAME) NVTX_VERSIONED_IDENTIFIER_L2(NAME, NVTX_VERSION)
221#ifndef NVTX_STDINT_TYPES_ALREADY_DEFINED
235#define NVTX_SUCCESS 0
237#define NVTX_ERR_INIT_LOAD_PROPERTY 2
238#define NVTX_ERR_INIT_ACCESS_LIBRARY 3
239#define NVTX_ERR_INIT_LOAD_LIBRARY 4
240#define NVTX_ERR_INIT_MISSING_LIBRARY_ENTRY_POINT 5
241#define NVTX_ERR_INIT_FAILED_LIBRARY_ENTRY_POINT 6
242#define NVTX_ERR_NO_INJECTION_LIBRARY_AVAILABLE 7
247#define NVTX_EVENT_ATTRIB_STRUCT_SIZE ( (uint16_t)( sizeof(nvtxEventAttributes_t) ) )
249#define NVTX_NO_PUSH_POP_TRACKING ((int)-2)
251typedef uint64_t nvtxRangeId_t;
254struct nvtxDomainRegistration_st;
255typedef struct nvtxDomainRegistration_st nvtxDomainRegistration;
265typedef nvtxDomainRegistration* nvtxDomainHandle_t;
268struct nvtxStringRegistration_st;
269typedef struct nvtxStringRegistration_st nvtxStringRegistration;
279typedef nvtxStringRegistration* nvtxStringHandle_t;
312 const wchar_t* unicode;
314 nvtxStringHandle_t registered;
570NVTX_DECLSPEC
void NVTX_API
nvtxDomainMarkEx(nvtxDomainHandle_t domain,
const nvtxEventAttributes_t* eventAttrib);
606NVTX_DECLSPEC
void NVTX_API
nvtxMarkEx(
const nvtxEventAttributes_t* eventAttrib);
630NVTX_DECLSPEC
void NVTX_API nvtxMarkW(
const wchar_t*
message);
665NVTX_DECLSPEC nvtxRangeId_t NVTX_API
nvtxDomainRangeStartEx(nvtxDomainHandle_t domain,
const nvtxEventAttributes_t* eventAttrib);
699NVTX_DECLSPEC nvtxRangeId_t NVTX_API
nvtxRangeStartEx(
const nvtxEventAttributes_t* eventAttrib);
727NVTX_DECLSPEC nvtxRangeId_t NVTX_API nvtxRangeStartW(
const wchar_t*
message);
814NVTX_DECLSPEC
int NVTX_API
nvtxDomainRangePushEx(nvtxDomainHandle_t domain,
const nvtxEventAttributes_t* eventAttrib);
878NVTX_DECLSPEC
int NVTX_API nvtxRangePushW(
const wchar_t*
message);
953#define NVTX_RESOURCE_MAKE_TYPE(CLASS, INDEX) ((((uint32_t)(NVTX_RESOURCE_CLASS_ ## CLASS))<<16)|((uint32_t)(INDEX)))
954#define NVTX_RESOURCE_CLASS_GENERIC 1
967 NVTX_RESOURCE_TYPE_UNKNOWN = 0,
1115#define NVTX_RESOURCE_ATTRIB_STRUCT_SIZE ( (uint16_t)( sizeof(nvtxResourceAttributes_v0) ) )
1116typedef struct nvtxResourceHandle* nvtxResourceHandle_t;
1216NVTX_DECLSPEC
void NVTX_API nvtxDomainNameCategoryW(nvtxDomainHandle_t domain, uint32_t category,
const wchar_t* name);
1241NVTX_DECLSPEC
void NVTX_API nvtxNameCategoryW(uint32_t category,
const wchar_t* name);
1308NVTX_DECLSPEC
void NVTX_API nvtxNameOsThreadW(uint32_t threadId,
const wchar_t* name);
1357NVTX_DECLSPEC nvtxStringHandle_t NVTX_API nvtxDomainRegisterStringW(nvtxDomainHandle_t domain,
const wchar_t*
string);
1420NVTX_DECLSPEC nvtxDomainHandle_t NVTX_API nvtxDomainCreateW(
const wchar_t* name);
1452 #define nvtxMark nvtxMarkW
1453 #define nvtxRangeStart nvtxRangeStartW
1454 #define nvtxRangePush nvtxRangePushW
1455 #define nvtxNameCategory nvtxNameCategoryW
1456 #define nvtxNameOsThread nvtxNameOsThreadW
1458 #define nvtxDomainCreate nvtxDomainCreateW
1459 #define nvtxDomainRegisterString nvtxDomainRegisterStringW
1460 #define nvtxDomainNameCategory nvtxDomainNameCategoryW
1462 #define nvtxMark nvtxMarkA
1463 #define nvtxRangeStart nvtxRangeStartA
1464 #define nvtxRangePush nvtxRangePushA
1465 #define nvtxNameCategory nvtxNameCategoryA
1466 #define nvtxNameOsThread nvtxNameOsThreadA
1468 #define nvtxDomainCreate nvtxDomainCreateA
1469 #define nvtxDomainRegisterString nvtxDomainRegisterStringA
1470 #define nvtxDomainNameCategory nvtxDomainNameCategoryA
1479#define NVTX_IMPL_GUARD
1481#include "nvtxDetail/nvtxTypes.h"
1484#include "nvtxDetail/nvtxImpl.h"
1487#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. .