Merge pull request #19674 from l-bat:lb/fix_ie_tests

This commit is contained in:
Alexander Alekhin 2021-03-04 14:52:20 +00:00
commit 2a808aeec0

View File

@ -769,8 +769,14 @@ static InferenceEngine::Layout estimateLayout(const Mat& m)
{
if (m.dims == 4)
return InferenceEngine::Layout::NCHW;
else if (m.dims == 3)
return InferenceEngine::Layout::CHW;
else if (m.dims == 2)
return InferenceEngine::Layout::NC;
else if (m.dims == 1)
return InferenceEngine::Layout::C;
else if (m.dims == 5)
return InferenceEngine::Layout::NCDHW;
else
return InferenceEngine::Layout::ANY;
}