9e62e066fe
V1 library will be supported as librocprofiler64.so and V2 will be supported as librocprofiler64v2.so and headers will be rocprofiler.h for V1 and v2/rocprofiler.h for v2 Change-Id: Ibe5bdbf2f79f0175342c648e917ae77918186604
77 rivejä
2.6 KiB
C++
77 rivejä
2.6 KiB
C++
/* Copyright (c) 2022 Advanced Micro Devices, Inc.
|
|
|
|
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. */
|
|
|
|
#ifndef SRC_CORE_SESSION_ATT_ATT_H_
|
|
#define SRC_CORE_SESSION_ATT_ATT_H_
|
|
|
|
#include <hsa/hsa_ven_amd_aqlprofile.h>
|
|
|
|
#include <map>
|
|
#include <mutex>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "rocprofiler.h"
|
|
|
|
namespace rocmtools {
|
|
|
|
typedef struct {
|
|
uint64_t kernel_descriptor;
|
|
hsa_signal_t signal;
|
|
rocprofiler_session_id_t session_id;
|
|
rocprofiler_buffer_id_t buffer_id;
|
|
hsa_ven_amd_aqlprofile_profile_t* profile;
|
|
rocprofiler_kernel_properties_t kernel_properties;
|
|
uint32_t thread_id;
|
|
uint64_t queue_index;
|
|
} att_pending_signal_t;
|
|
|
|
namespace att {
|
|
|
|
class AttTracer {
|
|
public:
|
|
AttTracer(rocprofiler_buffer_id_t buffer_id, rocprofiler_filter_id_t filter_id,
|
|
rocprofiler_session_id_t session_id);
|
|
~AttTracer();
|
|
|
|
void AddPendingSignals(uint32_t writer_id, uint64_t kernel_object,
|
|
const hsa_signal_t& completion_signal, rocprofiler_session_id_t session_id,
|
|
rocprofiler_buffer_id_t buffer_id, hsa_ven_amd_aqlprofile_profile_t* profile,
|
|
rocprofiler_kernel_properties_t kernel_properties, uint32_t thread_id,
|
|
uint64_t queue_index);
|
|
|
|
const std::vector<att_pending_signal_t>& GetPendingSignals(uint32_t writer_id);
|
|
|
|
private:
|
|
rocprofiler_buffer_id_t buffer_id_;
|
|
rocprofiler_filter_id_t filter_id_;
|
|
rocprofiler_session_id_t session_id_;
|
|
|
|
std::mutex sessions_pending_signals_lock_;
|
|
std::map<uint32_t, std::vector<att_pending_signal_t>> sessions_pending_signals_;
|
|
};
|
|
|
|
} // namespace att
|
|
|
|
} // namespace rocmtools
|
|
|
|
|
|
#endif // SRC_CORE_SESSION_ATT_ATT_H_
|