// SPDX-License-Identifier: MIT // Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved. #ifndef CK_NUMBER_HPP #define CK_NUMBER_HPP #include "integral_constant.hpp" namespace ck { template using Number = integral_constant; template using LongNumber = integral_constant; } // namespace ck #endif