Commit 28e99eb3 authored by Nick Korovaiko's avatar Nick Korovaiko Committed by Robert Kimball

consistent naming in CPUFusion (#740)

parent 4e78f25d
...@@ -121,7 +121,7 @@ static std::vector<T> apply_permutation(std::vector<T> input, ngraph::AxisVector ...@@ -121,7 +121,7 @@ static std::vector<T> apply_permutation(std::vector<T> input, ngraph::AxisVector
return output; 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_w{2, 4};
Shape shape_x{4, 1}; Shape shape_x{4, 1};
...@@ -162,7 +162,7 @@ void ngraph::runtime::cpu::pass::CPUFusion::construct_matmulbias_pattern() ...@@ -162,7 +162,7 @@ void ngraph::runtime::cpu::pass::CPUFusion::construct_matmulbias_pattern()
this->add_matcher(m); 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_w{2, 4};
Shape shape_x{4, 1}; Shape shape_x{4, 1};
......
...@@ -38,8 +38,8 @@ public: ...@@ -38,8 +38,8 @@ public:
CPUFusion() CPUFusion()
: GraphRewrite() : GraphRewrite()
{ {
construct_matmul_pattern(); construct_matmul();
construct_matmulbias_pattern(); construct_matmulbias();
construct_fprop_bn(); construct_fprop_bn();
construct_zero_padded_reshaped_conv(); construct_zero_padded_reshaped_conv();
construct_zero_padded_conv(); construct_zero_padded_conv();
...@@ -50,8 +50,8 @@ public: ...@@ -50,8 +50,8 @@ public:
} }
private: private:
void construct_matmul_pattern(); void construct_matmul();
void construct_matmulbias_pattern(); void construct_matmulbias();
void construct_conv_bias(); void construct_conv_bias();
void construct_fprop_bn(); void construct_fprop_bn();
void construct_sigmoid(); void construct_sigmoid();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment