mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-24 06:44:36 +00:00
tweak
This commit is contained in:
@@ -8,6 +8,21 @@
|
||||
|
||||
namespace ck {
|
||||
|
||||
template <class>
|
||||
struct is_static : integral_constant<bool, false>
|
||||
{
|
||||
};
|
||||
|
||||
template <class T, T X>
|
||||
struct is_static<integral_constant<T, X>> : integral_constant<bool, true>
|
||||
{
|
||||
};
|
||||
|
||||
template <index_t... Is>
|
||||
struct is_static<Sequence<Is...>> : integral_constant<bool, true>
|
||||
{
|
||||
};
|
||||
|
||||
// RemainLengths: Sequence<...>
|
||||
template <class RemainLengths>
|
||||
struct static_ford_impl
|
||||
|
||||
Reference in New Issue
Block a user