Skip to content

Commit

Permalink
[GNA] Enable IMPORT_EXPORT_SUPPORT metric (#4889)
Browse files Browse the repository at this point in the history
* Proper cleanup of cache_dir on start/end tests

Also add ability to skip the test depending on plugins 'skip_test_config'

* [GNA] Enable IMPORT_EXPORT_SUPPORT metric

Some tests were skipped, appropriate tickets were raised
  • Loading branch information
nosovmik authored Apr 12, 2021
1 parent 14e0da3 commit 1662ee0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion inference-engine/src/gna_plugin/gna_plugin_query_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ Parameter GNAPlugin::GetMetric(const std::string& name, const std::map<std::stri
availablesMetrics.push_back(supportedAPI.first);
}
return availablesMetrics;
}}
}},
{METRIC_KEY(IMPORT_EXPORT_SUPPORT), []() {return true;}}
};

auto it = queryApiSupported.find(name);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,13 @@ std::vector<std::string> disabledTestPatterns() {
R"(.*ConvolutionLayerTest.CompareWithRefs.*D=\(3.1\).*)",
R"(.*ConstantResultSubgraphTest.*IS=\(2\.3\.4\.5\).*)",
R"(.*ConstantResultSubgraphTest.*inPrc=(U8|I8|I32|U64|I64|BOOL).*)",
// TODO: Issue 51528
R"(.*CachingSupport.*_(u8|i16)_.*)",
// TODO: Issue 51527
R"(.*CachingSupport.*_batch2_.*)",
// TODO: Issue 51526
R"(.*CachingSupport.*ConvPoolRelu.*)",
// TODO: Issue 51525
R"(.*CachingSupport.*KSOFunction.*)",
};
}

0 comments on commit 1662ee0

Please sign in to comment.