From 6d77f529c70f3d8d06d8ea178dd4dba814d6dca8 Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Thu, 24 Jul 2025 14:52:46 -0700 Subject: [PATCH] remove repetitive code (#2562) [ROCm/composable_kernel commit: 9c04a55626155b2a9d55e3ec6f4046a7a727d934] --- include/ck/utility/data_type.hpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/include/ck/utility/data_type.hpp b/include/ck/utility/data_type.hpp index ff611d2136..5fbe30d21b 100644 --- a/include/ck/utility/data_type.hpp +++ b/include/ck/utility/data_type.hpp @@ -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