number.hpp Source File# Composable Kernel: 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 9namespace ck { 10 11template <index_t N> 12using Number = integral_constant<index_t, N>; 13 14template <index_t N> 15using LongNumber = integral_constant<long_index_t, N>; 16 17} // namespace ck 18#endif ckDefinition ck.hpp:268 ck::LongNumberintegral_constant< long_index_t, N > LongNumberDefinition number.hpp:15 ck::Numberintegral_constant< index_t, N > NumberDefinition number.hpp:12 ck::integral_constantDefinition utility/integral_constant.hpp:20 integral_constant.hpp