Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
26d6f15f
Commit
26d6f15f
authored
Jun 19, 2019
by
Paul
Browse files
Dont run kernel twice for broadcast
parent
524baf05
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
src/include/migraphx/functional.hpp
src/include/migraphx/functional.hpp
+2
-2
src/targets/gpu/device/include/migraphx/gpu/device/nary.hpp
src/targets/gpu/device/include/migraphx/gpu/device/nary.hpp
+5
-3
No files found.
src/include/migraphx/functional.hpp
View file @
26d6f15f
...
...
@@ -185,8 +185,8 @@ auto pop_back_args(Ts&&... xs)
return
[
&
](
auto
f
)
{
using
tuple_type
=
std
::
tuple
<
Ts
&&
...
>
;
auto
t
=
tuple_type
(
static_cast
<
Ts
&&>
(
xs
)...);
sequence_c
<
sizeof
...(
Ts
)
-
1
>
(
[
&
](
auto
...
is
)
{
f
(
std
::
get
<
is
>
(
static_cast
<
tuple_type
&&>
(
t
))...);
});
return
sequence_c
<
sizeof
...(
Ts
)
-
1
>
(
[
&
](
auto
...
is
)
{
return
f
(
std
::
get
<
is
>
(
static_cast
<
tuple_type
&&>
(
t
))...);
});
};
}
...
...
src/targets/gpu/device/include/migraphx/gpu/device/nary.hpp
View file @
26d6f15f
...
...
@@ -399,7 +399,7 @@ auto nary(hipStream_t stream, argument result, Arguments... args)
return
[
=
](
auto
f
)
{
auto
barg
=
back_args
(
args
...);
pop_back_args
(
args
...)([
&
](
auto
&&
...
args2
)
{
bool
fallback
=
pop_back_args
(
args
...)([
&
](
auto
&&
...
args2
)
{
auto
bshape
=
barg
.
get_shape
();
const
bool
standard
=
all_of
({
args2
.
get_shape
()...},
[](
const
shape
&
s
)
{
return
s
.
standard
();
});
...
...
@@ -425,11 +425,13 @@ auto nary(hipStream_t stream, argument result, Arguments... args)
nary_broadcast_vec_impl
(
stream
,
f
,
result
,
barg
,
args2
...);
else
nary_broadcast_impl
(
stream
,
f
,
result
,
barg
,
args2
...);
return
;
return
false
;
}
}
return
true
;
});
nary_impl
(
stream
,
f
,
result
,
args
...);
if
(
fallback
)
nary_impl
(
stream
,
f
,
result
,
args
...);
};
}
...
...
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