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 lines
2.6 KiB
C++
100 lines
2.6 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 <cstddef>
|
|
#include <cstdint>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
namespace rocprofiler
|
|
{
|
|
namespace hsa
|
|
{
|
|
namespace utils
|
|
{
|
|
struct join_args
|
|
{
|
|
std::string_view prefix = {};
|
|
std::string_view suffix = {};
|
|
std::string_view separator = {};
|
|
};
|
|
|
|
template <typename Tp>
|
|
auto
|
|
join_impl(const Tp& _v)
|
|
{
|
|
return _v;
|
|
}
|
|
|
|
template <typename LhsT, typename RhsT>
|
|
auto
|
|
join_impl(const std::pair<LhsT, RhsT>& _v)
|
|
{
|
|
auto _ss = std::stringstream{};
|
|
_ss << _v.first << "=" << _v.second;
|
|
return _ss.str();
|
|
}
|
|
|
|
template <typename... Args>
|
|
auto
|
|
join(join_args ja, Args... args)
|
|
{
|
|
auto _content = std::string{};
|
|
{
|
|
auto _ss = std::stringstream{};
|
|
((_ss << ja.separator << join_impl(args)), ...);
|
|
auto _v = _ss.str();
|
|
if(_v.length() > ja.separator.length()) _content = _v.substr(2);
|
|
}
|
|
|
|
return (std::stringstream{} << ja.prefix << _content << ja.suffix).str();
|
|
}
|
|
|
|
template <typename Tp>
|
|
auto
|
|
stringize_impl(const Tp& _v)
|
|
{
|
|
auto _ss = std::stringstream{};
|
|
_ss << _v;
|
|
return _ss.str();
|
|
}
|
|
|
|
template <typename LhsT, typename RhsT>
|
|
auto
|
|
stringize_impl(const std::pair<LhsT, RhsT>& _v)
|
|
{
|
|
return std::make_pair(stringize_impl(_v.first), stringize_impl(_v.second));
|
|
}
|
|
|
|
template <typename... Args>
|
|
auto
|
|
stringize(Args... args)
|
|
{
|
|
return std::vector<std::pair<std::string, std::string>>{stringize_impl(args)...};
|
|
}
|
|
} // namespace utils
|
|
} // namespace hsa
|
|
} // namespace rocprofiler
|