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
55a81942
Commit
55a81942
authored
May 17, 2023
by
Po-Yen, Chen
Browse files
Remove 'static' specifiers
parent
dea4506e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/ck/utility/readfirstlane.hpp
include/ck/utility/readfirstlane.hpp
+2
-2
No files found.
include/ck/utility/readfirstlane.hpp
View file @
55a81942
...
...
@@ -49,8 +49,8 @@ template <
typename
=
std
::
enable_if_t
<
std
::
is_class_v
<
Object
>
&&
std
::
is_trivially_copyable_v
<
Object
>>>
__device__
auto
readfirstlane
(
const
Object
&
obj
)
{
static
constexpr
std
::
size_t
SgprSize
=
4
;
static
constexpr
std
::
size_t
ObjectSize
=
sizeof
(
Object
);
constexpr
std
::
size_t
SgprSize
=
4
;
constexpr
std
::
size_t
ObjectSize
=
sizeof
(
Object
);
using
Sgpr
=
detail
::
get_signed_int_t
<
SgprSize
>
;
...
...
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