mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 22:39:03 +00:00
remove repetitive code (#2562)
This commit is contained in:
@@ -71,17 +71,6 @@ struct f4x2_pk_t
|
||||
{
|
||||
return !(lhs == rhs);
|
||||
}
|
||||
|
||||
// Compare operator
|
||||
__host__ __device__ friend bool operator==(const f4x2_pk_t& lhs, const f4x2_pk_t& rhs)
|
||||
{
|
||||
return lhs.data == rhs.data;
|
||||
}
|
||||
|
||||
__host__ __device__ friend bool operator!=(const f4x2_pk_t& lhs, const f4x2_pk_t& rhs)
|
||||
{
|
||||
return !(lhs == rhs);
|
||||
}
|
||||
};
|
||||
|
||||
template <typename BitType, index_t pk_size>
|
||||
|
||||
Reference in New Issue
Block a user