Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
d4c97eeb
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
d4c97eeb
编写于
8月 23, 2018
作者:
D
dolphin8
提交者:
GitHub
8月 23, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #823 from dolphin8/metal
box coder
上级
02844191
8b87a6eb
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
30 addition
and
2 deletion
+30
-2
metal/paddle-mobile/paddle-mobile/Operators/BoxcoderOp.swift
metal/paddle-mobile/paddle-mobile/Operators/BoxcoderOp.swift
+5
-0
metal/paddle-mobile/paddle-mobile/Operators/Kernels/BoxcoderKernel.swift
...bile/paddle-mobile/Operators/Kernels/BoxcoderKernel.swift
+10
-2
metal/paddle-mobile/paddle-mobile/Operators/Kernels/Kernels.metal
...ddle-mobile/paddle-mobile/Operators/Kernels/Kernels.metal
+15
-0
未找到文件。
metal/paddle-mobile/paddle-mobile/Operators/BoxcoderOp.swift
浏览文件 @
d4c97eeb
...
...
@@ -27,6 +27,11 @@ class BoxcoderParam<P: PrecisionType>: OpParam {
}
catch
let
error
{
throw
error
}
assert
(
priorBox
.
transpose
==
[
0
,
1
,
2
,
3
])
assert
(
priorBoxVar
.
transpose
==
[
0
,
1
,
2
,
3
])
assert
(
targetBox
.
transpose
==
[
0
,
1
,
2
,
3
])
assert
(
codeType
==
"decode_center_size"
)
// encode_center_size is not implemented
assert
((
targetBox
.
tensorDim
.
cout
()
==
3
)
&&
(
targetBox
.
tensorDim
[
0
]
==
1
))
// N must be 1 (only handle batch size = 1)
}
let
priorBox
:
Texture
<
P
>
let
priorBoxVar
:
Texture
<
P
>
...
...
metal/paddle-mobile/paddle-mobile/Operators/Kernels/BoxcoderKernel.swift
浏览文件 @
d4c97eeb
...
...
@@ -14,18 +14,26 @@
import
Foundation
struct
BoxcoderMetalParam
{
}
class
BoxcoderKernel
<
P
:
PrecisionType
>
:
Kernel
,
Computable
{
func
compute
(
commandBuffer
:
MTLCommandBuffer
,
param
:
BoxcoderParam
<
P
>
)
throws
{
guard
let
encoder
=
commandBuffer
.
makeComputeCommandEncoder
()
else
{
throw
PaddleMobileError
.
predictError
(
message
:
" encode is nil"
)
}
// encoder.setTexture(param.input.metalTexture, index: 0)
encoder
.
setTexture
(
param
.
output
.
metalTexture
,
index
:
1
)
encoder
.
setTexture
(
param
.
priorBox
.
metalTexture
,
index
:
0
)
encoder
.
setTexture
(
param
.
priorBoxVar
.
metalTexture
,
index
:
1
)
encoder
.
setTexture
(
param
.
targetBox
.
metalTexture
,
index
:
2
)
encoder
.
setTexture
(
param
.
output
.
metalTexture
,
index
:
3
)
var
bmp
=
BoxcoderMetalParam
.
init
()
encoder
.
setBytes
(
&
bmp
,
length
:
MemoryLayout
<
BoxcoderMetalParam
>.
size
,
index
:
0
)
encoder
.
dispatch
(
computePipline
:
pipline
,
outTexture
:
param
.
output
.
metalTexture
)
encoder
.
endEncoding
()
}
required
init
(
device
:
MTLDevice
,
param
:
BoxcoderParam
<
P
>
)
{
param
.
output
.
initTexture
(
device
:
device
)
super
.
init
(
device
:
device
,
inFunctionName
:
"priorbox"
)
}
}
metal/paddle-mobile/paddle-mobile/Operators/Kernels/Kernels.metal
浏览文件 @
d4c97eeb
...
...
@@ -477,3 +477,18 @@ kernel void concat(texture2d_array<float, access::read> in0 [[texture(0)]],
}
out.write(r, gid.xy, gid.z);
}
kernel void boxcoder(texture2d_array<float, access::read> priorBox [[texture(0)]],
texture2d_array<float, access::read> priorBoxVar [[texture(1)]],
texture2d_array<float, access::read> targetBox [[texture(2)]],
texture2d_array<float, access::write> output[[texture(3)]],
uint3 gid [[thread_position_in_grid]]) {
float4 t = targetBox.read(gid.xy, gid.z);
float4 p = priorBox.read(gid.xy, gid.z);
float4 pv = priorBoxVar.read(gid.xy, gid.z);
float ox = (p.z * pv.x * t.x + p.x) - t.z / 2;
float oy = (p.w * pv.y * t.y + p.y) - t.w / 2;
float ow = exp(pv.z * t.z) * p.z + t.z / 2;
float oh = exp(pv.w * t.w) * p.w + t.w / 2;
output.write(float4(ox, oy, ow, oh), gid.xy, gid.z);
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录