提交 a6f3846d 编写于 作者: D dangqingqing

Remove the redundant header file and make one function inlne.

上级 1d9a7e10
......@@ -13,7 +13,6 @@ See the License for the specific language governing permissions and
limitations under the License. */
#include "paddle/framework/op_registry.h"
#include "paddle/operators/math/math_function.h"
namespace paddle {
namespace operators {
......@@ -92,7 +91,7 @@ static inline void GetMaxScoreIndex(
}
template <class T>
T BBoxArea(const T* box, const bool normalized) {
static inline T BBoxArea(const T* box, const bool normalized) {
if (box[2] < box[0] || box[3] < box[1]) {
// If coordinate values are is invalid
// (e.g. xmax < xmin or ymax < ymin), return 0.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册