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
ddc5d078
Commit
ddc5d078
authored
Mar 14, 2019
by
Shucai Xiao
Browse files
code clean up
parent
24c86599
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
src/targets/cpu/lowering.cpp
src/targets/cpu/lowering.cpp
+1
-3
No files found.
src/targets/cpu/lowering.cpp
View file @
ddc5d078
...
@@ -409,9 +409,7 @@ struct cpu_gemm
...
@@ -409,9 +409,7 @@ struct cpu_gemm
visit_all
(
result
,
c
)([
&
](
auto
output
,
auto
input
)
{
visit_all
(
result
,
c
)([
&
](
auto
output
,
auto
input
)
{
for
(
std
::
size_t
i
=
0
;
i
<
m
;
i
++
)
for
(
std
::
size_t
i
=
0
;
i
<
m
;
i
++
)
{
{
std
::
fill
(
output
.
begin
()
+
i
*
n
,
std
::
fill
(
output
.
begin
()
+
i
*
n
,
output
.
begin
()
+
((
i
+
1
)
*
n
),
input
[
i
]);
(
i
+
1
==
m
)
?
output
.
end
()
:
output
.
begin
()
+
((
i
+
1
)
*
n
),
input
[
i
]);
}
}
});
});
}
}
...
...
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