Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the failure on the test suit smoke_IsOp/ComparisonLayerTes* #9

Open
wants to merge 4 commits into
base: river/cpu_plugin_api_2.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ bool fuse_type_to_random_uniform_v8(const std::shared_ptr<ngraph::Node>& node, c

bool extend_select_type(const std::shared_ptr<ngraph::Node>& node, const precisions_map& precisions);
bool extend_reverse_type(const std::shared_ptr<ngraph::Node>& node, const precisions_map& precisions);
bool extend_isFinite_type(const std::shared_ptr<ngraph::Node>& node, const precisions_map& precisions);
bool extend_isNaN_type(const std::shared_ptr<ngraph::Node>& node, const precisions_map& precisions);

template <typename T>
bool fuse_type_to_binary_comparision(const std::shared_ptr<ngraph::Node>& node, const precisions_map& precisions) {
Expand Down Expand Up @@ -357,6 +359,8 @@ bool ov::pass::ConvertPrecision::run_on_model(const std::shared_ptr<ngraph::Func
{opset4::Range::get_type_info_static(), fuse_type_to_range_v4},
{opset9::Eye::get_type_info_static(), fuse_type_to_eye_v9},
{opset10::Unique::get_type_info_static(), fuse_type_to_unique_v10},
{opset10::IsFinite::get_type_info_static(), fuse_type_to_reduce_logical<opset10::IsFinite>},
{opset10::IsNaN::get_type_info_static(), fuse_type_to_reduce_logical<opset10::IsNaN>},
{opset8::RandomUniform::get_type_info_static(), fuse_type_to_random_uniform_v8}};

for (const auto& it : m_additional_type_to_fuse_map) {
Expand Down