[GNA] Enable IMPORT_EXPORT_SUPPORT metric (#4889)

* 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
This commit is contained in:
Mikhail Nosov 2021-04-12 16:46:42 +03:00 committed by GitHub
parent 14e0da322e
commit 1662ee0647
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View File

@ -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);

View File

@ -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.*)",
};
}