b208047741
* Parallel overhead example with locks
* Support tracing mutex locking + more
- support wrapping pthread_mutex_lock
- support wrapping pthread_mutex_unlock
- support wrapping pthread_mutex_trylock
- get_perfetto_combined_traces setting
- OMNITRACE_TRACE_THREAD_LOCKS option
- ThreadState
- critical trace includes queue id
- enabled/disabled settings in timemory
- fix OMNITRACE_TIMEMORY_COMPONENTS
- fix reading config
- fix setting categories
- applied ThreadState::Internal in various places
- utility::get_filled_array
- utility::get_reserved_vector
- utility::get_thread_index
- fork_gotcha messages about forks
- split out some pthread_gotcha functionality into pthread_create_gotcha
- handle queue id in roctracer callbacks
* Update timemory and PTL submodules
* Misc CMake updates
- Includes fix to omnitrace-static-lib{gcc,stdcxx}
* Misc cleanup to pthread_mutex_gotcha and backtrace
* Fix to duplicate field in module_function json
* Improvement to debug messages
* omnitrace-dl and common improvements
- tweak to delimit
- common::ignore message
- common::join quoting of strings
- omnitrace_set_env ignores if inited and active
- omnitrace_set_mpi ignores if inited and active
* nsync for transpose example
* Fix to thread_deleter<void> functor invoke
* Fix thread state and HIP stream enums
124 γραμμές
3.9 KiB
C++
124 γραμμές
3.9 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 <cstring>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace omnitrace
|
|
{
|
|
inline namespace common
|
|
{
|
|
namespace
|
|
{
|
|
template <typename ContainerT, typename... Args>
|
|
inline auto
|
|
emplace_impl(ContainerT& _c, int, Args&&... _args)
|
|
-> decltype(_c.emplace_back(std::forward<Args>(_args)...))
|
|
{
|
|
return _c.emplace_back(std::forward<Args>(_args)...);
|
|
}
|
|
|
|
template <typename ContainerT, typename... Args>
|
|
inline auto
|
|
emplace_impl(ContainerT& _c, long, Args&&... _args)
|
|
-> decltype(_c.emplace(std::forward<Args>(_args)...))
|
|
{
|
|
return _c.emplace(std::forward<Args>(_args)...);
|
|
}
|
|
|
|
template <typename ContainerT, typename... Args>
|
|
inline auto
|
|
emplace(ContainerT& _c, Args&&... _args)
|
|
{
|
|
return emplace_impl(_c, 0, std::forward<Args>(_args)...);
|
|
}
|
|
|
|
template <typename ContainerT, typename ArgT>
|
|
inline auto
|
|
reserve_impl(ContainerT& _c, int, ArgT _arg) -> decltype(_c.reserve(_arg), bool())
|
|
{
|
|
_c.reserve(_arg);
|
|
return true;
|
|
}
|
|
|
|
template <typename ContainerT, typename ArgT>
|
|
inline auto
|
|
reserve_impl(ContainerT&, long, ArgT)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
template <typename ContainerT, typename ArgT>
|
|
inline auto
|
|
reserve(ContainerT& _c, ArgT _arg)
|
|
{
|
|
return reserve_impl(_c, 0, _arg);
|
|
}
|
|
|
|
template <typename ContainerT = std::vector<std::string>>
|
|
inline ContainerT
|
|
delimit(const std::string& line, const char* delimiters = "\"',;: ");
|
|
|
|
template <typename ContainerT>
|
|
inline ContainerT
|
|
delimit(const std::string& line, const char* delimiters)
|
|
{
|
|
ContainerT _result{};
|
|
size_t _beginp = 0; // position that is the beginning of the new string
|
|
size_t _delimp = 0; // position of the delimiter in the string
|
|
if(reserve(_result, 0))
|
|
{
|
|
size_t _nmax = 0;
|
|
for(char itr : line)
|
|
{
|
|
for(size_t j = 0; j < strlen(delimiters); ++j)
|
|
{
|
|
if(itr == delimiters[j]) ++_nmax;
|
|
}
|
|
}
|
|
reserve(_result, _nmax);
|
|
}
|
|
while(_beginp < line.length() && _delimp < line.length())
|
|
{
|
|
// find the first character (starting at _delimp) that is not a delimiter
|
|
_beginp = line.find_first_not_of(delimiters, _delimp);
|
|
// if no a character after or at _end that is not a delimiter is not found
|
|
// then we are done
|
|
if(_beginp == std::string::npos) break;
|
|
// starting at the position of the new string, find the next delimiter
|
|
_delimp = line.find_first_of(delimiters, _beginp);
|
|
std::string _tmp{};
|
|
// starting at the position of the new string, get the characters
|
|
// between this position and the next delimiter
|
|
_tmp = line.substr(_beginp, _delimp - _beginp);
|
|
// don't add empty strings
|
|
if(!_tmp.empty()) emplace(_result, _tmp);
|
|
}
|
|
return _result;
|
|
}
|
|
} // namespace
|
|
} // namespace common
|
|
} // namespace omnitrace
|