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
6590c790
Commit
6590c790
authored
Feb 28, 2019
by
Shucai Xiao
Browse files
fix a clang format error
parent
62f15611
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
test/gpu/miopen.cpp
test/gpu/miopen.cpp
+4
-4
No files found.
test/gpu/miopen.cpp
View file @
6590c790
...
...
@@ -2887,7 +2887,7 @@ struct test_lstm_bidirct_default_actv2
}
};
template
<
int
a
xis
>
template
<
int
A
xis
>
struct
test_logsoftmax
{
migraphx
::
program
create_program
()
const
...
...
@@ -2895,13 +2895,13 @@ struct test_logsoftmax
migraphx
::
program
p
;
migraphx
::
shape
s
{
migraphx
::
shape
::
float_type
,
{
3
,
4
,
5
,
6
}};
auto
param
=
p
.
add_parameter
(
"0"
,
s
);
p
.
add_instruction
(
migraphx
::
op
::
logsoftmax
{
a
xis
},
param
);
p
.
add_instruction
(
migraphx
::
op
::
logsoftmax
{
A
xis
},
param
);
return
p
;
}
};
template
<
int
a
xis
>
template
<
int
A
xis
>
struct
test_logsoftmax_1
{
migraphx
::
program
create_program
()
const
...
...
@@ -2909,7 +2909,7 @@ struct test_logsoftmax_1
migraphx
::
program
p
;
migraphx
::
shape
s
{
migraphx
::
shape
::
float_type
,
{
3
}};
auto
param
=
p
.
add_parameter
(
"0"
,
s
);
p
.
add_instruction
(
migraphx
::
op
::
logsoftmax
{
a
xis
},
param
);
p
.
add_instruction
(
migraphx
::
op
::
logsoftmax
{
A
xis
},
param
);
return
p
;
}
...
...
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