remove AUTO and MULTI in skip_config
This commit is contained in:
parent
650cb3f4b0
commit
d42420590f
@ -76,8 +76,6 @@ protected:
|
|||||||
*/
|
*/
|
||||||
GraphGuard::Lock GetGraph() const;
|
GraphGuard::Lock GetGraph() const;
|
||||||
|
|
||||||
bool CanProcessDynBatch(const InferenceEngine::CNNNetwork &network) const;
|
|
||||||
|
|
||||||
InferenceEngine::Parameter GetConfigLegacy(const std::string &name) const;
|
InferenceEngine::Parameter GetConfigLegacy(const std::string &name) const;
|
||||||
|
|
||||||
InferenceEngine::Parameter GetMetricLegacy(const std::string &name, const GraphGuard& graph) const;
|
InferenceEngine::Parameter GetMetricLegacy(const std::string &name, const GraphGuard& graph) const;
|
||||||
|
@ -983,14 +983,6 @@ void Graph::PullOutputData(BlobMap &out) {
|
|||||||
outBloMem.SetData(intr_blob, false);
|
outBloMem.SetData(intr_blob, false);
|
||||||
} else {
|
} else {
|
||||||
size_t size_to_copy = intr_blob.GetDescWithType<BlockedMemoryDesc>()->getPaddedElementsCount();
|
size_t size_to_copy = intr_blob.GetDescWithType<BlockedMemoryDesc>()->getPaddedElementsCount();
|
||||||
// used only for backward compatibility with the legacy API
|
|
||||||
if (getConfig().batchLimit && dynBatch > 0) {
|
|
||||||
if (node->isDynamicNode() && getConfig().isLegacyApi) {
|
|
||||||
IE_THROW(NotImplemented) << "[DS] not implemented dynamic batch for node with dynamic shape";
|
|
||||||
}
|
|
||||||
|
|
||||||
size_to_copy = std::accumulate(outDims.begin() + 1, outDims.end(), (size_t)1, std::multiplies<size_t>()) * static_cast<size_t>(dynBatch);
|
|
||||||
}
|
|
||||||
|
|
||||||
cpu_convert(intr_blob_ptr, ext_blob_ptr, srcPrec, dstPrec, size_to_copy);
|
cpu_convert(intr_blob_ptr, ext_blob_ptr, srcPrec, dstPrec, size_to_copy);
|
||||||
}
|
}
|
||||||
|
@ -118,10 +118,7 @@ std::vector<std::string> disabledTestPatterns() {
|
|||||||
R"(.*ReferenceInterpolate_v11.*data_type=f16.*)",
|
R"(.*ReferenceInterpolate_v11.*data_type=f16.*)",
|
||||||
R"(.*LSTMSequence_With_Hardcoded_Refs.*ReferenceLSTMSequenceTest.*iType=f16.*)",
|
R"(.*LSTMSequence_With_Hardcoded_Refs.*ReferenceLSTMSequenceTest.*iType=f16.*)",
|
||||||
// CVS-111443
|
// CVS-111443
|
||||||
R"(.*eltwiseOpType=Mod_secondaryInputType=PARAMETER_opType=VECTOR_NetType=(f16|f32).*)",
|
R"(.*eltwiseOpType=Mod_secondaryInputType=PARAMETER_opType=VECTOR_NetType=(f16|f32).*)"
|
||||||
// CVS-94156 AUTO and MULTI does not support
|
|
||||||
R"(.*smoke_Multi_BehaviorTests/OVCompiledModelBaseTest.canCompileModelwithBrace/targetDevice=MULTI.*)",
|
|
||||||
R"(.*smoke_Auto_BehaviorTests/OVCompiledModelBaseTest.canCompileModelwithBrace/targetDevice=AUTO.*)"
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
Loading…
Reference in New Issue
Block a user