rocprofiler-sdk/callback_tracing.h Source File#
|
ROCprofiler-SDK developer API 1.0.0
ROCm Profiling API and tools
|
callback_tracing.h
351 * before the function is invoked and once after the function is invoked. The external correlation
352 * id value within the record is assigned the value at the top of the external correlation id stack.
353 * It is permissible to invoke ::rocprofiler_push_external_correlation_id within the enter phase;
354 * when a new external correlation id is pushed during the enter phase, rocprofiler will use that
355 * external correlation id for any async events and provide the new external correlation id during
357 * callback will result in that external correlation id value in the exit callback (which may or may
358 * not be different from the external correlation id value in the enter callback). If a tool pushes
363 * @param [in,out] user_data This paramter can be used to retain information in between the enter
397 * @param [in] arg_indirection_count the total number of indirection levels for the argument, e.g.
402 * @param [in] arg_dereference_count the number of times the argument was dereferenced when it was
419 * @brief Configure Callback Tracing Service. The callback tracing service provides two synchronous
420 * callbacks around an API function on the same thread as the application which is invoking the API
421 * function. This function can only be invoked once per ::rocprofiler_callback_tracing_kind_t value,
422 * i.e. it can be invoked once for the HSA API, once for the HIP API, and so on but it will fail if
424 * non-trivial overhead of copying the function arguments into the record. If you are willing to let
425 * rocprofiler record the timestamps, do not require synchronous notifications of the API calls, and
441 * @retval ::ROCPROFILER_STATUS_ERROR_CONTEXT_NOT_FOUND The provided context is not valid/registered
443 * ::rocprofiler_callback_tracing_kind_t value is provided more than once (per context) -- in other
456 * @brief Query the name of the callback tracing kind. The name retrieved from this function is a
464 * @param [out] name_len If non-null, this will be assigned the length of the name (regardless of
474 * @brief Query the name of the callback tracing kind. The name retrieved from this function is a
479 * @param [in] operation Enumeration id value which maps to a specific API function or event type
483 * @param [out] name_len If non-null, this will be assigned the length of the name (regardless of
497 * @brief Iterate over all the mappings of the callback tracing kinds and get a callback for each
511 * ::rocprofiler_callback_tracing_kind_t and invokes the callback with the kind id, operation id,
533 * It is recommended to use this function when the record phase is ::ROCPROFILER_CALLBACK_PHASE_EXIT
534 * or ::ROCPROFILER_CALLBACK_PHASE_NONE. When the phase is ::ROCPROFILER_CALLBACK_PHASE_ENTER, the
535 * function may have output parameters which have not set. In the case of an output parameter with
537 * parameter is either null or, in the worst case scenario, pointing to an uninitialized value which
538 * will result in garbage values to be stringified. However, if the output parameter has more than
578 * parameters which have not been set. When the output parameter has multiple levels of indirection,
579 * it may be invalid to dereference the output parameter more than once and doing so may result in a
580 * segmentation fault. Thus, it is recommended to set this parameter to a maximum value of 1 when
581 * 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:516
Multi-dimensional struct of data used to describe GPU workgroup and grid sizes.
Definition fwd.h:702
uint32_t group_segment_size
Size of static group segment memory required by the kernel (per work-group), in bytes....
Definition callback_tracing.h:213
uint32_t kernarg_segment_alignment
Alignment (in bytes) of the buffer used to pass arguments to the kernel.
Definition callback_tracing.h:212
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:155
uint32_t arch_vgpr_count
Architecture vector general purpose register count.
Definition callback_tracing.h:216
uint32_t accum_vgpr_count
Accum vector general purpose register count.
Definition callback_tracing.h:217
uint64_t kernel_object
kernel object handle, used in the kernel dispatch packet
Definition callback_tracing.h:210
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:214
uint64_t instance
Number of times this runtime had been loaded previously.
Definition callback_tracing.h:331
hsa_agent_t hsa_agent
Deprecated. The agent on which this loaded code object is loaded.
Definition callback_tracing.h:150
rocprofiler_address_t kernel_address
The first address of a kernel. Useful for PC sampling.
Definition callback_tracing.h:219
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:152
uint64_t load_size
The byte size of the loaded code objects contiguous memory allocation.
Definition callback_tracing.h:153
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:154
uint32_t kernarg_segment_size
size of memory (in bytes) allocated for kernel arguments. Will be multiple of 16
Definition callback_tracing.h:211
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:218
rocprofiler_address_t address
starting address for memory allocation
Definition callback_tracing.h:307
const char * uri
The URI name from which the code object was loaded.
Definition callback_tracing.h:151
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:375
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:383
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:406
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:56
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:367
ROCProfiler Code Object Kernel Symbol Tracer Callback Record.
Definition callback_tracing.h:205
ROCProfiler Code Object Load Tracer Callback Record.
Definition callback_tracing.h:142
ROCProfiler HIP runtime and compiler API Tracer Callback Data.
Definition callback_tracing.h:78
ROCProfiler Stream Handle Callback Data.
Definition callback_tracing.h:343
ROCProfiler HSA API Callback Data.
Definition callback_tracing.h:68
ROCProfiler Kernel Dispatch Callback Tracer Record.
Definition callback_tracing.h:273
ROCProfiler Marker Tracer Callback Data.
Definition callback_tracing.h:102
ROCProfiler Memory Allocation Tracer Record.
Definition callback_tracing.h:302
ROCProfiler Memory Copy Callback Tracer Record.
Definition callback_tracing.h:287
ROCProfiler OMPT Callback Data.
Definition callback_tracing.h:93
ROCProfiler RCCL API Callback Data.
Definition callback_tracing.h:112
ROCProfiler rocDecode API Callback Data.
Definition callback_tracing.h:122
ROCProfiler rocJPEG API Callback Data.
Definition callback_tracing.h:132
ROCProfiler Runtime Initialization Data.
Definition callback_tracing.h:328
ROCProfiler Scratch Memory Callback Data.
Definition callback_tracing.h:315
Generated by