// MIT License // // Copyright (c) 2023 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 "agent_info.hpp" #include "generator.hpp" #include "metadata.hpp" #include "output_config.hpp" #include "stream_info.hpp" #include #include namespace rocprofiler { namespace tool { void write_rocpd( const output_config& cfg, const metadata& tool_metadata, const std::vector& agent_data, const generator& hip_api_gen, const generator& hsa_api_gen, const generator& kernel_dispatch_gen, const generator& memory_copy_gen, const generator& marker_api_gen, const generator& memory_alloc_gen, const generator& scratch_memory_gen, const generator& rccl_api_gen, const generator& rocdecode_api_gen, const generator& counter_collection_gen); // used in schema generation struct argument_info { uint32_t arg_number = 0; std::string arg_type = {}; std::string arg_name = {}; std::string arg_value = {}; }; struct track_data { uint64_t node_id = 0; pid_t pid = 0; pid_t tid = 0; uint64_t name_id = 0; size_t hash() const; }; bool operator==(const track_data& lhs, const track_data& rhs); } // namespace tool } // namespace rocprofiler