Adding installer for Ubuntu 24.04 (#14)

* Add installers for ubuntu 24.04

* Formatting change to the ubuntu-focal and ubuntu-jammy workflows

* Initial Ubuntu 24.04 workflow - just build test

[ROCm/rocprofiler-systems commit: 398ea62629]
This commit is contained in:
David Galiffi
2024-12-11 19:36:04 -05:00
committed by GitHub
parent abcb5dc0e3
commit b73bd13a86
9 changed files with 163 additions and 10 deletions
@@ -63,11 +63,11 @@ auto&
get_sampling_on_child_threads_history(int64_t _idx = utility::get_thread_index())
{
static auto _v = utility::get_filled_array<ROCPROFSYS_MAX_THREADS>(
[]() { return utility::get_reserved_vector<bool>(32); });
[]() { return utility::get_reserved_vector<bool>(64); });
if(_idx >= ROCPROFSYS_MAX_THREADS)
{
static thread_local auto _tl_v = utility::get_reserved_vector<bool>(32);
static thread_local auto _tl_v = utility::get_reserved_vector<bool>(128);
return _tl_v;
}