Files
rocm-systems/source/lib/omnitrace/library/ptl.cpp
T

210 خطوط
5.7 KiB
C++

2022-01-26 23:25:00 -06:00
// 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
2022-01-26 23:25:00 -06:00
// 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:
//
2022-01-26 23:25:00 -06:00
// 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
2022-01-26 23:25:00 -06:00
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2022-01-26 23:25:00 -06:00
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
#include "library/ptl.hpp"
#include "library/config.hpp"
#include "library/debug.hpp"
#include "library/defines.hpp"
2022-05-08 04:40:10 -05:00
#include "library/runtime.hpp"
2022-02-08 17:42:17 -06:00
#include "library/sampling.hpp"
2022-08-31 01:24:31 -05:00
#include "library/thread_data.hpp"
#include "library/thread_info.hpp"
#include <PTL/ThreadPool.hh>
2022-05-08 04:40:10 -05:00
2022-08-08 08:37:37 -05:00
#include <timemory/backends/threading.hpp>
#include <timemory/utility/declaration.hpp>
namespace omnitrace
{
namespace tasking
{
namespace
{
auto _thread_pool_cfg = []() {
2022-08-31 01:24:31 -05:00
int64_t _nthreads = 0;
if(config::settings_are_configured())
{
_nthreads = config::get_thread_pool_size();
}
else
{
const int64_t _max_threads = std::thread::hardware_concurrency() / 2;
const int64_t _min_threads = 1;
_nthreads = get_env<int64_t>("OMNITRACE_THREAD_POOL_SIZE", -1, false);
if(_nthreads == -1)
{
_nthreads = 4;
if(_nthreads > _max_threads) _nthreads = _max_threads;
if(_nthreads < _min_threads) _nthreads = _min_threads;
tim::set_env("OMNITRACE_THREAD_POOL_SIZE", _nthreads, 0);
}
}
PTL::ThreadPool::Config _v{};
_v.init = true;
_v.use_affinity = false;
_v.use_tbb = false;
2022-03-22 15:51:57 -05:00
_v.verbose = -1;
2022-02-08 17:42:17 -06:00
_v.initializer = []() {
2022-08-31 01:24:31 -05:00
thread_info::init(true);
2022-02-08 17:42:17 -06:00
threading::set_thread_name(
2022-05-08 04:40:10 -05:00
JOIN('.', "ptl", PTL::Threading::GetThreadId()).c_str());
2022-08-31 01:24:31 -05:00
sampling::block_signals();
2022-02-08 17:42:17 -06:00
};
_v.finalizer = []() {};
_v.priority = 5;
2022-08-31 01:24:31 -05:00
_v.pool_size = _nthreads;
return _v;
};
auto&
get_thread_pool_state()
{
static auto _v = State::PreInit;
return _v;
}
PTL::ThreadPool&
get_thread_pool()
{
static auto _v =
(get_thread_pool_state() = State::Active, PTL::ThreadPool{ _thread_pool_cfg() });
return _v;
}
2022-08-31 01:24:31 -05:00
} // namespace
2022-04-26 22:08:51 -05:00
namespace roctracer
{
namespace
{
auto&
get_thread_pool_state()
{
static auto _v = State::PreInit;
return _v;
}
} // namespace
} // namespace roctracer
namespace critical_trace
{
namespace
{
auto&
get_thread_pool_state()
{
static auto _v = State::PreInit;
return _v;
}
} // namespace
} // namespace critical_trace
void
setup()
{}
void
join()
{
if(roctracer::get_thread_pool_state() == State::Active)
{
OMNITRACE_DEBUG_F("waiting for all roctracer tasks to complete...\n");
2022-08-31 01:24:31 -05:00
for(size_t i = 0; i < max_supported_threads; ++i)
roctracer::get_task_group(i).join();
2022-04-26 22:08:51 -05:00
}
if(critical_trace::get_thread_pool_state() == State::Active)
{
OMNITRACE_DEBUG_F("waiting for all critical tasks to complete...\n");
2022-08-31 01:24:31 -05:00
for(size_t i = 0; i < max_supported_threads; ++i)
critical_trace::get_task_group(i).join();
2022-04-26 22:08:51 -05:00
}
}
void
shutdown()
{
if(roctracer::get_thread_pool_state() == State::Active)
{
2022-08-31 01:24:31 -05:00
OMNITRACE_DEBUG_F("Waiting on completion of roctracer tasks...\n");
for(size_t i = 0; i < max_supported_threads; ++i)
{
roctracer::get_task_group(i).join();
roctracer::get_task_group(i).clear();
roctracer::get_task_group(i).set_pool(nullptr);
}
2022-04-26 22:08:51 -05:00
roctracer::get_thread_pool_state() = State::Finalized;
}
if(critical_trace::get_thread_pool_state() == State::Active)
{
2022-08-31 01:24:31 -05:00
OMNITRACE_DEBUG_F("Waiting on completion of critical trace tasks...\n");
for(size_t i = 0; i < max_supported_threads; ++i)
{
critical_trace::get_task_group(i).join();
critical_trace::get_task_group(i).clear();
critical_trace::get_task_group(i).set_pool(nullptr);
}
2022-04-26 22:08:51 -05:00
critical_trace::get_thread_pool_state() = State::Finalized;
}
2022-08-31 01:24:31 -05:00
if(get_thread_pool_state() == State::Active)
{
OMNITRACE_DEBUG_F("Destroying the omnitrace thread pool...\n");
get_thread_pool().destroy_threadpool();
get_thread_pool_state() = State::Finalized;
}
}
2022-08-31 01:24:31 -05:00
size_t
initialize_threadpool(size_t _v)
{
2022-08-31 01:24:31 -05:00
return get_thread_pool().initialize_threadpool(_v);
}
PTL::TaskGroup<void>&
2022-08-31 01:24:31 -05:00
roctracer::get_task_group(int64_t _tid)
{
struct local
{};
using thread_data_t = thread_data<PTL::TaskGroup<void>, local>;
static auto& _v =
thread_data_t::instances(construct_on_init{}, &tasking::get_thread_pool());
return *_v.at(_tid);
}
PTL::TaskGroup<void>&
2022-08-31 01:24:31 -05:00
critical_trace::get_task_group(int64_t _tid)
{
struct local
{};
using thread_data_t = thread_data<PTL::TaskGroup<void>, local>;
static auto& _v =
thread_data_t::instances(construct_on_init{}, &tasking::get_thread_pool());
return *_v.at(_tid);
}
} // namespace tasking
} // namespace omnitrace