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_ROCM
Commits
b0bf4912
"git@developer.sourcefind.cn:modelzoo/resnet50_tensorflow.git" did not exist on "84c5fcd380ca5ef85ea22dd494ea7c7a31f1b3b7"
Commit
b0bf4912
authored
Jan 21, 2025
by
Adam Osewski
Browse files
Fix err in reverse tuple.
parent
57e6fd46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
include/ck_tile/core/container/tuple.hpp
include/ck_tile/core/container/tuple.hpp
+1
-1
No files found.
include/ck_tile/core/container/tuple.hpp
View file @
b0bf4912
...
@@ -546,7 +546,7 @@ CK_TILE_HOST_DEVICE constexpr auto tuple_reverse(const tuple<Ts...>& t)
...
@@ -546,7 +546,7 @@ CK_TILE_HOST_DEVICE constexpr auto tuple_reverse(const tuple<Ts...>& t)
using
Idx
=
number
<
tuple
<
Ts
...
>::
size
()
-
i
-
1
>
;
using
Idx
=
number
<
tuple
<
Ts
...
>::
size
()
-
i
-
1
>
;
return
t
.
at
(
Idx
{});
return
t
.
at
(
Idx
{});
},
},
number
<
tuple
<
Ts
...
>::
size
()
()
>
{});
number
<
tuple
<
Ts
...
>::
size
()
>
{});
}
}
// Reduce tuple values in specific range using Function
// Reduce tuple values in specific range using Function
...
...
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