Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel
Commits
7bab5ce7
Commit
7bab5ce7
authored
Jun 25, 2022
by
Chao Liu
Browse files
clean header
parent
7a3b49e5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
18 deletions
+14
-18
include/ck/utility/functional.hpp
include/ck/utility/functional.hpp
+3
-5
include/ck/utility/integral_constant.hpp
include/ck/utility/integral_constant.hpp
+1
-3
include/ck/utility/sequence.hpp
include/ck/utility/sequence.hpp
+4
-4
include/ck/utility/tuple.hpp
include/ck/utility/tuple.hpp
+4
-4
include/ck/utility/type.hpp
include/ck/utility/type.hpp
+2
-2
No files found.
include/ck/utility/functional.hpp
View file @
7bab5ce7
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved.
#ifndef CK_FUNCTIONAL_HPP
#pragma once
#define CK_FUNCTIONAL_HPP
#include "integral_constant.hpp"
#include "
ck/utility/
integral_constant.hpp"
#include "type.hpp"
#include "
ck/utility/
type.hpp"
namespace
ck
{
namespace
ck
{
...
@@ -116,4 +115,3 @@ template <bool predicate, class X, class Y>
...
@@ -116,4 +115,3 @@ template <bool predicate, class X, class Y>
using
conditional_t
=
typename
conditional
<
predicate
,
X
,
Y
>::
type
;
using
conditional_t
=
typename
conditional
<
predicate
,
X
,
Y
>::
type
;
}
// namespace ck
}
// namespace ck
#endif
include/ck/utility/integral_constant.hpp
View file @
7bab5ce7
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved.
// Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved.
#ifndef CK_INTEGRAL_CONSTANT_HPP
#pragma once
#define CK_INTEGRAL_CONSTANT_HPP
namespace
ck
{
namespace
ck
{
...
@@ -50,4 +49,3 @@ __host__ __device__ constexpr auto operator%(integral_constant<TX, X>, integral_
...
@@ -50,4 +49,3 @@ __host__ __device__ constexpr auto operator%(integral_constant<TX, X>, integral_
}
}
}
// namespace ck
}
// namespace ck
#endif
include/ck/utility/sequence.hpp
View file @
7bab5ce7
...
@@ -3,10 +3,10 @@
...
@@ -3,10 +3,10 @@
#pragma once
#pragma once
#include "integral_constant.hpp"
#include "
ck/utility/
integral_constant.hpp"
#include "type.hpp"
#include "
ck/utility/
type.hpp"
#include "functional.hpp"
#include "
ck/utility/
functional.hpp"
#include "math.hpp"
#include "
ck/utility/
math.hpp"
namespace
ck
{
namespace
ck
{
...
...
include/ck/utility/tuple.hpp
View file @
7bab5ce7
...
@@ -3,10 +3,10 @@
...
@@ -3,10 +3,10 @@
#pragma once
#pragma once
#include "integral_constant.hpp"
#include "
ck/utility/
integral_constant.hpp"
#include "sequence.hpp"
#include "
ck/utility/
sequence.hpp"
#include "type.hpp"
#include "
ck/utility/
type.hpp"
#include "enable_if.hpp"
#include "
ck/utility/
enable_if.hpp"
namespace
ck
{
namespace
ck
{
...
...
include/ck/utility/type.hpp
View file @
7bab5ce7
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
#pragma once
#pragma once
#include "ck/ck.hpp"
#include "ck/ck.hpp"
#include "integral_constant.hpp"
#include "
ck/utility/
integral_constant.hpp"
#include "enable_if.hpp"
#include "
ck/utility/
enable_if.hpp"
namespace
ck
{
namespace
ck
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment