Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
d6aa0d43
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
d6aa0d43
编写于
12月 05, 2022
作者:
N
Netpunk
提交者:
GitHub
12月 05, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PHI decoupling] migrate poly_util.h to phi (#48499)
* rm poly_util.h * format code * fix some problems * format code
上级
cee7a3db
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
14 addition
and
17 deletion
+14
-17
paddle/phi/kernels/funcs/detection/nms_util.h
paddle/phi/kernels/funcs/detection/nms_util.h
+4
-4
paddle/phi/kernels/funcs/detection/poly_util.cc
paddle/phi/kernels/funcs/detection/poly_util.cc
+5
-7
paddle/phi/kernels/funcs/detection/poly_util.h
paddle/phi/kernels/funcs/detection/poly_util.h
+5
-6
未找到文件。
paddle/phi/kernels/funcs/detection/nms_util.h
浏览文件 @
d6aa0d43
...
...
@@ -17,9 +17,9 @@ limitations under the License. */
#include <utility>
#include <vector>
#include "paddle/fluid/operators/detection/poly_util.h"
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/device_context.h"
#include "paddle/phi/kernels/funcs/detection/poly_util.h"
namespace
phi
{
namespace
funcs
{
...
...
@@ -96,10 +96,10 @@ T PolyIoU(const T* box1,
const
T
*
box2
,
const
size_t
box_size
,
const
bool
normalized
)
{
T
bbox1_area
=
p
addle
::
operator
s
::
PolyArea
<
T
>
(
box1
,
box_size
,
normalized
);
T
bbox2_area
=
p
addle
::
operator
s
::
PolyArea
<
T
>
(
box2
,
box_size
,
normalized
);
T
bbox1_area
=
p
hi
::
func
s
::
PolyArea
<
T
>
(
box1
,
box_size
,
normalized
);
T
bbox2_area
=
p
hi
::
func
s
::
PolyArea
<
T
>
(
box2
,
box_size
,
normalized
);
T
inter_area
=
p
addle
::
operator
s
::
PolyOverlapArea
<
T
>
(
box1
,
box2
,
box_size
,
normalized
);
p
hi
::
func
s
::
PolyOverlapArea
<
T
>
(
box1
,
box2
,
box_size
,
normalized
);
if
(
bbox1_area
==
0
||
bbox2_area
==
0
||
inter_area
==
0
)
{
// If coordinate values are invalid
// if area size <= 0, return 0.
...
...
paddle/
fluid/operator
s/detection/poly_util.cc
→
paddle/
phi/kernels/func
s/detection/poly_util.cc
浏览文件 @
d6aa0d43
...
...
@@ -14,12 +14,10 @@ limitations under the License. */
#ifndef POLY_UTIL_CC_
#define POLY_UTIL_CC_
#include "paddle/
fluid/operator
s/detection/poly_util.h"
#include "paddle/
phi/kernels/func
s/detection/poly_util.h"
#include "paddle/fluid/framework/op_registry.h"
namespace
paddle
{
namespace
operators
{
namespace
phi
{
namespace
funcs
{
using
phi
::
funcs
::
gpc_free_polygon
;
using
phi
::
funcs
::
gpc_polygon_clip
;
...
...
@@ -134,7 +132,7 @@ T PolyOverlapArea(const T* box1,
return
inter_area
;
}
}
// namespace
operator
s
}
// namespace p
addle
}
// namespace
func
s
}
// namespace p
hi
#endif
paddle/
fluid/operator
s/detection/poly_util.h
→
paddle/
phi/kernels/func
s/detection/poly_util.h
浏览文件 @
d6aa0d43
...
...
@@ -15,11 +15,10 @@ limitations under the License. */
#include <vector>
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/phi/kernels/funcs/gpc.h"
namespace
p
addle
{
namespace
operator
s
{
namespace
p
hi
{
namespace
func
s
{
template
<
class
T
>
class
Point_
{
...
...
@@ -70,7 +69,7 @@ T PolyOverlapArea(const T* box1,
const
T
*
box2
,
const
size_t
box_size
,
const
bool
normalized
);
}
// namespace
operator
s
}
// namespace p
addle
}
// namespace
func
s
}
// namespace p
hi
#include "paddle/
fluid/operator
s/detection/poly_util.cc"
#include "paddle/
phi/kernels/func
s/detection/poly_util.cc"
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录