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
MIGraphX
Commits
f1d1b612
"...composable_kernel_rocm.git" did not exist on "08d5c02c37253bf2a6852ad25f2db209f81c0fe7"
Commit
f1d1b612
authored
May 20, 2019
by
Paul
Browse files
Fix literal test
parent
2ac09df3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
src/include/migraphx/raw_data.hpp
src/include/migraphx/raw_data.hpp
+1
-3
No files found.
src/include/migraphx/raw_data.hpp
View file @
f1d1b612
...
@@ -27,9 +27,7 @@ struct raw_data : raw_data_base
...
@@ -27,9 +27,7 @@ struct raw_data : raw_data_base
template
<
class
Stream
>
template
<
class
Stream
>
friend
Stream
&
operator
<<
(
Stream
&
os
,
const
Derived
&
d
)
friend
Stream
&
operator
<<
(
Stream
&
os
,
const
Derived
&
d
)
{
{
if
(
d
.
empty
())
if
(
not
d
.
empty
())
os
<<
"empty"
;
else
d
.
visit
([
&
](
auto
x
)
{
os
<<
x
;
});
d
.
visit
([
&
](
auto
x
)
{
os
<<
x
;
});
return
os
;
return
os
;
}
}
...
...
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