From 75bd773323c4229e8a1687ee95ab52f74c3b8dfb Mon Sep 17 00:00:00 2001 From: cliffburdick Date: Fri, 24 May 2024 08:19:39 -0700 Subject: [PATCH] Remove conversion for double to half --- include/matx/core/half.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/matx/core/half.h b/include/matx/core/half.h index 5f89294d..d194af49 100644 --- a/include/matx/core/half.h +++ b/include/matx/core/half.h @@ -101,16 +101,6 @@ template struct alignas(sizeof(T)) matxHalf { return static_cast(x); } - /** - * @brief Double casting operator - * - * @return double of value - */ - __MATX_HOST__ __MATX_DEVICE__ __MATX_INLINE__ operator double() const - { - return static_cast(x); - } - /** * @brief Default copy assignment operator *