2e0ede4761
* [0/N] git submodules
* [1/N] Update cmake, gitignore, external
- clang-tidy file
- update .gitignore
- update main CMakeLists.txt
- update external/CMakeLists.txt
- update rocprofiler_config_interfaces.cmake
- update rocprofiler_formatting.cmake
- update rocprofiler_interfaces.cmake
- update rocprofiler_linting.cmake
- update rocprofiler_options.cmake
- update rocprofiler_utilities.cmake
* [2/N] Update rocprofiler/config.h
- update to work with new rocprofiler.h
* [3/N] Update source/lib/rocprofiler/hsa
- hsa-types.h: static asserts
- hsa.cpp: copyTables scope
- hsa.gen.cpp: ACTIVITY_DOMAIN_HSA_API -> ROCPROFILER_TRACER_ACTIVITY_DOMAIN_HSA_API
- rename some files
- add rocprofiler_ prefix to types and enums
- HSA_API_TABLE_LOOKUP_DEFINITION macro
- get_saved_table() -> get_table()
* [4/N] Update source/lib/common
- CMake: change target_link_libraries
- defines.hpp: remove ppdefs defined in include/rocprofiler/defines.h
* [5/N] Update source/lib/rocprofiler
- updates due to changes in rocprofiler.h
- rocprofiler_config.cpp: remove unions which are now defined in include/rocprofiler
- CMakeLists.txt: rocprofiler.cpp and public hsa-runtime and hip libraries
- rocprofiler.cpp: dummy implementations for:
- rocprofiler_query_available_agents
- rocprofiler_create_context
- rocprofiler_start_context
- rocprofiler_stop_context
- rocprofiler_flush_buffer
- rocprofiler_destroy_buffer
* [6/N] Update license
- replace stale LBNL license
* [7/N] CMake format
[ROCm/rocprofiler-sdk commit: 351d825a8d]
100 خطوط
3.0 KiB
C++
100 خطوط
3.0 KiB
C++
// Copyright (c) 2018-2023 Advanced Micro Devices, Inc.
|
|
//
|
|
// 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:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
#pragma once
|
|
|
|
#include <rocprofiler/rocprofiler.h>
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace rocprofiler
|
|
{
|
|
namespace hsa
|
|
{
|
|
using activity_functor_t = int (*)(rocprofiler_tracer_activity_domain_t domain,
|
|
uint32_t operation_id,
|
|
void* data);
|
|
|
|
using hsa_api_table_t = HsaApiTable;
|
|
|
|
hsa_api_table_t&
|
|
get_table();
|
|
|
|
template <size_t Idx>
|
|
struct hsa_table_lookup;
|
|
|
|
template <size_t Idx>
|
|
struct hsa_api_impl
|
|
{
|
|
template <typename DataT, typename DataArgsT, typename... Args>
|
|
static auto phase_enter(DataT& _data, DataArgsT&, Args... args);
|
|
|
|
template <typename DataT, typename... Args>
|
|
static auto phase_exit(DataT& _data);
|
|
|
|
template <typename DataT, typename FuncT, typename... Args>
|
|
static auto exec(DataT& _data, FuncT&&, Args&&... args);
|
|
|
|
template <typename... Args>
|
|
static auto functor(Args&&... args);
|
|
};
|
|
|
|
template <size_t Idx>
|
|
struct hsa_api_info;
|
|
|
|
const char*
|
|
hsa_api_name(uint32_t id);
|
|
|
|
uint32_t
|
|
hsa_api_id_by_name(const char* name);
|
|
|
|
std::string
|
|
hsa_api_data_string(uint32_t id, const rocprofiler_hsa_trace_data_t& _data);
|
|
|
|
std::string
|
|
hsa_api_named_data_string(uint32_t id, const rocprofiler_hsa_trace_data_t& _data);
|
|
|
|
void
|
|
hsa_api_iterate_args(uint32_t id,
|
|
const rocprofiler_hsa_trace_data_t& _data,
|
|
int (*_func)(const char*, const char*));
|
|
|
|
std::vector<const char*>
|
|
hsa_api_get_names();
|
|
|
|
std::vector<uint32_t>
|
|
hsa_api_get_ids();
|
|
|
|
void
|
|
hsa_api_set_callback(activity_functor_t _func);
|
|
} // namespace hsa
|
|
} // namespace rocprofiler
|
|
|
|
extern "C" {
|
|
using on_load_t = bool (*)(HsaApiTable*, uint64_t, uint64_t, const char* const*);
|
|
|
|
bool
|
|
OnLoad(HsaApiTable* table,
|
|
uint64_t runtime_version,
|
|
uint64_t failed_tool_count,
|
|
const char* const* failed_tool_names) ROCPROFILER_PUBLIC_API;
|
|
}
|