Files
rocm-systems/projects/rocprofiler-sdk/source/lib/tests/common/c_array.cpp
T
Kandula, Venkateshwar reddy 0ff0ffffa2 [SDK] Expose counter dims in rocprofiler_counter_info_v1_t and only show counters being profiled in metadata. (#325)
* expose dimensional info in rocprofiler_counter_info_v1_t.

* add counter_id in dim info.

* address review comments

* format.

* address comments.

* use array of pointers for dimensions_instaces.

* format and comments.

* address comments.

* new line.

* Update counter_defs.yaml

* Update counter_defs.yaml

* Update counter_defs.yaml

* counter_defs.

* format counter defs.

* format counter defs.

* format counter defs.

* show only counters being profiled in metadata.

* Format.

* use config for counters and fix warnings.

* add version for rocprofiler_counter_dimension_info_v1_t struct.

* rename rocprofiler_counter_record_dimension_instance_v1_info_t.

* account device id from pmc for counters metadata.

* move dim structs to counters.h.

* address comments to compare value.

* fix tests.

* Address comments. use pointer of arrays for ABI.

* rebase.

* fix build error.

* use separate metadata::init() for rocprofv3.

* also print not found counters.

* precompute all the perf counters needed to be in metadata.

* Misc.

* format

* Format.

* rocprofiler::sdk::container::c_array

* Address comments.

* source/lib/output/metadata.cpp

* lint.

* add unit test for c_array.

* add unit test and serialization support for c_array container.

* Misc.

* Clean files.

* Format.

* clang-tidy.

* add more checks to c_array.

* misc. typo

* Addr comments.

---------

Co-authored-by: Venkateshwar Reddy Kandula <vkandula@amd.com>
Co-authored-by: Jonathan R. Madsen <Jonathan.Madsen@amd.com>

[ROCm/rocprofiler-sdk commit: bf0fad1d54]
2025-07-22 14:24:25 -07:00

139 строки
3.8 KiB
C++

// MIT License
//
// Copyright (c) 2023-2025 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 <rocprofiler-sdk/cxx/container/c_array.hpp>
#include <rocprofiler-sdk/cxx/serialization.hpp>
#include <gtest/gtest.h>
#include <sstream>
#include <vector>
namespace
{
template <typename Tp>
void
compare_serialization_of_vector_and_c_array(std::vector<Tp>& vec)
{
std::stringstream ss_vec;
{
cereal::BinaryOutputArchive oarchive(ss_vec);
save(oarchive, vec);
}
std::stringstream ss_arr;
{
cereal::BinaryOutputArchive oarchive(ss_arr);
auto arr = rocprofiler::sdk::container::make_c_array(vec.data(), vec.size());
save(oarchive, arr);
}
ASSERT_EQ(ss_vec.str(), ss_arr.str());
}
template <typename Tp>
void
compare_serialization_of_vector_and_c_array_of_pointers(std::vector<Tp>& vec)
{
std::vector<Tp*> ptrs;
ptrs.reserve(vec.size());
for(auto& val : vec)
ptrs.emplace_back(&val);
std::stringstream ss_vec;
{
cereal::BinaryOutputArchive oarchive(ss_vec);
save(oarchive, vec);
}
std::stringstream ss_arr;
{
cereal::BinaryOutputArchive oarchive(ss_arr);
auto arr = rocprofiler::sdk::container::make_c_array(ptrs.data(), ptrs.size());
save(oarchive, arr);
}
ASSERT_EQ(ss_vec.str(), ss_arr.str());
}
} // namespace
TEST(common, c_array)
{
std::vector<int> vec{1, 2, 3, 4, 5};
auto arr = rocprofiler::sdk::container::make_c_array(vec.data(), vec.size());
// Validate size
ASSERT_EQ(arr.size(), vec.size());
// Test operator[] and at()
for(size_t i = 0; i < arr.size(); ++i)
{
EXPECT_EQ(arr[i], vec[i]);
EXPECT_EQ(arr.at(i), vec.at(i));
}
// Bounds checking on at()
EXPECT_THROW(arr.at(arr.size()), std::out_of_range);
// Test slice
auto sub_arr = arr.slice(1, 4); // should contain 2, 3, 4
ASSERT_EQ(sub_arr.size(), 3);
EXPECT_EQ(sub_arr[0], 2);
EXPECT_EQ(sub_arr[2], 4);
// Test pop_front()
arr.pop_front(); // drops 1
ASSERT_EQ(arr.size(), 4);
EXPECT_EQ(arr[0], 2);
// Test pop_back()
arr.pop_back(); // drops 5
ASSERT_EQ(arr.size(), 3);
EXPECT_EQ(arr[2], 4);
// Test iterators
int expected[] = {2, 3, 4};
int idx = 0;
for(auto v : arr)
{
EXPECT_EQ(v, expected[idx++]);
}
// Const iterator
const auto& const_arr = arr;
idx = 0;
for(auto v : const_arr)
{
EXPECT_EQ(v, expected[idx++]);
}
// Test implicit cast to pointer
int* ptr = arr;
EXPECT_EQ(ptr[0], 2);
EXPECT_EQ(ptr[2], 4);
// Test Serialization.
compare_serialization_of_vector_and_c_array(vec);
compare_serialization_of_vector_and_c_array_of_pointers(vec);
}