Remove identity on MaxPool outputs (#9163)

This commit is contained in:
Mateusz Tabaka
2021-12-13 17:30:22 +01:00
committed by GitHub
parent 06865a252a
commit b9f84530da
2 changed files with 1 additions and 7 deletions

View File

@@ -319,7 +319,6 @@ py::dict outputs_to_dict(const std::vector<ov::Output<const ov::Node>>& outputs,
py::dict res;
for (const auto& out : outputs) {
ov::runtime::Tensor t{request.get_tensor(out)};
std::cout << t.get_element_type() << " !\n";
switch (t.get_element_type()) {
case ov::element::Type_t::i8: {
py::array arr(t.get_shape(), t.data<int8_t>());