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
9fb39ec4
Commit
9fb39ec4
authored
Nov 09, 2021
by
Shucai Xiao
Browse files
fix cppcheck error
parent
83181ddc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test/auto_contiguous_test.cpp
test/auto_contiguous_test.cpp
+3
-3
No files found.
test/auto_contiguous_test.cpp
View file @
9fb39ec4
...
...
@@ -118,8 +118,8 @@ TEST_CASE(two_transpose_gather)
return
m
;
};
auto
m
=
create_module
();
run_pass
(
m
);
auto
m
dl
=
create_module
();
run_pass
(
m
dl
);
auto
create_cont_module
=
[]
{
migraphx
::
module
m
;
...
...
@@ -138,7 +138,7 @@ TEST_CASE(two_transpose_gather)
return
m
;
};
EXPECT
(
m
==
create_cont_module
());
EXPECT
(
m
dl
==
create_cont_module
());
}
int
main
(
int
argc
,
const
char
*
argv
[])
{
test
::
run
(
argc
,
argv
);
}
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