Skip to content

Commit

Permalink
Removed tensor name (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored Jun 30, 2021
1 parent fe74f28 commit 3fbd0ca
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions modules/arm_plugin/src/arm_converter/arm_converter_nms.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,9 @@ static void nms5(const float* boxes_data,
template<> Converter::Conversion::Ptr Converter::Convert(const opset::NonMaxSuppression& node) {
auto make = [&] (auto refFunction) {
ngraph::HostTensorVector hosts;
auto name = node.get_friendly_name();
for (auto output : node.outputs()) {
auto tensor = std::make_shared<ngraph::HostTensor>(output.get_element_type(),
output.get_partial_shape().get_max_shape(),
name);
output.get_partial_shape().get_max_shape());
hosts.push_back(tensor);
}

Expand Down

0 comments on commit 3fbd0ca

Please sign in to comment.