Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【Hackathon 6th Fundable Projects 3 No.246、247】Remove fluid operator multiclass_nms #63261

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions paddle/fluid/framework/op_compatible_info.cc
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@ void OpCompatibleMap::InitOpCompatibleMap() {
OpCompatibleType::definite_not};
op_compatible_map_["match_matrix_tensor"] = {"1.6.0",
OpCompatibleType::definite_not};
op_compatible_map_["multiclass_nms2"] = {"1.6.0",
OpCompatibleType::definite_not};
op_compatible_map_["one_hot_v2"] = {"1.6.0", OpCompatibleType::definite_not};
op_compatible_map_["pull_box_sparse"] = {"1.6.0",
OpCompatibleType::definite_not};
Expand Down
1 change: 0 additions & 1 deletion paddle/fluid/inference/api/analysis_predictor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3294,7 +3294,6 @@ USE_TRT_CONVERTER(arg_max);
USE_TRT_CONVERTER(arg_min);
USE_TRT_CONVERTER(roi_align);
USE_TRT_CONVERTER(affine_channel);
USE_TRT_CONVERTER(multiclass_nms);
USE_TRT_CONVERTER(multiclass_nms3);
USE_TRT_CONVERTER(nearest_interp);
USE_TRT_CONVERTER(nearest_interp_v2);
Expand Down
1 change: 0 additions & 1 deletion paddle/fluid/inference/tensorrt/convert/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ list(
arg_min_op.cc
roi_align_op.cc
affine_channel_op.cc
multiclass_nms_op.cc
multiclass_nms3_op.cc
nearest_interp_op.cc
reshape_op.cc
Expand Down
163 changes: 0 additions & 163 deletions paddle/fluid/inference/tensorrt/convert/multiclass_nms_op.cc

This file was deleted.

1 change: 0 additions & 1 deletion paddle/fluid/operators/detection/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ detection_library(polygon_box_transform_op SRCS polygon_box_transform_op.cc
polygon_box_transform_op.cu)
detection_library(generate_proposal_labels_op SRCS
generate_proposal_labels_op.cc)
detection_library(multiclass_nms_op SRCS multiclass_nms_op.cc DEPS phi common)
detection_library(box_clip_op SRCS box_clip_op.cc box_clip_op.cu)
detection_library(box_decoder_and_assign_op SRCS box_decoder_and_assign_op.cc
box_decoder_and_assign_op.cu)
Expand Down
Loading