Unverified Commit 0850479b authored by Polina Brzezinskaya's avatar Polina Brzezinskaya Committed by GitHub
Browse files

[IE][VPU][TESTS]: Fix myriad tests on MacOS (#3681)

* fix sorting ref for myriadTestsTopK_smoke on macOS and chenged dynamic_pointer_cast to ngraph::is_type at dynamic_to_static_shape_squeeze.cpp
* disable accuracy/myriadLayersTestsExpGenerateProposals_smoke.ExpGenerateProposals tests for macOS
No related merge requests found
Showing with 6 additions and 5 deletions
+6 -5
......@@ -24,7 +24,7 @@ void dynamicToStaticShapeSqueeze(std::shared_ptr<ngraph::Node> target) {
target, ngraph::opset3::Squeeze::type_info);
const auto dsr = target->input_value(0).get_node_shared_ptr();
VPU_THROW_UNLESS(std::dynamic_pointer_cast<ngraph::vpu::op::DynamicShapeResolver>(dsr),
VPU_THROW_UNLESS(ngraph::is_type<ngraph::vpu::op::DynamicShapeResolver>(dsr),
"DynamicToStaticShape transformation for {} of type {} expects {} as input with index {}",
target->get_friendly_name(), target->get_type_info(), ngraph::vpu::op::DynamicShapeResolver::type_info, 0);
......
......@@ -140,7 +140,11 @@ static void genInputs(InferenceEngine::BlobMap inputMap,
inputIMinfo[1] = PrecisionUtils::f32tof16( (float) imgW );
}
#ifdef __APPLE__
TEST_P(myriadLayersTestsExpGenerateProposals_smoke, DISABLED_ExpGenerateProposals) {
#else
TEST_P(myriadLayersTestsExpGenerateProposals_smoke, ExpGenerateProposals) {
#endif
tensor_test_params scoresDims = std::get<0>(GetParam());
std::vector<int> im_info = std::get<1>(GetParam());
GenerateProposalsParam opParams = std::get<2>(GetParam());
......
......@@ -1255,10 +1255,7 @@ namespace topk_impl {
typedef std::function<bool(const Pair&, const Pair&)> CompareFunction;
bool compareIndices(const Pair& a, const Pair& b) {
if (a.second < b.second) return true;
if (a.second > b.second) return false;
return true; // shouldn't occur since all indices are different
return (a.second < b.second);
}
bool compareValuesMax(const Pair& a, const Pair& b) {
......
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