518c83e0f9
* Tests for exceeding OMNITRACE_MAX_THREADS
- tests which exceeds OMNITRACE_MAX_THREADS value for thread creation
* CMake Formatting.cmake update
- include source files in /tests/source directory
* Add unknown-hash= to OMNITRACE_ABORT_FAIL_REGEX
- fail if a timemory hash is not resolved to a name
* Tests for exceeding OMNITRACE_MAX_THREADS
- update
* omnitrace-sample update
- remove env disabling of critical-trace and process-sampling
* core library update
- make_unique in concepts.hpp
- add OMNITRACE_USE_ROCM_SMI to "process_sampling" category
- remove forced disabling of critical-trace in sampling mode
- parentheses for OMNITRACE_PREFER
- use tim::get_hash_id instead of tim::get_combined_hash_id
* core library update (containers)
- added aligned_static_vector.hpp
- similar to static_vector.hpp but attempts to align to cache line size
- alignment template parameter for stable_vector
- added missing aliases in static_vector
- consistent with aligned_static_vector aliases
* thread_info update
- track the peak number of threads created
- thread_info::get_peak_num_threads() returns the peak number of threads
* thread_data update
- generic thread_data inherits from base_thread_data
- thread_data reworked to support dynamic expansion
- base_thread_data updated to invoke private_instance() function
- thread_data<optional<T>> uses stable_vector aligned to cache line width
- thread_data<identity<T>> uses stable_vector aligned to cache line width
- thread_data for optional and identity provide private private_instance function + friend to base_thread_data
- component_bundle_cache<T> is now thread_data<component_bundle_cache_impl<T>>
* causal update
- thread_data<T>::instances -> thread_data<T>::instance(construct_on_thread{ ... })
- loop over max_supported_threads (constexpr) -> loop over thread_info::get_peak_num_threads()
- tim::get_combined_hash_id -> tim::get_hash_id
- update progress_bundle usage to new thread_data API
* backtrace/backtrace_metrics component update
- backtrace_metrics update
- update to new thead_data API
- add thread CPU time row in perfetto
- fix potential bug when rusage categories are disabled
- fix bug in operator-= not subtracting cpu time of rhs
- backtrace update
- skip all child call-stack below 'tim::openmp::' if sampling_keep_internal = false
* pthread_gotcha component update
- pthread_gotcha::shutdown() invokes pthread_create_gotcha::shutdown()
* pthread_create_gotcha component update
- minor tweak to {start,stop}_bundle functions: pass in thread id
- update to new thread_data API
- track native handles of internal threads
- implement system with pthread_kill to stop dangling bundles
* rocprofiler/roctracer component update
- update to new thread_data API
- loop over max_supported_threads (constexpr) -> loop over thread_info::get_peak_num_threads()
* critical trace (library) update
- update to new thread_data API
- tim::get_combined_hash_id -> tim::get_hash_id
* coverage update
- update to new thread_data API
* tasking update
- update to new thread_data API
- loop over max_supported_threads (constexpr) -> loop over thread_info::get_peak_num_threads()
* roctracer update
- update to new thread_data API
- loop over max_supported_threads (constexpr) -> loop over thread_info::get_peak_num_threads()
* rocm_smi update
- update to new thread_data API
* runtime.cpp update
- update to new thread_data API
* sampling.cpp update
- update to new thread_data API
- loop over max_supported_threads (constexpr) -> loop over thread_info::get_peak_num_threads()
* ompt.cpp update
- invoke pthread_gotcha::shutdown before invoking OMPT finalize function
- this prevents signals from being delivered to OpenMP threads
* tracing.hpp and tracing.cpp update
- replace get_timemory_hash_{ids,aliases} functions with copy_timemory_hash_ids function
- update to new thread_data API
- loop over max_supported_threads (constexpr) -> loop over thread_info::get_peak_num_threads()
- tim::get_combined_hash_id -> tim::get_hash_id
- improvements to + error checking in thread_init function
* library.cpp update
- move copying timemory hash id/aliases to tracing.cpp
- update to new thread_data API
- loop over max_supported_threads (constexpr) -> loop over thread_info::get_peak_num_threads()
* Update BuildSettings.cmake
- add -Wno-interference-size to suppress warning about use of std::hardware_destructive_interference
* Update fork example
- improve scheme for waiting on child processes via waitpid instead of wait
- support running main routine multiple times
- push/pop regions in child process
* Update lib/common/defines.h.in
- allow use to specify misc values via -D <name>=<value>
- OMNITRACE_CACHELINE_SIZE
- OMNITRACE_CACHELINE_SIZE_MIN
- OMNITRACE_ROCM_MAX_COUNTERS
- remove unused defines
- OMNITRACE_ROCM_LOOK_AHEAD
- OMNITRACE_MAX_ROCM_QUEUES
* Update rocprofiler.hpp
- OMNITRACE_MAX_ROCM_COUNTERS -> OMNITRACE_ROCM_MAX_COUNTERS
* Update aligned_static_vector
- set cacheline_align_v from max of OMNITRACE_CACHELINE_SIZE and OMNITRACE_CACHELINE_SIZE_MIN
* Update tracing.cpp
- acquire locks for updating main hash ids/aliases
- only propagate ids/aliases when finalizing
* Update pthread_create_gotcha.cpp
- make sure hash for "start_thread" exists on main thread
* Update causal end to end tests
- if OMNITRACE_BUILD_NUMBER is 1, set OMNITRACE_VERBOSE=0
425 γραμμές
14 KiB
C++
425 γραμμές
14 KiB
C++
// MIT License
|
|
//
|
|
// Copyright (c) 2022 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.
|
|
|
|
#include "library/components/backtrace_metrics.hpp"
|
|
#include "core/components/fwd.hpp"
|
|
#include "core/config.hpp"
|
|
#include "core/debug.hpp"
|
|
#include "core/perfetto.hpp"
|
|
#include "library/components/ensure_storage.hpp"
|
|
#include "library/ptl.hpp"
|
|
#include "library/runtime.hpp"
|
|
#include "library/thread_info.hpp"
|
|
#include "library/tracing.hpp"
|
|
|
|
#include <timemory/backends/papi.hpp>
|
|
#include <timemory/backends/threading.hpp>
|
|
#include <timemory/components/data_tracker/components.hpp>
|
|
#include <timemory/components/macros.hpp>
|
|
#include <timemory/components/papi/extern.hpp>
|
|
#include <timemory/components/papi/papi_array.hpp>
|
|
#include <timemory/components/papi/papi_vector.hpp>
|
|
#include <timemory/components/rusage/components.hpp>
|
|
#include <timemory/components/rusage/types.hpp>
|
|
#include <timemory/components/timing/backends.hpp>
|
|
#include <timemory/components/trip_count/extern.hpp>
|
|
#include <timemory/macros.hpp>
|
|
#include <timemory/math.hpp>
|
|
#include <timemory/mpl.hpp>
|
|
#include <timemory/mpl/quirks.hpp>
|
|
#include <timemory/mpl/type_traits.hpp>
|
|
#include <timemory/mpl/types.hpp>
|
|
#include <timemory/operations.hpp>
|
|
#include <timemory/storage.hpp>
|
|
#include <timemory/units.hpp>
|
|
#include <timemory/utility/backtrace.hpp>
|
|
#include <timemory/utility/demangle.hpp>
|
|
#include <timemory/utility/types.hpp>
|
|
#include <timemory/variadic.hpp>
|
|
|
|
#include <array>
|
|
#include <cstring>
|
|
#include <ctime>
|
|
#include <initializer_list>
|
|
#include <mutex>
|
|
#include <regex>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <type_traits>
|
|
#include <vector>
|
|
|
|
#include <pthread.h>
|
|
#include <signal.h>
|
|
|
|
namespace tracing
|
|
{
|
|
using namespace ::omnitrace::tracing;
|
|
}
|
|
|
|
namespace omnitrace
|
|
{
|
|
namespace component
|
|
{
|
|
using hw_counters = typename backtrace_metrics::hw_counters;
|
|
using signal_type_instances = thread_data<std::set<int>, category::sampling>;
|
|
using backtrace_metrics_init_instances =
|
|
thread_data<backtrace_metrics, category::sampling>;
|
|
using sampler_running_instances = thread_data<bool, category::sampling>;
|
|
using papi_vector_instances = thread_data<hw_counters, category::sampling>;
|
|
using papi_label_instances = thread_data<std::vector<std::string>, category::sampling>;
|
|
|
|
namespace
|
|
{
|
|
struct perfetto_rusage
|
|
{};
|
|
|
|
unique_ptr_t<std::vector<std::string>>&
|
|
get_papi_labels(int64_t _tid)
|
|
{
|
|
return papi_label_instances::instance(construct_on_thread{ _tid });
|
|
}
|
|
|
|
unique_ptr_t<hw_counters>&
|
|
get_papi_vector(int64_t _tid)
|
|
{
|
|
return papi_vector_instances::instance(construct_on_thread{ _tid });
|
|
}
|
|
|
|
unique_ptr_t<backtrace_metrics>&
|
|
get_backtrace_metrics_init(int64_t _tid)
|
|
{
|
|
return backtrace_metrics_init_instances::instance(construct_on_thread{ _tid });
|
|
}
|
|
|
|
unique_ptr_t<bool>&
|
|
get_sampler_running(int64_t _tid)
|
|
{
|
|
return sampler_running_instances::instance(construct_on_thread{ _tid }, false);
|
|
}
|
|
} // namespace
|
|
|
|
std::string
|
|
backtrace_metrics::label()
|
|
{
|
|
return "backtrace_metrics";
|
|
}
|
|
|
|
std::string
|
|
backtrace_metrics::description()
|
|
{
|
|
return "Records sampling data";
|
|
}
|
|
|
|
std::vector<std::string>
|
|
backtrace_metrics::get_hw_counter_labels(int64_t _tid)
|
|
{
|
|
auto& _v = get_papi_labels(_tid);
|
|
return (_v) ? *_v : std::vector<std::string>{};
|
|
}
|
|
|
|
void
|
|
backtrace_metrics::start()
|
|
{}
|
|
|
|
void
|
|
backtrace_metrics::stop()
|
|
{}
|
|
|
|
namespace
|
|
{
|
|
template <typename... Tp>
|
|
auto get_enabled(tim::type_list<Tp...>)
|
|
{
|
|
constexpr size_t N = sizeof...(Tp);
|
|
auto _v = std::bitset<N>{};
|
|
size_t _n = 0;
|
|
(_v.set(_n++, trait::runtime_enabled<Tp>::get()), ...);
|
|
return _v;
|
|
}
|
|
} // namespace
|
|
void
|
|
backtrace_metrics::sample(int)
|
|
{
|
|
if(!get_enabled(type_list<category::process_sampling, backtrace_metrics>{}).all())
|
|
{
|
|
m_valid.reset();
|
|
return;
|
|
}
|
|
|
|
m_valid = get_enabled(categories_t{});
|
|
|
|
// return if everything is disabled
|
|
if(!m_valid.any()) return;
|
|
|
|
auto _cache = tim::rusage_cache{ RUSAGE_THREAD };
|
|
m_cpu = tim::get_clock_thread_now<int64_t, std::nano>();
|
|
m_mem_peak = _cache.get_peak_rss();
|
|
m_ctx_swch = _cache.get_num_priority_context_switch() +
|
|
_cache.get_num_voluntary_context_switch();
|
|
m_page_flt = _cache.get_num_major_page_faults() + _cache.get_num_minor_page_faults();
|
|
|
|
if constexpr(tim::trait::is_available<hw_counters>::value)
|
|
{
|
|
constexpr auto hw_counters_idx = tim::index_of<hw_counters, categories_t>::value;
|
|
constexpr auto hw_category_idx =
|
|
tim::index_of<category::thread_hardware_counter, categories_t>::value;
|
|
|
|
auto _tid = threading::get_id();
|
|
if(m_valid.test(hw_category_idx) && m_valid.test(hw_counters_idx))
|
|
{
|
|
assert(get_papi_vector(_tid).get() != nullptr);
|
|
m_hw_counter = get_papi_vector(_tid)->record();
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
backtrace_metrics::configure(bool _setup, int64_t _tid)
|
|
{
|
|
auto& _running = get_sampler_running(_tid);
|
|
bool _is_running = (!_running) ? false : *_running;
|
|
|
|
ensure_storage<comp::trip_count, sampling_wall_clock, sampling_cpu_clock, hw_counters,
|
|
sampling_percent>{}();
|
|
|
|
if(_setup && !_is_running)
|
|
{
|
|
(void) get_debug_sampling(); // make sure query in sampler does not allocate
|
|
assert(_tid == threading::get_id());
|
|
|
|
if constexpr(tim::trait::is_available<hw_counters>::value)
|
|
{
|
|
perfetto_counter_track<hw_counters>::init();
|
|
OMNITRACE_DEBUG("HW COUNTER: starting...\n");
|
|
if(get_papi_vector(_tid))
|
|
{
|
|
get_papi_vector(_tid)->start();
|
|
*get_papi_labels(_tid) = get_papi_vector(_tid)->get_config()->labels;
|
|
}
|
|
}
|
|
}
|
|
else if(!_setup && _is_running)
|
|
{
|
|
OMNITRACE_DEBUG("Destroying sampler for thread %lu...\n", _tid);
|
|
*_running = false;
|
|
|
|
if constexpr(tim::trait::is_available<hw_counters>::value)
|
|
{
|
|
if(_tid == threading::get_id())
|
|
{
|
|
if(get_papi_vector(_tid)) get_papi_vector(_tid)->stop();
|
|
OMNITRACE_DEBUG("HW COUNTER: stopped...\n");
|
|
}
|
|
}
|
|
OMNITRACE_DEBUG("Sampler destroyed for thread %lu\n", _tid);
|
|
}
|
|
}
|
|
|
|
void
|
|
backtrace_metrics::init_perfetto(int64_t _tid, valid_array_t _valid)
|
|
{
|
|
auto _hw_cnt_labels = *get_papi_labels(_tid);
|
|
auto _tid_name = JOIN("", '[', _tid, ']');
|
|
|
|
if(!perfetto_counter_track<perfetto_rusage>::exists(_tid))
|
|
{
|
|
if(get_valid(category::thread_cpu_time{}, _valid))
|
|
perfetto_counter_track<perfetto_rusage>::emplace(
|
|
_tid, JOIN(' ', "Thread CPU time", _tid_name, "(S)"), "sec");
|
|
if(get_valid(category::thread_peak_memory{}, _valid))
|
|
perfetto_counter_track<perfetto_rusage>::emplace(
|
|
_tid, JOIN(' ', "Thread Peak Memory Usage", _tid_name, "(S)"), "MB");
|
|
if(get_valid(category::thread_context_switch{}, _valid))
|
|
perfetto_counter_track<perfetto_rusage>::emplace(
|
|
_tid, JOIN(' ', "Thread Context Switches", _tid_name, "(S)"));
|
|
if(get_valid(category::thread_page_fault{}, _valid))
|
|
perfetto_counter_track<perfetto_rusage>::emplace(
|
|
_tid, JOIN(' ', "Thread Page Faults", _tid_name, "(S)"));
|
|
}
|
|
|
|
if(!perfetto_counter_track<hw_counters>::exists(_tid) &&
|
|
get_valid(type_list<hw_counters>{}, _valid) &&
|
|
get_valid(category::thread_hardware_counter{}, _valid))
|
|
{
|
|
for(auto& itr : _hw_cnt_labels)
|
|
{
|
|
std::string _desc = tim::papi::get_event_info(itr).short_descr;
|
|
if(_desc.empty()) _desc = itr;
|
|
OMNITRACE_CI_THROW(_desc.empty(), "Empty description for %s\n", itr.c_str());
|
|
perfetto_counter_track<hw_counters>::emplace(
|
|
_tid, JOIN(' ', "Thread", _desc, _tid_name, "(S)"));
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
backtrace_metrics::fini_perfetto(int64_t _tid, valid_array_t _valid)
|
|
{
|
|
auto _hw_cnt_labels = *get_papi_labels(_tid);
|
|
const auto& _thread_info = thread_info::get(_tid, SequentTID);
|
|
|
|
OMNITRACE_CI_THROW(!_thread_info, "Error! missing thread info for tid=%li\n", _tid);
|
|
if(!_thread_info) return;
|
|
|
|
uint64_t _ts = _thread_info->get_stop();
|
|
uint64_t _rusage_idx = 0;
|
|
|
|
if(get_valid(category::thread_cpu_time{}, _valid))
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_cpu_time>::value,
|
|
perfetto_counter_track<perfetto_rusage>::at(_tid, _rusage_idx++),
|
|
_ts, 0);
|
|
}
|
|
|
|
if(get_valid(category::thread_peak_memory{}, _valid))
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_peak_memory>::value,
|
|
perfetto_counter_track<perfetto_rusage>::at(_tid, _rusage_idx++),
|
|
_ts, 0);
|
|
}
|
|
|
|
if(get_valid(category::thread_context_switch{}, _valid))
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_context_switch>::value,
|
|
perfetto_counter_track<perfetto_rusage>::at(_tid, _rusage_idx++),
|
|
_ts, 0);
|
|
}
|
|
|
|
if(get_valid(category::thread_page_fault{}, _valid))
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_page_fault>::value,
|
|
perfetto_counter_track<perfetto_rusage>::at(_tid, _rusage_idx++),
|
|
_ts, 0);
|
|
}
|
|
|
|
if(get_valid(type_list<hw_counters>{}, _valid) &&
|
|
get_valid(category::thread_hardware_counter{}, _valid))
|
|
{
|
|
for(size_t i = 0; i < perfetto_counter_track<hw_counters>::size(_tid); ++i)
|
|
{
|
|
if(i < _hw_cnt_labels.size())
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_hardware_counter>::value,
|
|
perfetto_counter_track<hw_counters>::at(_tid, i), _ts, 0.0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
backtrace_metrics&
|
|
backtrace_metrics::operator-=(const backtrace_metrics& _rhs)
|
|
{
|
|
auto& _lhs = *this;
|
|
|
|
if(_lhs(category::thread_cpu_time{}))
|
|
{
|
|
_lhs.m_cpu -= _rhs.m_cpu;
|
|
}
|
|
|
|
if(_lhs(category::thread_peak_memory{}))
|
|
{
|
|
_lhs.m_mem_peak -= _rhs.m_mem_peak;
|
|
}
|
|
|
|
if(_lhs(category::thread_context_switch{}))
|
|
{
|
|
_lhs.m_ctx_swch -= _rhs.m_ctx_swch;
|
|
}
|
|
|
|
if(_lhs(category::thread_page_fault{}))
|
|
{
|
|
_lhs.m_page_flt -= _rhs.m_page_flt;
|
|
}
|
|
|
|
if(_lhs(type_list<hw_counters>{}) && _lhs(category::thread_hardware_counter{}))
|
|
{
|
|
for(size_t i = 0; i < _lhs.m_hw_counter.size(); ++i)
|
|
_lhs.m_hw_counter.at(i) -= _rhs.m_hw_counter.at(i);
|
|
}
|
|
|
|
return _lhs;
|
|
}
|
|
|
|
void
|
|
backtrace_metrics::post_process_perfetto(int64_t _tid, uint64_t _ts) const
|
|
{
|
|
uint64_t _rusage_idx = 0;
|
|
|
|
if((*this)(category::thread_cpu_time{}))
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_cpu_time>::value,
|
|
perfetto_counter_track<perfetto_rusage>::at(_tid, _rusage_idx++),
|
|
_ts, m_cpu / units::sec);
|
|
}
|
|
|
|
if((*this)(category::thread_peak_memory{}))
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_peak_memory>::value,
|
|
perfetto_counter_track<perfetto_rusage>::at(_tid, _rusage_idx++),
|
|
_ts, m_mem_peak / units::megabyte);
|
|
}
|
|
|
|
if((*this)(category::thread_context_switch{}))
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_context_switch>::value,
|
|
perfetto_counter_track<perfetto_rusage>::at(_tid, _rusage_idx++),
|
|
_ts, m_ctx_swch);
|
|
}
|
|
|
|
if((*this)(category::thread_page_fault{}))
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_page_fault>::value,
|
|
perfetto_counter_track<perfetto_rusage>::at(_tid, _rusage_idx++),
|
|
_ts, m_page_flt);
|
|
}
|
|
|
|
if((*this)(type_list<hw_counters>{}) && (*this)(category::thread_hardware_counter{}))
|
|
{
|
|
for(size_t i = 0; i < perfetto_counter_track<hw_counters>::size(_tid); ++i)
|
|
{
|
|
if(i < m_hw_counter.size())
|
|
{
|
|
TRACE_COUNTER(trait::name<category::thread_hardware_counter>::value,
|
|
perfetto_counter_track<hw_counters>::at(_tid, i), _ts,
|
|
m_hw_counter.at(i));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} // namespace component
|
|
} // namespace omnitrace
|
|
|
|
OMNITRACE_INSTANTIATE_EXTERN_COMPONENT(
|
|
TIMEMORY_ESC(data_tracker<double, omnitrace::component::backtrace_wall_clock>), true,
|
|
double)
|
|
|
|
OMNITRACE_INSTANTIATE_EXTERN_COMPONENT(
|
|
TIMEMORY_ESC(data_tracker<double, omnitrace::component::backtrace_cpu_clock>), true,
|
|
double)
|
|
|
|
OMNITRACE_INSTANTIATE_EXTERN_COMPONENT(
|
|
TIMEMORY_ESC(data_tracker<double, omnitrace::component::backtrace_fraction>), true,
|
|
double)
|
|
|
|
TIMEMORY_INITIALIZE_STORAGE(omnitrace::component::backtrace_metrics)
|