Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
ac8b7b51
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看板
未验证
提交
ac8b7b51
编写于
8月 27, 2018
作者:
R
Ruilong Liu
提交者:
GitHub
8月 27, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #838 from codeWorm2015/metal
commit
上级
b602b048
77595b42
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
22 addition
and
21 deletion
+22
-21
metal/paddle-mobile/paddle-mobile/Common/Extensions.swift
metal/paddle-mobile/paddle-mobile/Common/Extensions.swift
+4
-4
metal/paddle-mobile/paddle-mobile/Executor.swift
metal/paddle-mobile/paddle-mobile/Executor.swift
+2
-2
metal/paddle-mobile/paddle-mobile/Operators/ConcatOp.swift
metal/paddle-mobile/paddle-mobile/Operators/ConcatOp.swift
+1
-0
metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvAddKernel.swift
...obile/paddle-mobile/Operators/Kernels/ConvAddKernel.swift
+1
-1
metal/paddle-mobile/paddle-mobile/Operators/Kernels/metal/ReshapeKernel.metal
...paddle-mobile/Operators/Kernels/metal/ReshapeKernel.metal
+12
-13
metal/paddle-mobile/paddle-mobile/Operators/ReshapeOp.swift
metal/paddle-mobile/paddle-mobile/Operators/ReshapeOp.swift
+2
-1
未找到文件。
metal/paddle-mobile/paddle-mobile/Common/Extensions.swift
浏览文件 @
ac8b7b51
...
...
@@ -98,14 +98,14 @@ extension Array where Element: Comparable{
}
extension
Array
{
func
strideArray
(
inCount
:
Int
=
20
)
->
Array
<
Element
>
{
func
strideArray
(
inCount
:
Int
=
20
)
->
[(
Int
,
Element
)]
{
if
count
<
inCount
{
return
self
return
(
0
..<
count
)
.
map
{
(
$0
,
self
[
$0
])
}
}
else
{
let
stride
=
count
/
inCount
var
newArray
:
[
Element
]
=
[]
var
newArray
:
[
(
Int
,
Element
)
]
=
[]
for
i
in
0
..<
inCount
{
newArray
.
append
(
self
[
i
*
stride
]
)
newArray
.
append
(
(
i
*
stride
,
self
[
i
*
stride
])
)
}
return
newArray
}
...
...
metal/paddle-mobile/paddle-mobile/Executor.swift
浏览文件 @
ac8b7b51
...
...
@@ -60,7 +60,7 @@ public class Executor<P: PrecisionType> {
queue
=
inQueue
for
block
in
inProgram
.
programDesc
.
blocks
{
//block.ops.count
for
i
in
0
..<
39
{
for
i
in
0
..<
91
{
let
op
=
block
.
ops
[
i
]
do
{
let
op
=
try
OpCreator
<
P
>.
shared
.
creat
(
device
:
inDevice
,
opDesc
:
op
,
scope
:
inProgram
.
scope
)
...
...
@@ -128,7 +128,7 @@ public class Executor<P: PrecisionType> {
}
// return
self
.
ops
[
38
]
.
delogOutput
()
self
.
ops
[
90
]
.
delogOutput
()
// self.ops[91].delogOutput()
// self.ops[92].delogOutput()
// self.ops[93].delogOutput()
...
...
metal/paddle-mobile/paddle-mobile/Operators/ConcatOp.swift
浏览文件 @
ac8b7b51
...
...
@@ -62,6 +62,7 @@ class ConcatOp<P: PrecisionType>: Operator<ConcatKernel<P>, ConcatParam<P>>, Run
let
outputArray
=
para
.
output
.
metalTexture
.
floatArray
{
(
o
:
Float32
)
->
Float32
in
return
o
}
print
(
outputArray
.
strideArray
())
let
device
:
MTLDevice
=
MTLCreateSystemDefaultDevice
()
!
...
...
metal/paddle-mobile/paddle-mobile/Operators/Kernels/ConvAddKernel.swift
浏览文件 @
ac8b7b51
...
...
@@ -25,7 +25,7 @@ class ConvAddKernel<P: PrecisionType>: Kernel, Computable {
super
.
init
(
device
:
device
,
inFunctionName
:
"conv_add_3x3"
)
}
param
.
output
.
initTexture
(
device
:
device
,
inTranspose
:
[
0
,
3
,
2
,
1
])
param
.
output
.
initTexture
(
device
:
device
,
inTranspose
:
[
0
,
2
,
3
,
1
])
let
offsetX
=
param
.
filter
.
width
/
2
-
Int
(
param
.
paddings
[
0
])
let
offsetY
=
param
.
filter
.
height
/
2
-
Int
(
param
.
paddings
[
1
])
...
...
metal/paddle-mobile/paddle-mobile/Operators/Kernels/metal/ReshapeKernel.metal
浏览文件 @
ac8b7b51
...
...
@@ -47,20 +47,19 @@ kernel void reshape(texture2d_array<float, access::read> inTexture [[texture(0)]
invtrans(lrp.otrans, oabcd, tabcd);
int index = abcd2index(lrp.odim, tabcd);
if (index < count) {
int c = index % 4;
int temp0 = index % (inTexture.get_array_size() * 4);
int slice = temp0 / 4;
int temp1 = index % (inTexture.get_array_size() * 4 * lrp.idim[2]);
int w = temp1 / (inTexture.get_array_size() * 4);
int h = index / (inTexture.get_array_size() * 4 * lrp.idim[2]);
// int c = index % 4;
//
// int temp0 = index % (inTexture.get_array_size() * 4);
// int slice = temp0 / 4;
//
// int temp1 = index % (inTexture.get_array_size() * 4 * lrp.idim[2]);
// int w = temp1 / (inTexture.get_array_size() * 4);
//
// int h = index / (inTexture.get_array_size() * 4 * lrp.idim[2]);
//
index2abcd(lrp.idim, index, tabcd);
//
abcd2xyzn(iC, tabcd, ixyzn);
r[n] = inTexture.read(uint2(
w, h), slice)[c
];
index2abcd(lrp.idim, index, tabcd);
abcd2xyzn(iC, tabcd, ixyzn);
r[n] = inTexture.read(uint2(
ixyzn[0], ixyzn[1]), ixyzn[2])[ixyzn[3]
];
} else {
r[n] = 0;
}
...
...
metal/paddle-mobile/paddle-mobile/Operators/ReshapeOp.swift
浏览文件 @
ac8b7b51
...
...
@@ -53,6 +53,7 @@ class ReshapeOp<P: PrecisionType>: Operator<ReshapeKernel<P>, ReshapeParam<P>>,
func
delogOutput
()
{
print
(
"reshape delog"
)
// let _: P? = para.input.metalTexture.logDesc(header: "reshape input: ", stridable: false)
let
_
:
P
?
=
para
.
output
.
metalTexture
.
logDesc
(
header
:
"reshape output: "
,
stridable
:
false
)
let
_
:
P
?
=
para
.
output
.
metalTexture
.
logDesc
(
header
:
"reshape output: "
,
stridable
:
true
)
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录