Remove redundant line

This commit is contained in:
Steve Yoo 2021-09-13 09:55:38 +09:00
parent 109cafeffe
commit 39a691ab95

View File

@ -320,7 +320,6 @@ void LayerTestsCommon::ConfigureNetwork() {
std::map<std::string, ngraph::PartialShape> inputShapes;
auto inputsDataMap = cnnNetwork.getInputsInfo();
for (auto&& inputDataMap : inputsDataMap) {
inputShapes[inputDataMap.first] = inputsDataMap[inputDataMap.first]->getInputData()->getPartialShape();
inputShapes[inputDataMap.first] = std::vector<ngraph::Dimension>(inputDynamicShape);
}
cnnNetwork.reshape(inputShapes);