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
8b45553d
Commit
8b45553d
authored
Nov 18, 2019
by
Chao Liu
Browse files
fix issue: uncessary sgpr usage due to kernel wrapper pass unnecessary argument
parent
ff2c373b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
composable_kernel/include/gridwise_operation_wrapper.hpp
composable_kernel/include/gridwise_operation_wrapper.hpp
+2
-2
No files found.
composable_kernel/include/gridwise_operation_wrapper.hpp
View file @
8b45553d
...
...
@@ -2,9 +2,9 @@
#define CK_GRIDWISE_OPERATION_KERNEL_WRAPPER
template
<
typename
GridwiseOp
,
typename
...
Xs
>
__global__
void
run_gridwise_operation
(
GridwiseOp
gridwise_op
,
Xs
...
xs
)
__global__
void
run_gridwise_operation
(
GridwiseOp
,
Xs
...
xs
)
{
g
ridwise
_op
.
Run
(
xs
...);
G
ridwise
Op
{}
.
Run
(
xs
...);
}
#endif
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