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
28e99eb3
Commit
28e99eb3
authored
Mar 27, 2018
by
Nick Korovaiko
Committed by
Robert Kimball
Mar 27, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
consistent naming in CPUFusion (#740)
parent
4e78f25d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
cpu_fusion.cpp
src/ngraph/runtime/cpu/pass/cpu_fusion.cpp
+2
-2
cpu_fusion.hpp
src/ngraph/runtime/cpu/pass/cpu_fusion.hpp
+4
-4
No files found.
src/ngraph/runtime/cpu/pass/cpu_fusion.cpp
View file @
28e99eb3
...
...
@@ -121,7 +121,7 @@ static std::vector<T> apply_permutation(std::vector<T> input, ngraph::AxisVector
return
output
;
}
void
ngraph
::
runtime
::
cpu
::
pass
::
CPUFusion
::
construct_matmulbias
_pattern
()
void
ngraph
::
runtime
::
cpu
::
pass
::
CPUFusion
::
construct_matmulbias
()
{
Shape
shape_w
{
2
,
4
};
Shape
shape_x
{
4
,
1
};
...
...
@@ -162,7 +162,7 @@ void ngraph::runtime::cpu::pass::CPUFusion::construct_matmulbias_pattern()
this
->
add_matcher
(
m
);
}
void
ngraph
::
runtime
::
cpu
::
pass
::
CPUFusion
::
construct_matmul
_pattern
()
void
ngraph
::
runtime
::
cpu
::
pass
::
CPUFusion
::
construct_matmul
()
{
Shape
shape_w
{
2
,
4
};
Shape
shape_x
{
4
,
1
};
...
...
src/ngraph/runtime/cpu/pass/cpu_fusion.hpp
View file @
28e99eb3
...
...
@@ -38,8 +38,8 @@ public:
CPUFusion
()
:
GraphRewrite
()
{
construct_matmul
_pattern
();
construct_matmulbias
_pattern
();
construct_matmul
();
construct_matmulbias
();
construct_fprop_bn
();
construct_zero_padded_reshaped_conv
();
construct_zero_padded_conv
();
...
...
@@ -50,8 +50,8 @@ public:
}
private
:
void
construct_matmul
_pattern
();
void
construct_matmulbias
_pattern
();
void
construct_matmul
();
void
construct_matmulbias
();
void
construct_conv_bias
();
void
construct_fprop_bn
();
void
construct_sigmoid
();
...
...
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