3bd7773cf7
* Initial commit: Need to implement wrapper function to collect data and test that wrapper function is correctly replacing core HSA functions * Attempted to implement wrapper implementation for hsa memory allocation functions. Need to modify generate record files and test if implementation is working as expected * Debugging and implementing generateCSV function * Memory allocation size and starting address outputted to csv and json file formats * Formatting * Initial setup for OTF2 and Perfetto generation * Collecting agent id for memory_allocation and formatting * Modified memory_allocation.cpp to set up code for AMD_EXT commands * Support for memory_pool_allocate added * Removed accidently added file * Made flag optional and added more OTF2 and Perfetto code. Needs testing to ensure perfetto and OTF2 works * Formatting * Fixed perfetto and otf2 output * Fixed flag issue due to incorrect buffer use * Updated documentation * Small cleaning and comments * Added test for HSA memory allocation tracing * Fixed summary test validation errors due to allocation tracing. Added type to location_base to create unique event ids for allocation due to OTF2 trace error * Decreased lower limit of hip calls for test * Modified summary tests to vary number of allocate requests * Minor fixes to address comments. Still need to address OTF2 comments * Fix docs and changed OTF2 to use enum for type specified in location_base construction * Fixed schema error * Added vmem command tracking. Need to add test * Updated test to work with vmem command and updated generateCSV to output int instead of hex string. * OTF2 enum update and mispelling fix * CI does not support Virtual Memory API. Removed vmem test. Will add back if CI is modifed to suport vmem API * Update CMakeLists.txt for memory allocation test * Updated summary test * Minor fixes to address comments * Moved domain_type.hpp enum to before LAST * Fixed compile errors and formatting * Fixed stats summary domain name error * Added rocprofv3 test * Page migration test fix * Undo page migration test changes. Failures do not appear to have to do with memory allocation
206 rivejä
9.2 KiB
C++
206 rivejä
9.2 KiB
C++
// MIT License
|
|
//
|
|
// Copyright (c) 2023 Advanced Micro Devices, Inc. All rights reserved.
|
|
//
|
|
// 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-sdk/agent.h>
|
|
#include <rocprofiler-sdk/defines.h>
|
|
#include <rocprofiler-sdk/fwd.h>
|
|
#include <rocprofiler-sdk/hsa.h>
|
|
#include <rocprofiler-sdk/internal_threading.h>
|
|
|
|
#include <tuple>
|
|
|
|
#define ROCPROFILER_CXX_DECLARE_OPERATORS(TYPE) \
|
|
bool operator==(TYPE lhs, TYPE rhs) ROCPROFILER_ATTRIBUTE(pure); \
|
|
bool operator!=(TYPE lhs, TYPE rhs) ROCPROFILER_ATTRIBUTE(pure); \
|
|
bool operator<(TYPE lhs, TYPE rhs) ROCPROFILER_ATTRIBUTE(pure); \
|
|
bool operator>(TYPE lhs, TYPE rhs) ROCPROFILER_ATTRIBUTE(pure); \
|
|
bool operator<=(TYPE lhs, TYPE rhs) ROCPROFILER_ATTRIBUTE(pure); \
|
|
bool operator>=(TYPE lhs, TYPE rhs) ROCPROFILER_ATTRIBUTE(pure);
|
|
|
|
#define ROCPROFILER_CXX_DEFINE_NE_OPERATOR(TYPE) \
|
|
inline bool operator!=(TYPE lhs, TYPE rhs) { return !(lhs == rhs); }
|
|
|
|
#define ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(TYPE) \
|
|
inline bool operator==(TYPE lhs, TYPE rhs) \
|
|
{ \
|
|
return ::rocprofiler::sdk::operators::equal(lhs, rhs); \
|
|
}
|
|
|
|
#define ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(TYPE) \
|
|
inline bool operator<(TYPE lhs, TYPE rhs) \
|
|
{ \
|
|
return ::rocprofiler::sdk::operators::less(lhs, rhs); \
|
|
}
|
|
|
|
#define ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(TYPE) \
|
|
inline bool operator>(TYPE lhs, TYPE rhs) { return (lhs == rhs || !(lhs < rhs)); } \
|
|
inline bool operator<=(TYPE lhs, TYPE rhs) { return (lhs == rhs || lhs < rhs); } \
|
|
inline bool operator>=(TYPE lhs, TYPE rhs) { return !(lhs < rhs); }
|
|
|
|
namespace rocprofiler
|
|
{
|
|
namespace sdk
|
|
{
|
|
namespace operators
|
|
{
|
|
template <typename Tp>
|
|
bool
|
|
equal(Tp lhs, Tp rhs) ROCPROFILER_ATTRIBUTE(pure);
|
|
|
|
template <typename Tp>
|
|
bool
|
|
less(Tp lhs, Tp rhs) ROCPROFILER_ATTRIBUTE(pure);
|
|
|
|
template <typename Tp>
|
|
bool
|
|
equal(Tp lhs, Tp rhs)
|
|
{
|
|
static_assert(sizeof(Tp) == sizeof(uint64_t), "error! only for opaque handle types");
|
|
return lhs.handle == rhs.handle;
|
|
}
|
|
|
|
template <typename Tp>
|
|
bool
|
|
less(Tp lhs, Tp rhs)
|
|
{
|
|
static_assert(sizeof(Tp) == sizeof(uint64_t), "error! only for opaque handle types");
|
|
return lhs.handle < rhs.handle;
|
|
}
|
|
} // namespace operators
|
|
} // namespace sdk
|
|
} // namespace rocprofiler
|
|
|
|
// declaration of operator== and operator!=
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(rocprofiler_context_id_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(rocprofiler_agent_id_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(rocprofiler_queue_id_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(rocprofiler_buffer_id_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(rocprofiler_counter_id_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(rocprofiler_profile_config_id_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(rocprofiler_callback_thread_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(hsa_agent_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(hsa_signal_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(hsa_executable_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(const rocprofiler_agent_v0_t&)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(rocprofiler_dim3_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(hsa_region_t)
|
|
ROCPROFILER_CXX_DECLARE_OPERATORS(hsa_amd_memory_pool_t)
|
|
|
|
// definitions of operator==
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(rocprofiler_context_id_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(rocprofiler_agent_id_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(rocprofiler_queue_id_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(rocprofiler_buffer_id_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(rocprofiler_counter_id_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(rocprofiler_profile_config_id_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(rocprofiler_callback_thread_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(hsa_agent_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(hsa_signal_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(hsa_executable_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(hsa_region_t)
|
|
ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR(hsa_amd_memory_pool_t)
|
|
|
|
inline bool
|
|
operator==(const rocprofiler_agent_v0_t& lhs, const rocprofiler_agent_v0_t& rhs)
|
|
{
|
|
return (lhs.id == rhs.id);
|
|
}
|
|
|
|
inline bool
|
|
operator==(rocprofiler_dim3_t lhs, rocprofiler_dim3_t rhs)
|
|
{
|
|
return std::tie(lhs.x, lhs.y, lhs.z) == std::tie(rhs.x, rhs.y, rhs.z);
|
|
}
|
|
|
|
// definitions of operator!=
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(rocprofiler_context_id_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(rocprofiler_agent_id_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(rocprofiler_queue_id_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(rocprofiler_buffer_id_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(rocprofiler_counter_id_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(rocprofiler_profile_config_id_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(rocprofiler_callback_thread_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(hsa_agent_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(hsa_signal_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(hsa_executable_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(const rocprofiler_agent_v0_t&)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(rocprofiler_dim3_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(hsa_region_t)
|
|
ROCPROFILER_CXX_DEFINE_NE_OPERATOR(hsa_amd_memory_pool_t)
|
|
|
|
// definitions of operator<
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(rocprofiler_context_id_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(rocprofiler_agent_id_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(rocprofiler_queue_id_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(rocprofiler_buffer_id_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(rocprofiler_counter_id_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(rocprofiler_profile_config_id_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(rocprofiler_callback_thread_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(hsa_agent_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(hsa_signal_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(hsa_executable_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(hsa_region_t)
|
|
ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR(hsa_amd_memory_pool_t)
|
|
|
|
inline bool
|
|
operator<(const rocprofiler_agent_v0_t& lhs, const rocprofiler_agent_v0_t& rhs)
|
|
{
|
|
return (lhs.id < rhs.id);
|
|
}
|
|
|
|
inline bool
|
|
operator<(rocprofiler_dim3_t lhs, rocprofiler_dim3_t rhs)
|
|
{
|
|
const auto magnitude = [](rocprofiler_dim3_t dim_v) { return dim_v.x * dim_v.y * dim_v.z; };
|
|
auto lhs_m = magnitude(lhs);
|
|
auto rhs_m = magnitude(rhs);
|
|
|
|
return (lhs_m == rhs_m) ? std::tie(lhs.x, lhs.y, lhs.z) < std::tie(rhs.x, rhs.y, rhs.z)
|
|
: (lhs_m < rhs_m);
|
|
}
|
|
|
|
// definitions of operator>, operator<=, operator>=
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(rocprofiler_context_id_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(rocprofiler_agent_id_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(rocprofiler_queue_id_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(rocprofiler_buffer_id_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(rocprofiler_counter_id_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(rocprofiler_profile_config_id_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(rocprofiler_callback_thread_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(hsa_agent_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(hsa_signal_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(hsa_executable_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(const rocprofiler_agent_v0_t&)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(rocprofiler_dim3_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(hsa_region_t)
|
|
ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS(hsa_amd_memory_pool_t)
|
|
|
|
// cleanup defines
|
|
#undef ROCPROFILER_CXX_DECLARE_OPERATORS
|
|
#undef ROCPROFILER_CXX_DEFINE_NE_OPERATOR
|
|
#undef ROCPROFILER_CXX_DEFINE_EQ_HANDLE_OPERATOR
|
|
#undef ROCPROFILER_CXX_DEFINE_LT_HANDLE_OPERATOR
|
|
#undef ROCPROFILER_CXX_DEFINE_COMPARE_OPERATORS
|