Skip to content

Commit

Permalink
[GPU] Fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-paramuzov committed Jul 27, 2021
1 parent 1909967 commit 6dcf645
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inference-engine/thirdparty/clDNN/src/gather_elements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ std::string gather_elements_inst::to_string(gather_elements_node const& node) {
return primitive_description.str();
}

gather_elements_inst::typed_primitive_inst(network_impl& network, gather_elements_node const& node) : parent(network, node) {}
gather_elements_inst::typed_primitive_inst(network& network, gather_elements_node const& node) : parent(network, node) {}

} // namespace cldnn
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class typed_primitive_inst<gather_elements> : public typed_primitive_inst_base<g
static std::string to_string(gather_elements_node const& node);

public:
typed_primitive_inst(network_impl& network, gather_elements_node const& desc);
typed_primitive_inst(network& network, gather_elements_node const& desc);
};

using gather_elements_inst = typed_primitive_inst<gather_elements>;
Expand Down

0 comments on commit 6dcf645

Please sign in to comment.