120 lines
4.0 KiB
C++
120 lines
4.0 KiB
C++
/*
|
|
Copyright (c) 2018 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.
|
|
*/
|
|
|
|
#ifndef INC_ROCTRACER_HSA_RT_UTILS_HPP_
|
|
#define INC_ROCTRACER_HSA_RT_UTILS_HPP_
|
|
|
|
#include <hsa/hsa.h>
|
|
|
|
#include <cstdint>
|
|
#include <cstddef>
|
|
#include <iostream>
|
|
#include <mutex>
|
|
|
|
#define HSART_CALL(call) \
|
|
do { \
|
|
hsa_status_t status = call; \
|
|
if (status != HSA_STATUS_SUCCESS) { \
|
|
std::cerr << "1HSA-rt call '" << #call << "' error(" << std::hex << status << ")" \
|
|
<< std::dec << std::endl << std::flush; \
|
|
abort(); \
|
|
} \
|
|
} while (0)
|
|
|
|
namespace hsa_rt_utils {
|
|
|
|
// HSA runtime timer implementation
|
|
class Timer {
|
|
public:
|
|
typedef uint64_t timestamp_t;
|
|
typedef long double freq_t;
|
|
typedef decltype(hsa_system_get_info)* hsa_system_get_info_fn_t;
|
|
|
|
// Initialization
|
|
inline void init(const hsa_system_get_info_fn_t& get_info_fn) {
|
|
hsa_system_get_info_fn = get_info_fn;
|
|
timestamp_t timestamp_hz = 0;
|
|
if (get_info_fn == NULL) {
|
|
timestamp_rate_ = 0;
|
|
} else {
|
|
HSART_CALL(get_info_fn(HSA_SYSTEM_INFO_TIMESTAMP_FREQUENCY, ×tamp_hz));
|
|
timestamp_rate_ = (freq_t)1000000000 / (freq_t)timestamp_hz;
|
|
}
|
|
}
|
|
|
|
// Returns HSA runtime timestamp rate
|
|
freq_t timestamp_rate() const { return timestamp_rate_; }
|
|
|
|
// Convert a given timestamp to ns
|
|
timestamp_t timestamp_to_ns(const timestamp_t ×tamp) const {
|
|
return timestamp_t((freq_t)timestamp * timestamp_rate_);
|
|
}
|
|
|
|
// Return timestamp in 'ns'
|
|
timestamp_t timestamp_ns() const {
|
|
timestamp_t timestamp;
|
|
HSART_CALL(hsa_system_get_info(HSA_SYSTEM_INFO_TIMESTAMP, ×tamp));
|
|
return timestamp_to_ns(timestamp);
|
|
}
|
|
timestamp_t timestamp_fn_ns() const {
|
|
timestamp_t timestamp;
|
|
HSART_CALL(hsa_system_get_info_fn(HSA_SYSTEM_INFO_TIMESTAMP, ×tamp));
|
|
return timestamp_to_ns(timestamp);
|
|
}
|
|
|
|
Timer(hsa_system_get_info_fn_t f = NULL) {
|
|
if (f != NULL) init(f);
|
|
else init(hsa_system_get_info);
|
|
}
|
|
|
|
private:
|
|
// hsa_system_get_info function
|
|
hsa_system_get_info_fn_t hsa_system_get_info_fn;
|
|
// Timestamp rate
|
|
freq_t timestamp_rate_;
|
|
};
|
|
|
|
class TimerFactory {
|
|
public:
|
|
typedef std::mutex mutex_t;
|
|
|
|
static Timer* Create(Timer::hsa_system_get_info_fn_t f = NULL) {
|
|
if (instance_ == NULL) {
|
|
std::lock_guard<mutex_t> lck(mutex_);
|
|
if (instance_ == NULL) instance_ = new Timer(f);
|
|
}
|
|
return instance_;
|
|
}
|
|
|
|
static Timer& Instance() {
|
|
return *instance_;
|
|
}
|
|
|
|
private:
|
|
static Timer* instance_;
|
|
static mutex_t mutex_;
|
|
};
|
|
|
|
} // namespace hsa_rt_utils
|
|
|
|
#endif // INC_ROCTRACER_HSA_RT_UTILS_HPP_
|