Skip to content

Commit

Permalink
Deleted support of f64 in NMS-5.
Browse files Browse the repository at this point in the history
  • Loading branch information
vgavrilo committed Oct 16, 2020
1 parent 7597f30 commit debdf36
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions ngraph/core/src/op/non_max_suppression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -890,15 +890,6 @@ namespace
memcpy(result.data(), p, input_size * sizeof(float));
}
break;
case element::Type_t::f64:
{
double* p = input->get_data_ptr<double>();
for (size_t i = 0; i < input_size; ++i)
{
result[i] = float(p[i]);
}
}
break;
default:;
}

Expand Down

0 comments on commit debdf36

Please sign in to comment.