Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
ad7e1ea1
Commit
ad7e1ea1
authored
Aug 08, 2018
by
Pruthvi
Committed by
Scott Cyphers
Aug 08, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable rnn && lstm fusion pass for DEX (#1371)
parent
58aa4746
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
cpu_external_function.cpp
src/ngraph/runtime/cpu/cpu_external_function.cpp
+5
-3
No files found.
src/ngraph/runtime/cpu/cpu_external_function.cpp
View file @
ad7e1ea1
...
...
@@ -1068,9 +1068,11 @@ void runtime::cpu::CPU_ExternalFunction::build()
//in which case they should run this pass(CPUWorkspaceInsertion) explicitly
NodeVector
nv_cwi
;
pass_manager
.
register_pass
<
ngraph
::
pass
::
NopElimination
>
();
pass_manager
.
register_pass
<
runtime
::
cpu
::
pass
::
LSTMFusion
>
();
pass_manager
.
register_pass
<
runtime
::
cpu
::
pass
::
RNNFusion
>
();
pass_manager
.
register_pass
<
runtime
::
cpu
::
pass
::
ConcatInputs
>
();
// TODO (pruthvi): Enable all the disabeled RNN fusion graph pass after fixing
// failing mxnet unit tests.
//pass_manager.register_pass<runtime::cpu::pass::LSTMFusion>();
//pass_manager.register_pass<runtime::cpu::pass::RNNFusion>();
//pass_manager.register_pass<runtime::cpu::pass::ConcatInputs>();
pass_manager
.
register_pass
<
ngraph
::
pass
::
AlgebraicSimplification
>
();
pass_manager
.
register_pass
<
ngraph
::
pass
::
CommonSubexpressionElimination
>
();
pass_manager
.
register_pass
<
ngraph
::
pass
::
CoreFusion
>
();
...
...
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