number.hpp 376 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved.

Chao Liu's avatar
Chao Liu committed
4
5
6
7
8
9
10
11
12
13
#ifndef CK_NUMBER_HPP
#define CK_NUMBER_HPP

#include "integral_constant.hpp"

namespace ck {

template <index_t N>
using Number = integral_constant<index_t, N>;

14
15
16
template <index_t N>
using LongNumber = integral_constant<long_index_t, N>;

Chao Liu's avatar
Chao Liu committed
17
18
} // namespace ck
#endif