mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-25 09:37:42 +00:00
19 lines
364 B
C++
19 lines
364 B
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#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>;
|
|
|
|
template <index_t N>
|
|
using LongNumber = integral_constant<long_index_t, N>;
|
|
|
|
} // namespace ck
|
|
#endif
|