Files
rocm-systems/inc/rocprofiler.h
T

541 rader
23 KiB
C
Normal vy Historik

2018-06-25 19:22:36 -05:00
/******************************************************************************
2018-08-19 04:11:04 -05:00
Copyright (c) 2018 Advanced Micro Devices, Inc. All rights reserved.
2018-06-25 19:22:36 -05:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
2018-08-19 04:11:04 -05:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2018-06-25 19:22:36 -05:00
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2018-08-19 04:11:04 -05:00
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2018-06-25 19:22:36 -05:00
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2018-08-19 04:11:04 -05:00
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
2018-06-25 19:22:36 -05:00
*******************************************************************************/
2017-11-09 17:26:19 -06:00
////////////////////////////////////////////////////////////////////////////////
//
// ROC Profiler API
//
// The goal of the implementation is to provide a HW specific low-level
// performance analysis interface for profiling of GPU compute applications.
// The profiling includes HW performance counters (PMC) with complex
2020-01-07 12:15:29 -06:00
// performance metrics and traces.
2017-11-09 17:26:19 -06:00
//
// The library can be used by a tool library loaded by HSA runtime or by
// higher level HW independent performance analysis API like PAPI.
//
// The library is written on C and will be based on AQLprofile AMD specific
// HSA extension. The library implementation requires HSA API intercepting and
// a profiling queue supporting a submit callback interface.
//
////////////////////////////////////////////////////////////////////////////////
#ifndef INC_ROCPROFILER_H_
#define INC_ROCPROFILER_H_
2018-12-21 18:02:26 -06:00
#include <amd_hsa_kernel_code.h>
#include <hsa.h>
#include <hsa_ext_amd.h>
2017-11-09 17:26:19 -06:00
#include <hsa_ven_amd_aqlprofile.h>
#include <stdint.h>
2020-05-12 10:30:18 -05:00
#define ROCPROFILER_VERSION_MAJOR 8
2018-07-25 14:53:33 -05:00
#define ROCPROFILER_VERSION_MINOR 0
2018-02-07 09:41:17 -06:00
2017-11-09 17:26:19 -06:00
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
2018-02-07 09:41:17 -06:00
////////////////////////////////////////////////////////////////////////////////
// Returning library version
uint32_t rocprofiler_version_major();
uint32_t rocprofiler_version_minor();
////////////////////////////////////////////////////////////////////////////////
// Global properties structure
typedef struct {
uint32_t intercept_mode;
uint32_t code_obj_tracking;
2019-01-07 01:53:27 -06:00
uint32_t memcopy_tracking;
2019-05-31 20:20:28 -05:00
uint32_t trace_size;
uint32_t trace_local;
uint64_t timeout;
uint32_t timestamp_on;
2018-07-18 11:21:46 -05:00
uint32_t hsa_intercepting;
} rocprofiler_settings_t;
2017-11-09 17:26:19 -06:00
////////////////////////////////////////////////////////////////////////////////
2018-02-02 14:55:03 -06:00
// Returning the error string method
hsa_status_t rocprofiler_error_string(
const char** str); // [out] the API error string pointer returning
////////////////////////////////////////////////////////////////////////////////
// Profiling features and data
2017-11-09 17:26:19 -06:00
//
2018-02-02 14:55:03 -06:00
// Profiling features objects have profiling feature info, type, parameters and data
2017-11-09 17:26:19 -06:00
// Also profiling data samplaes can be iterated using a callback
2018-01-22 17:02:46 -06:00
// Profiling feature kind
2017-11-09 17:26:19 -06:00
typedef enum {
2018-02-01 14:52:21 -06:00
ROCPROFILER_FEATURE_KIND_METRIC = 0,
2020-01-23 20:56:42 -06:00
ROCPROFILER_FEATURE_KIND_TRACE = 1,
ROCPROFILER_FEATURE_KIND_SPM_MOD = 2,
ROCPROFILER_FEATURE_KIND_PCSMP_MOD = 4
2017-11-27 16:51:03 -06:00
} rocprofiler_feature_kind_t;
2017-11-09 17:26:19 -06:00
// Profiling feture parameter
typedef hsa_ven_amd_aqlprofile_parameter_t rocprofiler_parameter_t;
// Profiling data kind
typedef enum {
2017-11-29 13:53:12 -06:00
ROCPROFILER_DATA_KIND_UNINIT = 0,
ROCPROFILER_DATA_KIND_INT32 = 1,
ROCPROFILER_DATA_KIND_INT64 = 2,
ROCPROFILER_DATA_KIND_FLOAT = 3,
ROCPROFILER_DATA_KIND_DOUBLE = 4,
ROCPROFILER_DATA_KIND_BYTES = 5
2017-11-27 16:51:03 -06:00
} rocprofiler_data_kind_t;
2017-11-09 17:26:19 -06:00
// Profiling data type
typedef struct {
2017-11-27 16:51:03 -06:00
rocprofiler_data_kind_t kind; // result kind
2017-11-09 17:26:19 -06:00
union {
2017-11-29 13:53:12 -06:00
uint32_t result_int32; // 32bit integer result
uint64_t result_int64; // 64bit integer result
float result_float; // float single-precision result
double result_double; // float double-precision result
2017-11-09 17:26:19 -06:00
struct {
void* ptr;
uint32_t size;
uint32_t instance_count;
bool copy;
2017-11-29 13:53:12 -06:00
} result_bytes; // data by ptr and byte size
2017-11-09 17:26:19 -06:00
};
} rocprofiler_data_t;
2018-01-22 17:02:46 -06:00
// Profiling feature type
2017-11-09 17:26:19 -06:00
typedef struct {
2017-11-29 13:53:12 -06:00
rocprofiler_feature_kind_t kind; // feature kind
2018-01-22 17:02:46 -06:00
union {
const char* name; // feature name
struct {
const char* block; // counter block name
uint32_t event; // counter event id
} counter;
};
2017-11-29 13:53:12 -06:00
const rocprofiler_parameter_t* parameters; // feature parameters array
uint32_t parameter_count; // feature parameters count
rocprofiler_data_t data; // profiling data
2017-11-27 16:51:03 -06:00
} rocprofiler_feature_t;
2017-11-09 17:26:19 -06:00
2018-01-22 17:02:46 -06:00
// Profiling features set type
typedef void rocprofiler_feature_set_t;
2017-11-09 17:26:19 -06:00
////////////////////////////////////////////////////////////////////////////////
// Profiling context
//
// Profiling context object accumuate all profiling information
// Profiling context object
typedef void rocprofiler_t;
// Profiling group object
typedef struct {
2017-11-29 13:53:12 -06:00
unsigned index; // group index
rocprofiler_feature_t** features; // profiling info array
uint32_t feature_count; // profiling info count
rocprofiler_t* context; // context object
2017-11-09 17:26:19 -06:00
} rocprofiler_group_t;
2017-11-15 20:59:24 -06:00
// Profiling mode mask
2017-11-09 17:26:19 -06:00
typedef enum {
2017-11-29 13:53:12 -06:00
ROCPROFILER_MODE_STANDALONE = 1, // standalone mode when ROC profiler supports a queue
ROCPROFILER_MODE_CREATEQUEUE = 2, // ROC profiler creates queue in standalone mode
ROCPROFILER_MODE_SINGLEGROUP = 4 // only one group is allowed, failed otherwise
2017-11-09 17:26:19 -06:00
} rocprofiler_mode_t;
2017-11-15 20:59:24 -06:00
// Profiling handler, calling on profiling completion
typedef bool (*rocprofiler_handler_t)(rocprofiler_group_t group, void* arg);
2017-11-15 20:59:24 -06:00
2017-11-09 17:26:19 -06:00
// Profiling preperties
typedef struct {
2017-11-29 13:53:12 -06:00
hsa_queue_t* queue; // queue for STANDALONE mode
// the queue is created and returned in CREATEQUEUE mode
uint32_t queue_depth; // created queue depth
rocprofiler_handler_t handler; // handler on completion
void* handler_arg; // the handler arg
2017-11-09 17:26:19 -06:00
} rocprofiler_properties_t;
// Create new profiling context
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_open(hsa_agent_t agent, // GPU handle
2018-01-22 17:02:46 -06:00
rocprofiler_feature_t* features, // [in] profiling features array
2017-11-29 13:53:12 -06:00
uint32_t feature_count, // profiling info count
rocprofiler_t** context, // [out] context object
uint32_t mode, // profiling mode mask
rocprofiler_properties_t* properties); // profiling properties
2017-11-09 17:26:19 -06:00
2018-08-19 04:11:04 -05:00
// Add feature to a features set
2018-01-22 17:02:46 -06:00
hsa_status_t rocprofiler_add_feature(const rocprofiler_feature_t* feature, // [in]
rocprofiler_feature_set_t* features_set); // [in/out] profiling features set
// Create new profiling context
hsa_status_t rocprofiler_features_set_open(hsa_agent_t agent, // GPU handle
rocprofiler_feature_set_t* features_set, // [in] profiling features set
rocprofiler_t** context, // [out] context object
uint32_t mode, // profiling mode mask
rocprofiler_properties_t* properties); // profiling properties
2017-11-09 17:26:19 -06:00
// Delete profiling info
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_close(rocprofiler_t* context); // [in] profiling context
2017-11-09 17:26:19 -06:00
2017-11-15 20:59:24 -06:00
// Context reset before reusing
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_reset(rocprofiler_t* context, // [in] profiling context
uint32_t group_index); // group index
2017-11-15 20:59:24 -06:00
2020-01-23 20:56:42 -06:00
// Return context agent
hsa_status_t rocprofiler_get_agent(rocprofiler_t* context, // [in] profiling context
hsa_agent_t* agent); // [out] GPU handle
2019-12-31 20:56:53 -06:00
// Supported time value ID
typedef enum {
ROCPROFILER_TIME_ID_CLOCK_REALTIME = 0, // Linux realtime clock time
ROCPROFILER_TIME_ID_CLOCK_REALTIME_COARSE = 1, // Linux realtime-coarse clock time
ROCPROFILER_TIME_ID_CLOCK_MONOTONIC = 2, // Linux monotonic clock time
ROCPROFILER_TIME_ID_CLOCK_MONOTONIC_COARSE = 3, // Linux monotonic-coarse clock time
ROCPROFILER_TIME_ID_CLOCK_MONOTONIC_RAW = 4, // Linux monotonic-raw clock time
2019-12-31 20:56:53 -06:00
} rocprofiler_time_id_t;
// Return time value for a given time ID and profiling timestamp
hsa_status_t rocprofiler_get_time(
rocprofiler_time_id_t time_id, // identifier of the particular time to convert the timesatmp
uint64_t timestamp, // profiling timestamp
uint64_t* value_ns, // [out] returned time 'ns' value, ignored if NULL
uint64_t* error_ns); // [out] returned time error 'ns' value, ignored if NULL
2019-12-31 20:56:53 -06:00
2017-11-09 17:26:19 -06:00
////////////////////////////////////////////////////////////////////////////////
2018-02-21 19:59:47 -06:00
// Queue callbacks
2017-11-09 17:26:19 -06:00
//
2018-02-21 19:59:47 -06:00
// Queue callbacks for initiating profiling per kernel dispatch and to wait
// the profiling data on the queue destroy.
2017-11-09 17:26:19 -06:00
// Dispatch record
typedef struct {
2018-07-09 20:33:58 -05:00
uint64_t dispatch; // dispatch timestamp, ns
uint64_t begin; // kernel begin timestamp, ns
uint64_t end; // kernel end timestamp, ns
uint64_t complete; // completion signal timestamp, ns
} rocprofiler_dispatch_record_t;
2017-11-09 17:26:19 -06:00
// Profiling callback data
typedef struct {
hsa_agent_t agent; // GPU agent handle
uint32_t agent_index; // GPU index
const hsa_queue_t* queue; // HSA queue
uint64_t queue_index; // Index in the queue
uint32_t queue_id; // Queue id
hsa_signal_t completion_signal; // Completion signal
const hsa_kernel_dispatch_packet_t* packet; // HSA dispatch packet
const char* kernel_name; // Kernel name
uint64_t kernel_object; // Kernel object address
2018-12-21 18:02:26 -06:00
const amd_kernel_code_t* kernel_code; // Kernel code pointer
uint32_t thread_id; // Thread id
const rocprofiler_dispatch_record_t* record; // Dispatch record
2017-11-09 17:26:19 -06:00
} rocprofiler_callback_data_t;
// Profiling callback type
typedef hsa_status_t (*rocprofiler_callback_t)(
2018-09-18 16:52:05 -05:00
const rocprofiler_callback_data_t* callback_data, // [in] callback data
2017-11-29 13:53:12 -06:00
void* user_data, // [in/out] user data passed to the callback
2018-09-18 16:52:05 -05:00
rocprofiler_group_t* group); // [out] returned profiling group
2017-11-09 17:26:19 -06:00
2018-02-21 19:59:47 -06:00
// Queue callbacks
typedef struct {
rocprofiler_callback_t dispatch; // dispatch callback
hsa_status_t (*create)(hsa_queue_t* queue, void* data); // create callback
2018-02-21 19:59:47 -06:00
hsa_status_t (*destroy)(hsa_queue_t* queue, void* data); // destroy callback
} rocprofiler_queue_callbacks_t;
// Set queue callbacks
hsa_status_t rocprofiler_set_queue_callbacks(
rocprofiler_queue_callbacks_t callbacks, // callbacks
void* data); // [in/out] passed callbacks data
2017-11-09 17:26:19 -06:00
2018-02-21 19:59:47 -06:00
// Remove queue callbacks
hsa_status_t rocprofiler_remove_queue_callbacks();
2017-11-09 17:26:19 -06:00
2020-01-13 20:36:26 -06:00
// Start/stop queue callbacks
hsa_status_t rocprofiler_start_queue_callbacks();
hsa_status_t rocprofiler_stop_queue_callbacks();
2017-11-09 17:26:19 -06:00
////////////////////////////////////////////////////////////////////////////////
// Start/stop profiling
//
// Start/stop the context profiling invocation, have to be as many as
// contect.invocations' to collect all profiling data
// Start profiling
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_start(rocprofiler_t* context, // [in/out] profiling context
uint32_t group_index); // group index
2017-11-09 17:26:19 -06:00
// Stop profiling
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_stop(rocprofiler_t* context, // [in/out] profiling context
uint32_t group_index); // group index
2017-11-09 17:26:19 -06:00
2018-02-02 14:55:03 -06:00
// Read profiling
hsa_status_t rocprofiler_read(rocprofiler_t* context, // [in/out] profiling context
uint32_t group_index); // group index
2017-11-09 17:26:19 -06:00
// Read profiling data
hsa_status_t rocprofiler_get_data(rocprofiler_t* context, // [in/out] profiling context
uint32_t group_index); // group index
2017-11-09 17:26:19 -06:00
2017-11-27 16:51:03 -06:00
// Get profiling groups count
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_group_count(const rocprofiler_t* context, // [in] profiling context
uint32_t* group_count); // [out] profiling groups count
2017-11-09 17:26:19 -06:00
2017-11-27 16:51:03 -06:00
// Get profiling group for a given index
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_get_group(rocprofiler_t* context, // [in] profiling context
2018-02-02 14:55:03 -06:00
uint32_t group_index, // profiling group index
2017-11-29 13:53:12 -06:00
rocprofiler_group_t* group); // [out] profiling group
2017-11-27 16:51:03 -06:00
2017-11-09 17:26:19 -06:00
// Start profiling
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_group_start(rocprofiler_group_t* group); // [in/out] profiling group
2017-11-09 17:26:19 -06:00
// Stop profiling
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_group_stop(rocprofiler_group_t* group); // [in/out] profiling group
2017-11-09 17:26:19 -06:00
2018-02-02 14:55:03 -06:00
// Read profiling
hsa_status_t rocprofiler_group_read(rocprofiler_group_t* group); // [in/out] profiling group
2017-11-09 17:26:19 -06:00
// Get profiling data
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_group_get_data(rocprofiler_group_t* group); // [in/out] profiling group
2017-11-09 17:26:19 -06:00
// Get metrics data
2017-11-29 13:53:12 -06:00
hsa_status_t rocprofiler_get_metrics(const rocprofiler_t* context); // [in/out] profiling context
2017-11-09 17:26:19 -06:00
// Definition of output data iterator callback
typedef hsa_ven_amd_aqlprofile_data_callback_t rocprofiler_trace_data_callback_t;
// Method for iterating the events output data
hsa_status_t rocprofiler_iterate_trace_data(
2017-11-27 16:51:03 -06:00
rocprofiler_t* context, // [in] profiling context
2018-02-02 14:55:03 -06:00
rocprofiler_trace_data_callback_t callback, // callback to iterate the output data
2017-11-29 13:53:12 -06:00
void* data); // [in/out] callback data
2017-11-09 17:26:19 -06:00
////////////////////////////////////////////////////////////////////////////////
2018-02-02 14:55:03 -06:00
// Profiling features and data
//
// Profiling features objects have profiling feature info, type, parameters and data
// Also profiling data samplaes can be iterated using a callback
2017-11-09 17:26:19 -06:00
2018-02-02 14:55:03 -06:00
// Profiling info kind
typedef enum {
ROCPROFILER_INFO_KIND_METRIC = 0, // metric info
ROCPROFILER_INFO_KIND_METRIC_COUNT = 1, // metric features count, int32
ROCPROFILER_INFO_KIND_TRACE = 2, // trace info
ROCPROFILER_INFO_KIND_TRACE_COUNT = 3, // trace features count, int32
ROCPROFILER_INFO_KIND_TRACE_PARAMETER = 4, // trace parameter info
ROCPROFILER_INFO_KIND_TRACE_PARAMETER_COUNT = 5 // trace parameter count, int32
} rocprofiler_info_kind_t;
// Profiling info query
typedef union {
rocprofiler_info_kind_t info_kind; // queried profiling info kind
struct {
const char* trace_name; // queried info trace name
} trace_parameter;
} rocprofiler_info_query_t;
// Profiling info data
typedef struct {
2018-02-12 15:00:20 -06:00
uint32_t agent_index; // GPU HSA agent index
2018-02-02 14:55:03 -06:00
rocprofiler_info_kind_t kind; // info data kind
union {
struct {
const char* name; // metric name
2018-07-09 13:48:57 -05:00
uint32_t instances; // instances number
2018-02-12 15:00:20 -06:00
const char* expr; // metric expression, NULL for basic counters
2018-02-02 14:55:03 -06:00
const char* description; // metric description
2018-07-09 13:48:57 -05:00
const char* block_name; // block name
uint32_t block_counters; // number of block counters
2018-02-02 14:55:03 -06:00
} metric;
struct {
const char* name; // trace name
const char* description; // trace description
uint32_t parameter_count; // supported by the trace number parameters
} trace;
struct {
uint32_t code; // parameter code
const char* trace_name; // trace name
const char* parameter_name; // parameter name
const char* description; // trace parameter description
} trace_parameter;
};
} rocprofiler_info_data_t;
// Return the info for a given info kind
hsa_status_t rocprofiler_get_info(
2018-02-07 09:41:17 -06:00
const hsa_agent_t* agent, // [in] GFXIP handle
2018-02-02 14:55:03 -06:00
rocprofiler_info_kind_t kind, // kind of iterated info
void *data); // [in/out] returned data
// Iterate over the info for a given info kind, and invoke an application-defined callback on every iteration
hsa_status_t rocprofiler_iterate_info(
2018-02-07 09:41:17 -06:00
const hsa_agent_t* agent, // [in] GFXIP handle
2018-02-02 14:55:03 -06:00
rocprofiler_info_kind_t kind, // kind of iterated info
hsa_status_t (*callback)(const rocprofiler_info_data_t info, void *data), // callback
void *data); // [in/out] data passed to callback
// Iterate over the info for a given info query, and invoke an application-defined callback on every iteration
hsa_status_t rocprofiler_query_info(
2018-02-07 09:41:17 -06:00
const hsa_agent_t *agent, // [in] GFXIP handle
2018-02-02 14:55:03 -06:00
rocprofiler_info_query_t query, // iterated info query
hsa_status_t (*callback)(const rocprofiler_info_data_t info, void *data), // callback
void *data); // [in/out] data passed to callback
2017-11-09 17:26:19 -06:00
2019-12-30 01:38:18 -06:00
// Create a profiled queue. All dispatches on this queue will be profiled
2018-07-09 20:33:58 -05:00
hsa_status_t rocprofiler_queue_create_profiled(
hsa_agent_t agent_handle,uint32_t size, hsa_queue_type32_t type,
void (*callback)(hsa_status_t status, hsa_queue_t* source, void* data),
void* data, uint32_t private_segment_size, uint32_t group_segment_size,
hsa_queue_t** queue);
2019-03-03 01:04:00 -06:00
////////////////////////////////////////////////////////////////////////////////
// Profiling pool
//
// Support for profiling contexts pool
2019-03-29 11:09:50 -05:00
// The API provide capability to create a contexts pool for a given agent and a set of features,
// to fetch/relase a context entry, to register a callback for the contexts completion.
2019-03-03 01:04:00 -06:00
2019-03-29 11:09:50 -05:00
// Profiling pool handle
2019-03-03 01:04:00 -06:00
typedef void rocprofiler_pool_t;
// Profiling pool entry
typedef struct {
rocprofiler_t* context; // context object
void* payload; // payload data object
} rocprofiler_pool_entry_t;
// Profiling handler, calling on profiling completion
typedef bool (*rocprofiler_pool_handler_t)(const rocprofiler_pool_entry_t* entry, void* arg);
// Profiling preperties
typedef struct {
uint32_t num_entries; // pool size entries
uint32_t payload_bytes; // payload size bytes
rocprofiler_pool_handler_t handler; // handler on context completion
void* handler_arg; // the handler arg
} rocprofiler_pool_properties_t;
// Open profiling pool
2019-03-29 11:09:50 -05:00
hsa_status_t rocprofiler_pool_open(
hsa_agent_t agent, // GPU handle
rocprofiler_feature_t* features, // [in] profiling features array
uint32_t feature_count, // profiling info count
rocprofiler_pool_t** pool, // [out] context object
uint32_t mode, // profiling mode mask
rocprofiler_pool_properties_t*); // pool properties
2019-03-03 01:04:00 -06:00
// Close profiling pool
2019-03-29 11:09:50 -05:00
hsa_status_t rocprofiler_pool_close(
rocprofiler_pool_t* pool); // profiling pool handle
2019-03-03 01:04:00 -06:00
// Fetch profiling pool entry
2019-03-29 11:09:50 -05:00
hsa_status_t rocprofiler_pool_fetch(
rocprofiler_pool_t* pool, // profiling pool handle
rocprofiler_pool_entry_t* entry); // [out] empty profiling pool entry
// Release profiling pool entry
hsa_status_t rocprofiler_pool_release(
rocprofiler_pool_entry_t* entry); // released profiling pool entry
// Iterate fetched profiling pool entries
hsa_status_t rocprofiler_pool_iterate(
rocprofiler_pool_t* pool, // profiling pool handle
hsa_status_t (*callback)(rocprofiler_pool_entry_t* entry, void* data), // callback
void *data); // [in/out] data passed to callback
2019-03-03 01:04:00 -06:00
2019-03-29 11:09:50 -05:00
// Flush completed entries in profiling pool
hsa_status_t rocprofiler_pool_flush(
rocprofiler_pool_t* pool); // profiling pool handle
2019-03-03 01:04:00 -06:00
////////////////////////////////////////////////////////////////////////////////
// HSA intercepting API
2018-07-18 11:21:46 -05:00
// HSA callbacks ID enumeration
2020-02-14 00:22:36 -06:00
typedef enum {
ROCPROFILER_HSA_CB_ID_ALLOCATE = 0, // Memory allocate callback
ROCPROFILER_HSA_CB_ID_DEVICE = 1, // Device assign callback
ROCPROFILER_HSA_CB_ID_MEMCOPY = 2, // Memcopy callback
ROCPROFILER_HSA_CB_ID_SUBMIT = 3 // Packet submit callback
2020-02-14 00:22:36 -06:00
} rocprofiler_hsa_cb_id_t;
2018-07-18 11:21:46 -05:00
// HSA callback data type
2020-02-14 00:22:36 -06:00
typedef struct {
2018-07-18 11:21:46 -05:00
union {
struct {
const void* ptr; // allocated area ptr
size_t size; // allocated area size, zero size means 'free' callback
hsa_amd_segment_t segment; // allocated area's memory segment type
hsa_amd_memory_pool_global_flag_t global_flag; // allocated area's memory global flag
2018-09-05 15:49:33 -05:00
int is_code; // equal to 1 if code is allocated
} allocate;
struct {
hsa_device_type_t type; // type of assigned device
uint32_t id; // id of assigned device
2018-10-03 18:06:57 -05:00
hsa_agent_t agent; // device HSA agent handle
const void* ptr; // ptr the device is assigned to
} device;
2018-07-18 11:21:46 -05:00
struct {
const void* dst; // memcopy dst ptr
const void* src; // memcopy src ptr
size_t size; // memcopy size bytes
2018-07-18 11:21:46 -05:00
} memcopy;
struct {
const void* packet; // submitted to GPU packet
const char* kernel_name; // kernel name, not NULL if dispatch
hsa_queue_t* queue; // HSA queue the kernel was submitted to
2019-10-28 12:55:32 -05:00
uint32_t device_type; // type of device the packed is submitted to
uint32_t device_id; // id of device the packed is submitted to
2018-07-18 11:21:46 -05:00
} submit;
};
2020-02-14 00:22:36 -06:00
} rocprofiler_hsa_callback_data_t;
2018-07-18 11:21:46 -05:00
// HSA callback function type
typedef hsa_status_t (*rocprofiler_hsa_callback_fun_t)(
rocprofiler_hsa_cb_id_t id, // callback id
2018-07-18 11:21:46 -05:00
const rocprofiler_hsa_callback_data_t* data, // [in] callback data
void* arg); // [in/out] user passed data
// HSA callbacks structure
2020-02-14 00:22:36 -06:00
typedef struct {
rocprofiler_hsa_callback_fun_t allocate; // memory allocate callback
rocprofiler_hsa_callback_fun_t device; // agent assign callback
2018-07-18 11:21:46 -05:00
rocprofiler_hsa_callback_fun_t memcopy; // memory copy callback
rocprofiler_hsa_callback_fun_t submit; // packet submit callback
2020-02-14 00:22:36 -06:00
} rocprofiler_hsa_callbacks_t;
2018-07-18 11:21:46 -05:00
// Set callbacks. If the callback is NULL then it is disabled.
// If callback returns a value that is not HSA_STATUS_SUCCESS the callback
// will be unregistered.
hsa_status_t rocprofiler_set_hsa_callbacks(
const rocprofiler_hsa_callbacks_t callbacks, // HSA callback function
void* arg); // callback user data
2017-11-09 17:26:19 -06:00
#ifdef __cplusplus
} // extern "C" block
#endif // __cplusplus
#endif // INC_ROCPROFILER_H_