e7d3125459
* restructured libomnitrace - this is necessary to incorporate some of the binary analysis capabilities into omnitrace exe - created libomnitrace-core (static) - created libomnitrace-binary (static) - created libomnitrace (static) - omnitrace-avail links to libomnitrace.a - omnitrace-critical-trace links to libomnitrace.a - tweaked the testing - reduced verbosity on some of MPI tests - excluded trace-time-window from tests on Ubuntu 18.04 - reduced causal e2e iterations - minor tweak to tasking - manually create `PTL::UserTaskQueue` instance instead of relying on `PTL::ThreadPool` to create it * Update formatting workflow - source formatting uses ubuntu-22.04 - check-includes doesn't generate false positive for 'include "timemory.hpp"' * omnitrace-causal --generate-configs - fix config generation in omnitrace causal - add test for omnitrace-causal + generating configs * Fix omnitrace-object-library build - accidentally included rocm sources in non-rocm builds * Fix rocm compilation w/o rocprofiler * update timemory submodule with mpi_get warning messages * sampling offload file updates - more verbose messages - disable offload before stopping * testing updates - increase causal e2e iterations to 12 - increase lock_environment verbose to 2 (for sampling offload messages) - fix return for omnitrace_add_validation_test
173 rivejä
4.4 KiB
C++
173 rivejä
4.4 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 "state.hpp"
|
|
#include "config.hpp"
|
|
#include "debug.hpp"
|
|
#include "utility.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace omnitrace
|
|
{
|
|
namespace
|
|
{
|
|
auto&
|
|
get_state_value()
|
|
{
|
|
static State _v{ State::PreInit };
|
|
return _v;
|
|
}
|
|
|
|
ThreadState&
|
|
get_thread_state_value()
|
|
{
|
|
static thread_local ThreadState _v{ ThreadState::Enabled };
|
|
return _v;
|
|
}
|
|
|
|
auto&
|
|
get_thread_state_history(int64_t _idx = utility::get_thread_index())
|
|
{
|
|
static auto _v = utility::get_filled_array<OMNITRACE_MAX_THREADS>(
|
|
[]() { return utility::get_reserved_vector<ThreadState>(32); });
|
|
|
|
if(_idx >= OMNITRACE_MAX_THREADS)
|
|
{
|
|
static thread_local auto _tl_v = utility::get_reserved_vector<ThreadState>(32);
|
|
return _tl_v;
|
|
}
|
|
|
|
return _v.at(_idx);
|
|
}
|
|
} // namespace
|
|
|
|
State
|
|
get_state()
|
|
{
|
|
return get_state_value();
|
|
}
|
|
|
|
ThreadState
|
|
get_thread_state()
|
|
{
|
|
return get_thread_state_value();
|
|
}
|
|
|
|
State
|
|
set_state(State _n)
|
|
{
|
|
OMNITRACE_CONDITIONAL_PRINT_F(get_debug_init(), "Setting state :: %s -> %s\n",
|
|
std::to_string(get_state()).c_str(),
|
|
std::to_string(_n).c_str());
|
|
// state should always be increased, not decreased
|
|
OMNITRACE_CI_BASIC_THROW(
|
|
_n < get_state(), "State is being assigned to a lesser value :: %s -> %s",
|
|
std::to_string(get_state()).c_str(), std::to_string(_n).c_str());
|
|
std::swap(get_state_value(), _n);
|
|
return _n;
|
|
}
|
|
|
|
ThreadState
|
|
set_thread_state(ThreadState _n)
|
|
{
|
|
std::swap(get_thread_state_value(), _n);
|
|
return _n;
|
|
}
|
|
|
|
ThreadState
|
|
push_thread_state(ThreadState _v)
|
|
{
|
|
if(get_thread_state() >= ThreadState::Completed) return get_thread_state();
|
|
|
|
return get_thread_state_history().emplace_back(set_thread_state(_v));
|
|
}
|
|
|
|
ThreadState
|
|
pop_thread_state()
|
|
{
|
|
if(get_thread_state() >= ThreadState::Completed) return get_thread_state();
|
|
|
|
auto& _hist = get_thread_state_history();
|
|
if(!_hist.empty())
|
|
{
|
|
set_thread_state(_hist.back());
|
|
_hist.pop_back();
|
|
}
|
|
return get_thread_state();
|
|
}
|
|
} // namespace omnitrace
|
|
|
|
namespace std
|
|
{
|
|
std::string
|
|
to_string(omnitrace::State _v)
|
|
{
|
|
switch(_v)
|
|
{
|
|
case omnitrace::State::PreInit: return "PreInit";
|
|
case omnitrace::State::Init: return "Init";
|
|
case omnitrace::State::Active: return "Active";
|
|
case omnitrace::State::Disabled: return "Disabled";
|
|
case omnitrace::State::Finalized: return "Finalized";
|
|
}
|
|
return {};
|
|
}
|
|
|
|
std::string
|
|
to_string(omnitrace::ThreadState _v)
|
|
{
|
|
switch(_v)
|
|
{
|
|
case omnitrace::ThreadState::Enabled: return "Enabled";
|
|
case omnitrace::ThreadState::Internal: return "Internal";
|
|
case omnitrace::ThreadState::Completed: return "Completed";
|
|
case omnitrace::ThreadState::Disabled: return "Disabled";
|
|
}
|
|
return {};
|
|
}
|
|
|
|
std::string
|
|
to_string(omnitrace::Mode _v)
|
|
{
|
|
switch(_v)
|
|
{
|
|
case omnitrace::Mode::Trace: return "Trace";
|
|
case omnitrace::Mode::Sampling: return "Sampling";
|
|
case omnitrace::Mode::Causal: return "Causal";
|
|
case omnitrace::Mode::Coverage: return "Coverage";
|
|
}
|
|
return {};
|
|
}
|
|
|
|
std::string
|
|
to_string(omnitrace::CausalMode _v)
|
|
{
|
|
switch(_v)
|
|
{
|
|
case omnitrace::CausalMode::Line: return "Line";
|
|
case omnitrace::CausalMode::Function: return "Function";
|
|
}
|
|
return {};
|
|
}
|
|
} // namespace std
|