Files
taosang2 6af4dd61e6 SWDEV-451393 - Add kernel execution perf test
Add kernel excution perf test per blockSize and block number.
Implement a solution to roughly evaluate gpu variable
frequency based on clock64() and wall_clock64().

Change-Id: Ic87761a862d4a894fdcaab3431d63fe2592bb682


[ROCm/hip-tests commit: 0a22d14775]
2024-10-23 02:25:07 -04:00

335 строки
11 KiB
C++

/*
Copyright (c) 2022 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 <hip_test_common.hh>
template <class T, size_t N, hipArray_Format Format> struct type_and_size_and_format {
using type = T;
static constexpr size_t size = N;
static constexpr hipArray_Format format = Format;
};
// Create a map of type to scalar type, vector size and scalar type format enum.
// This is useful for creating simpler function that depend on the vector size.
template <typename T> struct vector_info;
template <>
struct vector_info<int> : type_and_size_and_format<int, 1, HIP_AD_FORMAT_SIGNED_INT32> {};
template <> struct vector_info<float> : type_and_size_and_format<float, 1, HIP_AD_FORMAT_FLOAT> {};
template <>
struct vector_info<short> : type_and_size_and_format<short, 1, HIP_AD_FORMAT_SIGNED_INT16> {};
template <>
struct vector_info<char> : type_and_size_and_format<char, 1, HIP_AD_FORMAT_SIGNED_INT8> {};
template <>
struct vector_info<unsigned int>
: type_and_size_and_format<unsigned int, 1, HIP_AD_FORMAT_UNSIGNED_INT32> {};
template <>
struct vector_info<unsigned short>
: type_and_size_and_format<unsigned short, 1, HIP_AD_FORMAT_UNSIGNED_INT16> {};
template <>
struct vector_info<unsigned char>
: type_and_size_and_format<unsigned char, 1, HIP_AD_FORMAT_UNSIGNED_INT8> {};
template <>
struct vector_info<int2> : type_and_size_and_format<int, 2, HIP_AD_FORMAT_SIGNED_INT32> {};
template <> struct vector_info<float2> : type_and_size_and_format<float, 2, HIP_AD_FORMAT_FLOAT> {};
template <>
struct vector_info<short2> : type_and_size_and_format<short, 2, HIP_AD_FORMAT_SIGNED_INT16> {};
template <>
struct vector_info<char2> : type_and_size_and_format<char, 2, HIP_AD_FORMAT_SIGNED_INT8> {};
template <>
struct vector_info<uint2>
: type_and_size_and_format<unsigned int, 2, HIP_AD_FORMAT_UNSIGNED_INT32> {};
template <>
struct vector_info<ushort2>
: type_and_size_and_format<unsigned short, 2, HIP_AD_FORMAT_UNSIGNED_INT16> {};
template <>
struct vector_info<uchar2>
: type_and_size_and_format<unsigned char, 2, HIP_AD_FORMAT_UNSIGNED_INT8> {};
template <>
struct vector_info<int4> : type_and_size_and_format<int, 4, HIP_AD_FORMAT_SIGNED_INT32> {};
template <> struct vector_info<float4> : type_and_size_and_format<float, 4, HIP_AD_FORMAT_FLOAT> {};
template <>
struct vector_info<short4> : type_and_size_and_format<short, 4, HIP_AD_FORMAT_SIGNED_INT16> {};
template <>
struct vector_info<char4> : type_and_size_and_format<char, 4, HIP_AD_FORMAT_SIGNED_INT8> {};
template <>
struct vector_info<uint4>
: type_and_size_and_format<unsigned int, 4, HIP_AD_FORMAT_UNSIGNED_INT32> {};
template <>
struct vector_info<ushort4>
: type_and_size_and_format<unsigned short, 4, HIP_AD_FORMAT_UNSIGNED_INT16> {};
template <>
struct vector_info<uchar4>
: type_and_size_and_format<unsigned char, 4, HIP_AD_FORMAT_UNSIGNED_INT8> {};
template <
typename T,
typename std::enable_if<std::is_scalar<T>::value == false>::type* = nullptr>
static inline __host__ __device__ constexpr int rank() {
return sizeof(T) / sizeof(decltype(T::x));
}
template<
typename T,
typename std::enable_if<rank<T>() == 1>::type* = nullptr>
static inline bool isEqual(const T &val0, const T &val1) {
return val0.x == val1.x;
}
template<
typename T,
typename std::enable_if<rank<T>() == 2>::type* = nullptr>
static inline bool isEqual(const T &val0, const T &val1) {
return val0.x == val1.x &&
val0.y == val1.y;
}
template<
typename T,
typename std::enable_if<rank<T>() == 4>::type* = nullptr>
static inline bool isEqual(const T &val0, const T &val1) {
return val0.x == val1.x &&
val0.y == val1.y &&
val0.z == val1.z &&
val0.w == val1.w;
}
template<
typename T,
typename std::enable_if<std::is_scalar<T>::value>::type* = nullptr>
static inline bool isEqual(const T &val0, const T &val1) {
return val0 == val1;
}
template<
typename T,
typename std::enable_if<rank<T>() == 1>::type* = nullptr>
const std::string getString(const T& t)
{
std::ostringstream os;
if constexpr (std::is_same<decltype(T::x), char>::value ||
std::is_same<decltype(T::x), unsigned char>::value) {
os << "(" << static_cast<int>(t.x) << ")";
} else {
os << "(" << t.x << ")";
}
return os.str();
}
template<
typename T,
typename std::enable_if<rank<T>() == 2>::type* = nullptr>
const std::string getString(const T& t)
{
std::ostringstream os;
if constexpr (std::is_same<decltype(T::x), char>::value ||
std::is_same<decltype(T::x), unsigned char>::value) {
os << "(" << static_cast<int>(t.x) << ", " << static_cast<int>(t.y) << ")";
} else {
os << "(" << t.x << ", " << t.y << ")";
}
return os.str();
}
template<
typename T,
typename std::enable_if<rank<T>() == 3>::type* = nullptr>
const std::string getString(const T& t)
{
std::ostringstream os;
if constexpr (std::is_same<decltype(T::x), char>::value ||
std::is_same<decltype(T::x), unsigned char>::value) {
os << "(" << static_cast<int>(t.x) << ", " << static_cast<int>(t.y) << ", " <<
static_cast<int>(t.z) << ")";
} else {
os << "(" << t.x << ", " << t.y << ", " << t.z << ")";
}
return os.str();
}
template<
typename T,
typename std::enable_if<rank<T>() == 4>::type* = nullptr>
const std::string getString(const T& t)
{
std::ostringstream os;
if constexpr (std::is_same<decltype(T::x), char>::value ||
std::is_same<decltype(T::x), unsigned char>::value) {
os << "(" << static_cast<int>(t.x) << ", " << static_cast<int>(t.y) << ", " <<
static_cast<int>(t.z) << ", " << static_cast<int>(t.w) << ")";
} else {
os << "(" << t.x << ", " << t.y << ", " << t.z << ", " << t.w << ")";
}
return os.str();
}
template<
typename T,
typename std::enable_if<std::is_scalar<T>::value>::type* = nullptr>
std::string getString(const T& t)
{
std::ostringstream os;
if constexpr (std::is_same<T, char>::value ||
std::is_same<T, unsigned char>::value) {
os << static_cast<int>(t);
} else {
os << t;
}
return os.str();
}
template<typename T>
static inline T getRandom() {
double r = 0;
if (std::is_signed<T>::value) {
r = (std::rand() - RAND_MAX / 2.0) / (RAND_MAX / 2.0 + 1.);
} else {
r = std::rand() / (RAND_MAX + 1.);
}
if constexpr (std::is_floating_point<T>::value) {
// Restrict any float within (-1000, 1000)
// to prevent too big float value that would make caculation sick
return static_cast<T>(r * 1000.);
} else {
return static_cast<T>(std::numeric_limits<T>::max() * r);
}
}
template<
typename T,
typename std::enable_if<rank<T>() == 1>::type* = nullptr>
static inline void initVal(T &val) {
val.x = getRandom<decltype(T::x)>();
}
template<
typename T,
typename std::enable_if<rank<T>() == 2>::type* = nullptr>
static inline void initVal(T &val) {
val.x = getRandom<decltype(T::x)>();
val.y = getRandom<decltype(T::x)>();
}
template<
typename T,
typename std::enable_if<rank<T>() == 4>::type* = nullptr>
static inline void initVal(T &val) {
val.x = getRandom<decltype(T::x)>();
val.y = getRandom<decltype(T::x)>();
val.z = getRandom<decltype(T::x)>();
val.w = getRandom<decltype(T::x)>();
}
template<
typename T,
typename std::enable_if<std::is_scalar<T>::value>::type* = nullptr>
static inline void initVal(T &val) {
val = getRandom<T>();
}
/*Convert normalized floatx to typex*/
template <typename T, typename F> inline __device__ T getTypeFromNormalizedFloat(const F &f) {
T t;
if constexpr (std::is_scalar<T>::value)
t = static_cast<T>(f.x * std::numeric_limits<T>::max());
else {
if constexpr (rank<T>() > 0)
t.x = static_cast<decltype(T::x)>(f.x * std::numeric_limits<decltype(T::x)>::max());
if constexpr (rank<T>() > 1)
t.y = static_cast<decltype(T::y)>(f.y * std::numeric_limits<decltype(T::y)>::max());
if constexpr (rank<T>() > 2)
t.z = static_cast<decltype(T::z)>(f.z * std::numeric_limits<decltype(T::z)>::max());
if constexpr (rank<T>() > 3)
t.w = static_cast<decltype(T::w)>(f.w * std::numeric_limits<decltype(T::w)>::max());
}
return t;
}
/*Convert typex to normalized floatx*/
template <class T>
inline auto getNormalizedFloatType(const T &t) {
if constexpr (std::is_scalar<T>::value)
return static_cast<float>(t) / std::numeric_limits<T>::max();
else {
if constexpr (rank<T>() == 1) {
float1 f{static_cast<float>(t.x) / std::numeric_limits<decltype(T::x)>::max()};
return f;
}
if constexpr (rank<T>() == 2) {
float2 f{static_cast<float>(t.x) / std::numeric_limits<decltype(T::x)>::max(),
static_cast<float>(t.y) / std::numeric_limits<decltype(T::y)>::max()};
return f;
}
if constexpr (rank<T>() == 3) {
float3 f{static_cast<float>(t.x) / std::numeric_limits<decltype(T::x)>::max(),
static_cast<float>(t.y) / std::numeric_limits<decltype(T::y)>::max(),
static_cast<float>(t.z) / std::numeric_limits<decltype(T::z)>::max()};
return f;
}
if constexpr (rank<T>() == 4) {
float4 f{static_cast<float>(t.x) / std::numeric_limits<decltype(T::x)>::max(),
static_cast<float>(t.y) / std::numeric_limits<decltype(T::y)>::max(),
static_cast<float>(t.z) / std::numeric_limits<decltype(T::z)>::max(),
static_cast<float>(t.w) / std::numeric_limits<decltype(T::w)>::max()};
return f;
}
}
}
/*Check if T is floatx*/
template <typename T> inline bool constexpr isFloat() {
if constexpr (std::is_scalar<T>::value)
return std::is_floating_point<T>::value;
else {
return std::is_floating_point<decltype(T::x)>::value;
}
return false;
}
template <typename T>
void getStatics(T* data, size_t N, double& mean, double* deviation = nullptr) {
double t = 0;
for (size_t i = 0; i < N; i++)
t += static_cast<double>(data[i]);
mean = t / N;
if (!deviation) return;
double d = 0;
for (size_t i = 0; i < N; i++) {
double delta = data[i] - mean;
d += delta * delta;
}
*deviation = sqrt(d / (N - 1));
}
template <typename T> bool verify(T* data, T* data1, size_t N) {
for (size_t i = 0; i < N; i++) {
if (!isEqual(data[i], data1[i])) {
printf("Difference [ %zu ]:%s ----%s\n", i, getString(data[i]).c_str(),
getString(data1[i]).c_str());
return false;
}
}
return true;
}