include/ck/utility/number.hpp Source File# Composable Kernel: include/ck/utility/number.hpp Source File includeckutility number.hpp Go to the documentation of this file. 1 // SPDX-License-Identifier: MIT 2 // Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved. 3 4 #ifndef CK_NUMBER_HPP 5 #define CK_NUMBER_HPP 6 7 #include "integral_constant.hpp" 8 9 namespace ck { 10 11 template <index_t N> 12 using Number = integral_constant<index_t, N>; 13 14 template <index_t N> 15 using LongNumber = integral_constant<long_index_t, N>; 16 17 } // namespace ck 18 #endif ckDefinition: ck.hpp:264 ck::integral_constantDefinition: integral_constant.hpp:10 integral_constant.hpp