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
43d4bd7a
Commit
43d4bd7a
authored
Sep 06, 2022
by
Po-Yen, Chen
Browse files
Remove debug messages
parent
7ebb1cbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
example/36_elementwise_permute/common.hpp
example/36_elementwise_permute/common.hpp
+0
-8
No files found.
example/36_elementwise_permute/common.hpp
View file @
43d4bd7a
...
@@ -360,14 +360,6 @@ host_elementwise_permute(const Tensor<Src>& src,
...
@@ -360,14 +360,6 @@ host_elementwise_permute(const Tensor<Src>& src,
{
{
const
auto
&
shape
=
src
.
mDesc
.
GetLengths
();
const
auto
&
shape
=
src
.
mDesc
.
GetLengths
();
const
auto
&
transposed_shape
=
dest
.
mDesc
.
GetLengths
();
const
auto
&
transposed_shape
=
dest
.
mDesc
.
GetLengths
();
std
::
copy
(
begin
(
shape
),
end
(
shape
),
std
::
ostream_iterator
<
std
::
size_t
>
(
std
::
cerr
,
" "
));
std
::
cerr
<<
std
::
endl
;
std
::
copy
(
begin
(
transposed_shape
),
end
(
transposed_shape
),
std
::
ostream_iterator
<
std
::
size_t
>
(
std
::
cerr
,
" "
));
std
::
cerr
<<
std
::
endl
;
if
(
!
(
is_valid_shape
(
shape
)
&&
is_valid_shape
(
transposed_shape
)))
if
(
!
(
is_valid_shape
(
shape
)
&&
is_valid_shape
(
transposed_shape
)))
{
{
return
false
;
return
false
;
...
...
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