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

Added support for deform_conv operation #28740

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update ops_bridge.cpp
Added support for deform_conv
  • Loading branch information
darksapien23151 authored Jan 30, 2025
commit bce3c9e0d4d36decd7b016876d87636e8176be6b
5 changes: 5 additions & 0 deletions src/frontends/onnx/frontend/src/ops_bridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
//

#include "ops_bridge.hpp"
#include "deform_conv.hpp"

#include <functional>
#include <iterator>
Expand Down Expand Up @@ -216,8 +217,12 @@ OperatorsBridge::OperatorsBridge() {
}
}
// custom ops
// Register the DeformConv-19 and DeformConv-22 operations for ONNX frontend
m_map[""]["DeformConv"].emplace(19, std::bind(op::DeformConv, std::placeholders::_1));
m_map[""]["DeformConv"].emplace(22, std::bind(op::DeformConv, std::placeholders::_1));
}


#undef REGISTER_OPERATOR
#undef REGISTER_OPERATOR_WITH_DOMAIN
} // namespace onnx
Expand Down