1688a027d8
- additional miscellaneous tweaks to workflows and docker scripts, e.g. install perfetto python bindings - improves the stability of MPI finalization - reduces some debug messages within timemory when `OMNITRACE_DEBUG=ON` - fixes issue found in RHEL where libunwind is using mutex and omnitrace was not treating this as an internal mutex call - this may have been affecting the causal profiling slightly (tests seem a bit more stable now) - fix data race in timemory * Add RedHat CI and release packaging - additional miscellaneous tweaks to workflows and docker scripts, e.g. install perfetto python bindings * Fix URL for ROCm packages in redhat workflow * Fix dnf --enable-repo for ROCm perl packages * Dockerfile.rhel and redhat.yml updates - Fix dnf repo for ROCm PERL packages - Disable python in CI (interpreter segfaults) - Exclude parallel-overhead-locks tests due to inclusion of internal locks - This needs to be remedied in the future * Exclude _dl_relocate_static_pie from instrumentation * Testing updates - OMNITRACE_SAMPLING_KEEP_INTERNAL=OFF for parallel-overhead-locks * Fix redhat workflow * redhat.yml update - remove if condition on config/build/test step * Update timemory submodule - tweaks to verbosity messages * Set thread state before unw_step - on Redhat, unw_step calls mutex * Update timemory submodule - verbosity changes - gotcha uses spin_lock/spin_mutex * Remove using gsplit-dwarf unless OMNITRACE_BUILD_NUMBER > 2 * Re-enable parallel-overhead-locks tests in redhat workflow * Always disable timemory manager metadata auto output * testing updates - tweak parallel-overhead-locks-timemory to higher instruction count min - OMNITRACE_SAMPLING_KEEP_INTERNAL=OFF for parallel-overhead-locks-perfetto * Update timemory submodule - quiet realpath queries * omnitrace exe updates - detect text files - improved bin/lib locating * cmake format * test-install.sh and redhat workflow updates - handle testing when ls is script - re-enable python testing on redhat workflow - invoke test-install.sh in redhat workflow * Misc guards for finalization * omnitrace-exe, testing updates - test-install.sh: LS_EXEC -> LS_NAME - handle /usr/bin/ls being script in source/bin/tests - improve locating the binary * Fix mpi_gotcha compile error * omnitrace-exe updates - improve file locating * formatting * Misc fixes - remove -static-libstdc++ for RHEL packaging (rocky-linux doesn't distribute static lib) * omnitrace-exe paths * Replace realpath with absolute - using absolute path to symlink fixes issues with locating libdyninstAPI_RT at runtime * omnitrace exe updates - judicious use of realpath * Update timemory submodule - fix update main hash ids/aliases data race in merge * bin tests update - change working directory of omnitrace-exe-simulate-lib-basename * omnitrace exe updates - Update resolved exe/lib messaging * bin tests update - change working directory of omnitrace-exe-simulate-lib-basename
93 строки
3.5 KiB
C++
93 строки
3.5 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.
|
|
|
|
#pragma once
|
|
|
|
#include <timemory/log/color.hpp>
|
|
#include <timemory/utility/backtrace.hpp>
|
|
#include <timemory/utility/join.hpp>
|
|
|
|
#include <iosfwd>
|
|
#include <ostream>
|
|
#include <string>
|
|
#include <tuple>
|
|
|
|
#if !defined(JOIN)
|
|
# define JOIN(...) ::timemory::join::join(__VA_ARGS__)
|
|
#endif
|
|
|
|
struct log_entry;
|
|
|
|
void
|
|
print_log_entries(std::ostream& = std::cerr, int64_t _count = 10,
|
|
const std::function<bool(const log_entry&)>& _cond = {},
|
|
const std::function<void()>& _prelude = {},
|
|
const char* _color = tim::log::color::warning(),
|
|
bool _color_entries = true);
|
|
|
|
struct log_entry
|
|
{
|
|
struct source_location
|
|
{
|
|
const char* function = nullptr;
|
|
const char* file = nullptr;
|
|
int line = 0;
|
|
};
|
|
|
|
log_entry(std::string _msg);
|
|
log_entry(source_location _loc, std::string _msg);
|
|
|
|
std::string as_string(const char* _color = tim::log::color::info(),
|
|
const char* _src = tim::log::color::source(),
|
|
const char* _end = tim::log::color::end()) const;
|
|
|
|
static log_entry& add_log_entry(log_entry&&);
|
|
|
|
log_entry& force(bool _v = true)
|
|
{
|
|
m_forced = _v;
|
|
return *this;
|
|
}
|
|
|
|
bool forced() const { return m_forced; }
|
|
|
|
private:
|
|
bool m_forced = false; // if should always be displayed
|
|
source_location m_location = {};
|
|
std::string m_message = {};
|
|
tim::unwind::stack<4> m_backtrace = {};
|
|
|
|
friend void print_log_entries(std::ostream&, int64_t,
|
|
std::function<bool(const log_entry&)>, const char*,
|
|
bool);
|
|
};
|
|
|
|
#define OMNITRACE_ADD_LOG_ENTRY(...) \
|
|
log_entry::add_log_entry( \
|
|
{ log_entry::source_location{ __FUNCTION__, __FILE__, __LINE__ }, \
|
|
timemory::join::join(' ', __VA_ARGS__) })
|
|
|
|
#define OMNITRACE_ADD_DETAILED_LOG_ENTRY(DELIM, ...) \
|
|
log_entry::add_log_entry( \
|
|
{ log_entry::source_location{ __FUNCTION__, __FILE__, __LINE__ }, \
|
|
timemory::join::join(DELIM, __VA_ARGS__) })
|