rocprofiler-sdk/callback_tracing.h Source File#
|
ROCprofiler-SDK developer API 1.3.5
ROCm Profiling API and tools
|
callback_tracing.h
407 * before the function is invoked and once after the function is invoked. The external correlation
408 * id value within the record is assigned the value at the top of the external correlation id stack.
409 * It is permissible to invoke ::rocprofiler_push_external_correlation_id within the enter phase;
410 * when a new external correlation id is pushed during the enter phase, rocprofiler will use that
411 * external correlation id for any async events and provide the new external correlation id during
413 * callback will result in that external correlation id value in the exit callback (which may or may
414 * not be different from the external correlation id value in the enter callback). If a tool pushes
419 * @param [in,out] user_data This parameter can be used to retain information in between the enter
453 * @param [in] arg_indirection_count the total number of indirection levels for the argument, e.g.
458 * @param [in] arg_dereference_count the number of times the argument was dereferenced when it was
475 * @brief Configure Callback Tracing Service. The callback tracing service provides two synchronous
476 * callbacks around an API function on the same thread as the application which is invoking the API
477 * function. This function can only be invoked once per ::rocprofiler_callback_tracing_kind_t value,
478 * i.e. it can be invoked once for the HSA API, once for the HIP API, and so on but it will fail if
480 * non-trivial overhead of copying the function arguments into the record. If you are willing to let
481 * rocprofiler record the timestamps, do not require synchronous notifications of the API calls, and
497 * @retval ::ROCPROFILER_STATUS_ERROR_CONTEXT_NOT_FOUND The provided context is not valid/registered
499 * ::rocprofiler_callback_tracing_kind_t value is provided more than once (per context) -- in other
512 * @brief Query the name of the callback tracing kind. The name retrieved from this function is a
518 * allocation, this parameter will be set to the address of the string literal, otherwise it will
520 * @param [out] name_len If non-null, this will be assigned the length of the name (regardless of
530 * @brief Query the name of the callback tracing kind. The name retrieved from this function is a
535 * @param [in] operation Enumeration id value which maps to a specific API function or event type
537 * allocation, this parameter will be set to the address of the string literal, otherwise it will
539 * @param [out] name_len If non-null, this will be assigned the length of the name (regardless of
553 * @brief Iterate over all the mappings of the callback tracing kinds and get a callback for each
567 * ::rocprofiler_callback_tracing_kind_t and invokes the callback with the kind id, operation id,
589 * It is recommended to use this function when the record phase is ::ROCPROFILER_CALLBACK_PHASE_EXIT
590 * or ::ROCPROFILER_CALLBACK_PHASE_NONE. When the phase is ::ROCPROFILER_CALLBACK_PHASE_ENTER, the
591 * function may have output parameters which have not set. In the case of an output parameter with
593 * parameter is either null or, in the worst case scenario, pointing to an uninitialized value which
594 * will result in garbage values to be stringified. However, if the output parameter has more than
634 * parameters which have not been set. When the output parameter has multiple levels of indirection,
635 * it may be invalid to dereference the output parameter more than once and doing so may result in a
636 * segmentation fault. Thus, it is recommended to set this parameter to a maximum value of 1 when
637 * the phase is ::ROCPROFILER_CALLBACK_PHASE_ENTER to ensure that output parameters which point to
int32_t rocprofiler_tracing_operation_t
Tracing Operation ID. Depending on the kind, operations can be determined. If the value is equal to z...
Definition fwd.h:564
Multi-dimensional struct of data used to describe GPU workgroup and grid sizes.
Definition fwd.h:768
HIP graph executable instance ID. Process-monotonic identifier assigned by rocprofiler-sdk for each s...
Definition fwd.h:673
uint32_t group_segment_size
Size of static group segment memory required by the kernel (per work-group), in bytes....
Definition callback_tracing.h:235
uint32_t kernarg_segment_alignment
Alignment (in bytes) of the buffer used to pass arguments to the kernel.
Definition callback_tracing.h:234
rocprofiler_code_object_storage_type_t storage_type
storage type of the code object reader used to load the loaded code object
Definition callback_tracing.h:177
uint32_t arch_vgpr_count
Architecture vector general purpose register count.
Definition callback_tracing.h:238
uint32_t accum_vgpr_count
Accum vector general purpose register count.
Definition callback_tracing.h:239
uint64_t kernel_object
kernel object handle, used in the kernel dispatch packet
Definition callback_tracing.h:232
uint32_t private_segment_size
Size of static private, spill, and arg segment memory required by this kernel (per work-item),...
Definition callback_tracing.h:236
uint64_t instance
Number of times this runtime had been loaded previously.
Definition callback_tracing.h:353
hsa_agent_t hsa_agent
Deprecated. The agent on which this loaded code object is loaded.
Definition callback_tracing.h:172
rocprofiler_address_t kernel_address
The first address of a kernel. Useful for PC sampling.
Definition callback_tracing.h:241
uint64_t load_base
The base memory address at which the code object is loaded. This is the base address of the allocatio...
Definition callback_tracing.h:174
uint64_t load_size
The byte size of the loaded code objects contiguous memory allocation.
Definition callback_tracing.h:175
int64_t load_delta
The signed byte address difference of the memory address at which the code object is loaded minus the...
Definition callback_tracing.h:176
rocprofiler_address_t graph_exec_value
raw hipGraphExec_t pointer value
Definition callback_tracing.h:402
uint32_t kernarg_segment_size
size of memory (in bytes) allocated for kernel arguments. Will be multiple of 16
Definition callback_tracing.h:233
int64_t kernel_code_entry_byte_offset
Relative offset from kernel_object address to calculate the first address of a kernel.
Definition callback_tracing.h:240
rocprofiler_address_t address
starting address for memory allocation
Definition callback_tracing.h:329
const char * uri
The URI name from which the code object was loaded.
Definition callback_tracing.h:173
rocprofiler_graph_exec_id_t graph_exec_id
process-monotonic ID of the hipGraphExec_t
Definition callback_tracing.h:401
rocprofiler_status_t rocprofiler_query_callback_tracing_kind_operation_name(rocprofiler_callback_tracing_kind_t kind, rocprofiler_tracing_operation_t operation, const char **name, uint64_t *name_len)
Query the name of the callback tracing kind. The name retrieved from this function is a string litera...
int(* rocprofiler_callback_tracing_kind_cb_t)(rocprofiler_callback_tracing_kind_t kind, void *data)
Callback function for mapping rocprofiler_callback_tracing_kind_t ids to string names.
Definition callback_tracing.h:431
int(* rocprofiler_callback_tracing_kind_operation_cb_t)(rocprofiler_callback_tracing_kind_t kind, rocprofiler_tracing_operation_t operation, void *data)
Callback function for mapping the operations of a given rocprofiler_callback_tracing_kind_t to string...
Definition callback_tracing.h:439
int(* rocprofiler_callback_tracing_operation_args_cb_t)(rocprofiler_callback_tracing_kind_t kind, rocprofiler_tracing_operation_t operation, uint32_t arg_number, const void *const arg_value_addr, int32_t arg_indirection_count, const char *arg_type, const char *arg_name, const char *arg_value_str, int32_t arg_dereference_count, void *data)
Callback function for iterating over the function arguments to a traced function. This function will ...
Definition callback_tracing.h:462
rocprofiler_status_t rocprofiler_configure_callback_tracing_service(rocprofiler_context_id_t context_id, rocprofiler_callback_tracing_kind_t kind, const rocprofiler_tracing_operation_t *operations, unsigned long operations_count, rocprofiler_callback_tracing_cb_t callback, void *callback_args)
Configure Callback Tracing Service. The callback tracing service provides two synchronous callbacks a...
rocprofiler_status_t rocprofiler_query_callback_tracing_kind_name(rocprofiler_callback_tracing_kind_t kind, const char **name, uint64_t *name_len)
Query the name of the callback tracing kind. The name retrieved from this function is a string litera...
rocprofiler_code_object_storage_type_t
ROCProfiler Enumeration for code object storage types (identical values to hsa_ven_amd_loader_code_ob...
Definition callback_tracing.h:58
rocprofiler_status_t rocprofiler_iterate_callback_tracing_kind_operations(rocprofiler_callback_tracing_kind_t kind, rocprofiler_callback_tracing_kind_operation_cb_t callback, void *data)
Iterates over all the mappings of the operations for a given rocprofiler_callback_tracing_kind_t and ...
rocprofiler_status_t rocprofiler_iterate_callback_tracing_kinds(rocprofiler_callback_tracing_kind_cb_t callback, void *data)
Iterate over all the mappings of the callback tracing kinds and get a callback for each kind.
void(* rocprofiler_callback_tracing_cb_t)(rocprofiler_callback_tracing_record_t record, rocprofiler_user_data_t *user_data, void *callback_data)
API Tracing callback function. This function is invoked twice per API function: once before the funct...
Definition callback_tracing.h:423
ROCProfiler Code Object Kernel Symbol Tracer Callback Record.
Definition callback_tracing.h:227
ROCProfiler Code Object Load Tracer Callback Record.
Definition callback_tracing.h:164
ROCProfiler HIP runtime and compiler API Tracer Callback Data.
Definition callback_tracing.h:80
ROCProfiler HIP Graph Callback Data.
Definition callback_tracing.h:399
ROCProfiler Stream Handle Callback Data.
Definition callback_tracing.h:365
ROCProfiler hipFILE API Callback Data.
Definition callback_tracing.h:154
ROCProfiler HSA API Callback Data.
Definition callback_tracing.h:70
ROCProfiler Kernel Dispatch Callback Tracer Record.
Definition callback_tracing.h:295
ROCProfiler Marker Tracer Callback Data.
Definition callback_tracing.h:104
ROCProfiler Memory Allocation Tracer Record.
Definition callback_tracing.h:324
ROCProfiler Memory Copy Callback Tracer Record.
Definition callback_tracing.h:309
ROCProfiler OMPT Callback Data.
Definition callback_tracing.h:95
ROCProfiler RCCL API Callback Data.
Definition callback_tracing.h:114
ROCProfiler rocDecode API Callback Data.
Definition callback_tracing.h:124
ROCProfiler rocJPEG API Callback Data.
Definition callback_tracing.h:134
ROCProfiler rocSHMEM API Callback Data.
Definition callback_tracing.h:144
ROCProfiler Runtime Initialization Data.
Definition callback_tracing.h:350
ROCProfiler Scratch Memory Callback Data.
Definition callback_tracing.h:337
Generated by