010693b795
* Migrate XML counter defs and reader from v1/v2 * Current Working Set * Modified parser * Evaluate AST Start * Update lib/common/xml - move definitions out of class declaration * Update lib/rocprofiler/counters/parser - update build of bison and flex build - reproducible generation - add ROCPROFILER_REGENERATE_COUNTERS_PARSER option - fix namespacing * Update lib/rocprofiler/counters/xml - change location of XML files and install them * Update lib/rocprofiler/counter/tests - normalize the test names - improve test failures (more clear about where failure is) * Update lib/rocprofiler/counters - fix namespace - update to new XML metrics directory * Update lib/rocprofiler/CMakeLists.txt - link to object library * Update lib/rocprofiler/hsa/types.hpp - reorganize includes * Add metric loading class/printers * Agent Implementation * Queue Implementation (#79) * Queue Implementation * API Implementation For Counters (part 1) (#80) * API Implementation For Counters * Bewelton/counter collection 3 (#84) * Added counter sample * More changes * More changes * Update samples/counter_collection - mostly formatting * Update include/rocprofiler/counters.h - formatting * Add lib.common/synchronized.hpp - Synchronized struct * Update lib/rocprofiler/counters/xml/basic_counters.xml - whitespace * Update scripts/patch-parser.cmake - tweaks for consistency * Update lib/rocprofiler/counters/parser/tests/parser_tests.cpp - formatting * Update lib/rocprofiler/counters/parser - improve consistency in rocprofiler-expr-parser-patch - update parser.{h,cpp} and scanner.cpp - formatting + regenerated * Update lib/rocprofiler/aql - formatting - clang-tidy fixes - guard against memory pool access errors * Update lib/rocprofiler/aql/tests - formatting - update use of get_val - normalize test names * Update lib/rocprofiler/counters/tests - formatting - patch basic_counters and derived_counters - normalize test names * Update lib/rocprofiler/aql/tests - set_tests_properties * Update test labels - fix minor issue with gtest labels * Update lib/rocprofiler/counters - formatting - clang-tidy fixes * Update lib/rocprofiler/hsa - fix includes - formatting - clang-tidy fixes - tweak to queue_controller_init interface * Update lib/rocprofiler - include fixes - namespace fixes - clang-tidy fixes - formatting * Update scripts/run-ci.py - exclude counters/parser from code coverage (generated files) * Update include/rocprofiler/counters.h - fix doxygen comment * Update lib/rocprofiler/aql/packet_construct.cpp - guard against HSA_AMD_MEMORY_POOL_ACCESS_DISALLOWED_BY_DEFAULT and HSA_AMD_MEMORY_POOL_ACCESS_NEVER_ALLOWED * Update lib/rocprofiler/counters/parser/raw_ast.hpp - clang-tidy fixes * Update lib/rocprofiler/counters/evaluate_ast.hpp - clang-tidy fixes * Update lib/rocprofiler/aql/tests - disable packet_generation_single and packet_generation_multi tests - the entire implementation rocprofiler::get_ext_table() is incorrect * Minor fixes before cleanup * More changes * More fixes * More fixes * source formatting (clang-format v11) (#99) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Revert PTL submodule * Update scripts/run-ci.py - exclude counters/parser from code coverage (generated files) * Migrating counters state to context * Linting * source formatting (clang-format v11) (#101) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * revert run-ci * Testing fixes * More test changes * Fix minor typo * Small queue change * Small queue change * source formatting (clang-format v11) (#102) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * source formatting (clang-format v11) (#105) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Documentation Change * More documentation fixes * source formatting (clang-format v11) (#106) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Threading fixes * Threading fixes * source formatting (clang-format v11) (#107) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Threading fixes * More test fixes * More agent fixes * More build fixes * source formatting (clang-format v11) (#109) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * changed test timeouts * Build fix * Build fix * Updates to agent * source formatting (clang-format v11) (#114) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * cmake formatting (cmake-format) (#113) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * remove git worktree folder * Doc update * testing fix * Another test fix * More test changes * Rebase * source formatting (clang-format v11) (#116) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Documentation * source formatting (clang-format v11) (#119) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * PTL Changes * Minor agent fix for empty labels * source formatting (clang-format v11) (#120) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Minor agent fix for empty labels * Refactor read_map * source formatting (clang-format v11) (#121) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Refactor read_map * Cache fixes * source formatting (clang-format v11) (#122) Co-authored-by: bwelton <bwelton@users.noreply.github.com> --------- Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: bwelton <bwelton@users.noreply.github.com>
265 wiersze
7.7 KiB
C++
265 wiersze
7.7 KiB
C++
// MIT License
|
|
//
|
|
// Copyright (c) 2023 ROCm Developer Tools
|
|
//
|
|
// 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.
|
|
|
|
#include <rocprofiler/fwd.h>
|
|
#include <rocprofiler/rocprofiler.h>
|
|
|
|
#include "lib/common/container/stable_vector.hpp"
|
|
#include "lib/rocprofiler/buffer.hpp"
|
|
#include "lib/rocprofiler/context/context.hpp"
|
|
#include "lib/rocprofiler/counters/core.hpp"
|
|
|
|
#include <glog/logging.h>
|
|
|
|
#include <unistd.h>
|
|
#include <atomic>
|
|
#include <cstddef>
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <optional>
|
|
|
|
namespace rocprofiler
|
|
{
|
|
namespace context
|
|
{
|
|
namespace
|
|
{
|
|
auto&
|
|
get_contexts_mutex()
|
|
{
|
|
static auto _v = std::mutex{};
|
|
return _v;
|
|
}
|
|
|
|
constexpr auto invalid_client_idx = std::numeric_limits<uint32_t>::max();
|
|
|
|
auto&
|
|
get_client_index()
|
|
{
|
|
static auto _v = invalid_client_idx;
|
|
return _v;
|
|
}
|
|
} // namespace
|
|
|
|
uint64_t
|
|
correlation_tracing_service::get_unique_record_id()
|
|
{
|
|
static auto _v = std::atomic<uint64_t>{};
|
|
return _v++;
|
|
}
|
|
|
|
using reserve_size_t = common::container::reserve_size;
|
|
|
|
unique_context_vec_t&
|
|
get_registered_contexts()
|
|
{
|
|
static auto _v = unique_context_vec_t{reserve_size_t{unique_context_vec_t::chunk_size}};
|
|
return _v;
|
|
}
|
|
|
|
active_context_vec_t&
|
|
get_active_contexts()
|
|
{
|
|
static auto* _v = new active_context_vec_t{reserve_size_t{active_context_vec_t::chunk_size}};
|
|
static auto _once = std::once_flag{};
|
|
std::call_once(_once, std::atexit, []() {
|
|
for(auto& itr : *_v)
|
|
{
|
|
itr.store(nullptr);
|
|
}
|
|
});
|
|
return *_v;
|
|
}
|
|
|
|
// set the client index needs to be called before allocate_context()
|
|
void
|
|
push_client(uint32_t value)
|
|
{
|
|
LOG_ASSERT(get_client_index() == invalid_client_idx)
|
|
<< " rocprofiler client index is currently " << get_client_index()
|
|
<< "... which means that a new client is initializing before the last client finished "
|
|
"initializing. This is an internal error, please file a bug report with a reproducer";
|
|
get_client_index() = value;
|
|
}
|
|
|
|
// remove the client index
|
|
void
|
|
pop_client(uint32_t value)
|
|
{
|
|
LOG_ASSERT(get_client_index() == value)
|
|
<< " rocprofiler client index is currently not " << value
|
|
<< "... which means that a new client was initialized before this client finished "
|
|
"initializing. This is an internal error, please file a bug report with a reproducer";
|
|
get_client_index() = invalid_client_idx;
|
|
}
|
|
|
|
std::optional<rocprofiler_context_id_t>
|
|
allocate_context()
|
|
{
|
|
// ... allocate any internal space needed to handle another context ...
|
|
auto _lk = std::unique_lock<std::mutex>{get_contexts_mutex()};
|
|
|
|
// initial context identifier number
|
|
auto _idx = get_registered_contexts().size();
|
|
|
|
// make space in registered
|
|
get_registered_contexts().emplace_back(nullptr);
|
|
|
|
// create an entry in the registered
|
|
auto& _cfg_v = get_registered_contexts().back();
|
|
_cfg_v = std::make_unique<context>();
|
|
auto* _cfg = _cfg_v.get();
|
|
// ...
|
|
|
|
if(!_cfg) return std::nullopt;
|
|
|
|
_cfg->size = sizeof(context);
|
|
_cfg->context_idx = _idx;
|
|
_cfg->client_idx = get_client_index();
|
|
|
|
LOG_ASSERT(_cfg->client_idx != invalid_client_idx)
|
|
<< " rocprofiler internal error: a context was allocated without an associated tool client "
|
|
"identifier";
|
|
|
|
return rocprofiler_context_id_t{_idx};
|
|
}
|
|
|
|
rocprofiler_status_t
|
|
validate_context(const context* cfg)
|
|
{
|
|
// if(cfg->buffer == nullptr) return ROCPROFILER_STATUS_ERROR_BUFFER_NOT_FOUND;
|
|
|
|
// if(cfg->filter == nullptr) return ROCPROFILER_STATUS_ERROR_FILTER_NOT_FOUND;
|
|
|
|
return (cfg) ? ROCPROFILER_STATUS_SUCCESS : ROCPROFILER_STATUS_ERROR_CONTEXT_NOT_FOUND;
|
|
}
|
|
|
|
rocprofiler_status_t
|
|
start_context(rocprofiler_context_id_t context_id)
|
|
{
|
|
if(context_id.handle >= get_registered_contexts().size())
|
|
{
|
|
return ROCPROFILER_STATUS_ERROR_CONTEXT_NOT_FOUND;
|
|
}
|
|
|
|
context* cfg = get_registered_contexts().at(context_id.handle).get();
|
|
|
|
if(!cfg)
|
|
{
|
|
return ROCPROFILER_STATUS_ERROR_CONTEXT_NOT_FOUND;
|
|
}
|
|
|
|
if(validate_context(cfg) != ROCPROFILER_STATUS_SUCCESS)
|
|
{
|
|
return ROCPROFILER_STATUS_ERROR_CONTEXT_INVALID;
|
|
}
|
|
|
|
uint64_t rocp_tot_contexts = get_registered_contexts().size();
|
|
auto idx = rocp_tot_contexts;
|
|
{
|
|
// hold a lock here so prevent multiple threads from finding the same nullptr slot
|
|
auto _lk = std::unique_lock<std::mutex>{get_contexts_mutex()};
|
|
// try to find a nullptr slot first
|
|
for(size_t i = 0; i < get_active_contexts().size(); ++i)
|
|
{
|
|
auto* itr = get_active_contexts().at(i).load(std::memory_order_relaxed);
|
|
if(itr == nullptr)
|
|
{
|
|
idx = i;
|
|
break;
|
|
}
|
|
else if(context_id.handle == itr->context_idx)
|
|
{
|
|
return ROCPROFILER_STATUS_SUCCESS;
|
|
}
|
|
}
|
|
// if no nullptr slot was found, then create one while lock is held
|
|
if(idx == rocp_tot_contexts)
|
|
{
|
|
idx = get_active_contexts().size();
|
|
get_active_contexts().emplace_back();
|
|
}
|
|
}
|
|
|
|
// atomic swap the pointer into the "active" array used internally
|
|
context* _expected = nullptr;
|
|
bool success = get_active_contexts().at(idx).compare_exchange_strong(
|
|
_expected, get_registered_contexts().at(context_id.handle).get());
|
|
|
|
if(!success) return ROCPROFILER_STATUS_ERROR_CONTEXT_NOT_STARTED;
|
|
|
|
rocprofiler::counters::start_context(context_id);
|
|
|
|
return ROCPROFILER_STATUS_SUCCESS;
|
|
}
|
|
|
|
rocprofiler_status_t
|
|
stop_context(rocprofiler_context_id_t idx)
|
|
{
|
|
// atomically assign the context pointer to NULL so that it is skipped in future
|
|
// callbacks
|
|
for(auto& itr : get_active_contexts())
|
|
{
|
|
auto* _expected = itr.load(std::memory_order_relaxed);
|
|
if(_expected && _expected->context_idx == idx.handle)
|
|
{
|
|
bool success = itr.compare_exchange_strong(_expected, nullptr);
|
|
|
|
rocprofiler::counters::stop_context(idx);
|
|
if(success) return ROCPROFILER_STATUS_SUCCESS;
|
|
}
|
|
}
|
|
|
|
return ROCPROFILER_STATUS_ERROR_CONTEXT_NOT_FOUND; // compare exchange failed
|
|
}
|
|
|
|
void
|
|
deactivate_client_contexts(rocprofiler_client_id_t client_id)
|
|
{
|
|
for(auto& itr : get_active_contexts())
|
|
{
|
|
auto* itr_v = itr.load();
|
|
if(itr_v->client_idx == client_id.handle)
|
|
{
|
|
itr.store(nullptr);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
deregister_client_contexts(rocprofiler_client_id_t client_id)
|
|
{
|
|
for(auto& itr : get_registered_contexts())
|
|
{
|
|
if(itr->client_idx == client_id.handle)
|
|
{
|
|
for(auto& bitr : buffer::get_buffers())
|
|
{
|
|
if(bitr->context_id == itr->context_idx) bitr.reset();
|
|
}
|
|
itr.reset();
|
|
}
|
|
}
|
|
}
|
|
} // namespace context
|
|
} // namespace rocprofiler
|