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
e3df7b35
"vscode:/vscode.git/clone" did not exist on "a3abce47ca33cde9ac08722238d2761d0c0fa521"
Commit
e3df7b35
authored
Feb 04, 2019
by
Shucai Xiao
Browse files
add the rewrite_gru pass.
parent
76a4fbbc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
src/targets/cpu/target.cpp
src/targets/cpu/target.cpp
+2
-0
src/targets/gpu/target.cpp
src/targets/gpu/target.cpp
+1
-0
No files found.
src/targets/cpu/target.cpp
View file @
e3df7b35
...
...
@@ -17,6 +17,8 @@ std::vector<pass> target::get_passes(migraphx::context&) const
return
{
auto_contiguous
{},
rewrite_rnn
{},
dead_code_elimination
{},
rewrite_gru
{},
dead_code_elimination
{},
lowering
{},
dead_code_elimination
{}};
}
...
...
src/targets/gpu/target.cpp
View file @
e3df7b35
...
...
@@ -34,6 +34,7 @@ std::vector<pass> target::get_passes(migraphx::context& gctx) const
fwd_conv_batchnorm_rewrite
{},
dead_code_elimination
{},
rewrite_rnn
{},
dead_code_elimination
{},
rewrite_gru
{},
dead_code_elimination
{},
//common_subexpression_elimination{},
...
...
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