// SPDX-License-Identifier: MIT // Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved. #pragma once #include "ck/ck.hpp" #include "ck/utility/enable_if.hpp" namespace ck { template ::type = false> __host__ __device__ constexpr Y bit_cast(const X& x) { static_assert(__has_builtin(__builtin_bit_cast), ""); return __builtin_bit_cast(Y, x); } } // namespace ck