Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
f855bea8
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看板
未验证
提交
f855bea8
编写于
8月 27, 2018
作者:
R
Ruilong Liu
提交者:
GitHub
8月 27, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #839 from codeWorm2015/metal
update
上级
ac8b7b51
d403cf08
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
61 addition
and
15 deletion
+61
-15
metal/paddle-mobile/paddle-mobile/Executor.swift
metal/paddle-mobile/paddle-mobile/Executor.swift
+4
-2
metal/paddle-mobile/paddle-mobile/Operators/ConcatOp.swift
metal/paddle-mobile/paddle-mobile/Operators/ConcatOp.swift
+4
-1
metal/paddle-mobile/paddle-mobile/Operators/Kernels/metal/ReshapeKernel.metal
...paddle-mobile/Operators/Kernels/metal/ReshapeKernel.metal
+49
-12
metal/paddle-mobile/paddle-mobile/Operators/ReshapeOp.swift
metal/paddle-mobile/paddle-mobile/Operators/ReshapeOp.swift
+3
-0
metal/paddle-mobile/paddle-mobile/Operators/TransposeOp.swift
...l/paddle-mobile/paddle-mobile/Operators/TransposeOp.swift
+1
-0
未找到文件。
metal/paddle-mobile/paddle-mobile/Executor.swift
浏览文件 @
f855bea8
...
...
@@ -14,6 +14,8 @@
import
Foundation
let
testTo
=
41
public
class
ResultHolder
<
P
:
PrecisionType
>
{
public
let
dim
:
[
Int
]
public
let
resultArr
:
[
P
]
...
...
@@ -60,7 +62,7 @@ public class Executor<P: PrecisionType> {
queue
=
inQueue
for
block
in
inProgram
.
programDesc
.
blocks
{
//block.ops.count
for
i
in
0
..<
91
{
for
i
in
0
..<
(
testTo
+
1
)
{
let
op
=
block
.
ops
[
i
]
do
{
let
op
=
try
OpCreator
<
P
>.
shared
.
creat
(
device
:
inDevice
,
opDesc
:
op
,
scope
:
inProgram
.
scope
)
...
...
@@ -128,7 +130,7 @@ public class Executor<P: PrecisionType> {
}
// return
self
.
ops
[
90
]
.
delogOutput
()
self
.
ops
[
testTo
]
.
delogOutput
()
// self.ops[91].delogOutput()
// self.ops[92].delogOutput()
// self.ops[93].delogOutput()
...
...
metal/paddle-mobile/paddle-mobile/Operators/ConcatOp.swift
浏览文件 @
f855bea8
...
...
@@ -63,7 +63,10 @@ class ConcatOp<P: PrecisionType>: Operator<ConcatKernel<P>, ConcatParam<P>>, Run
return
o
}
print
(
outputArray
.
strideArray
())
// print(outputArray.strideArray())
writeToLibrary
(
fileName
:
"concat_out"
,
array
:
outputArray
)
let
device
:
MTLDevice
=
MTLCreateSystemDefaultDevice
()
!
// let tensorArray: [P] = device.texture2tensor(texture: para.output.metalTexture, dim: [1917, 4])
...
...
metal/paddle-mobile/paddle-mobile/Operators/Kernels/metal/ReshapeKernel.metal
浏览文件 @
f855bea8
...
...
@@ -47,25 +47,62 @@ 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(
ixyzn[0], ixyzn[1]), ixyzn[2])[ixyzn[3]
];
//
index2abcd(lrp.idim, index, tabcd);
//
abcd2xyzn(iC, tabcd, ixyzn);
r[n] = inTexture.read(uint2(
w, h), slice)[c
];
} else {
r[n] = 0;
}
}
outTexture.write(r, gid.xy, gid.z);
}
/*
kernel void reshape(texture2d_array<float, access::read> inTexture [[texture(0)]],
texture2d_array<float, access::write> outTexture [[texture(1)]],
constant ReshapeParam &rp [[buffer(0)]],
uint3 gid [[thread_position_in_grid]]) {
if (gid.x >= outTexture.get_width() ||
gid.y >= outTexture.get_height() ||
gid.z >= outTexture.get_array_size()) return;
int oxyzn[4] = {int(gid.x), int(gid.y), int(gid.z), 0}, oabcd[4], ixyzn[4], iabcd[4];
ReshapeParam lrp = rp;
int oC = lrp.odim[lrp.otrans[3]];
int iC = lrp.idim[lrp.itrans[3]];
int count = lrp.odim[0] * lrp.odim[1] * lrp.odim[2] * lrp.odim[3];
float4 r;
for (int n = 0; n < 4; n++) {
oxyzn[3] = n;
xyzn2abcd(oC, oxyzn, oabcd);
int tabcd[4];
invtrans(lrp.otrans, oabcd, tabcd);
int index = abcd2index(lrp.odim, tabcd);
if (index < count) {
index2abcd(lrp.idim, index, tabcd);
trans(lrp.itrans, tabcd, iabcd);
abcd2xyzn(iC, tabcd, ixyzn);
r[n] = inTexture.read(uint2(ixyzn[0], ixyzn[1]), ixyzn[2])[ixyzn[3]];
} else {
r[n] = 0;
}
}
outTexture.write(r, gid.xy, gid.z);
}
*/
//
//kernel void reshape_half(texture2d_array<half, access::read> inTexture [[texture(0)]],
// texture2d_array<half, access::write> outTexture [[texture(1)]],
...
...
metal/paddle-mobile/paddle-mobile/Operators/ReshapeOp.swift
浏览文件 @
f855bea8
...
...
@@ -55,5 +55,8 @@ class ReshapeOp<P: PrecisionType>: Operator<ReshapeKernel<P>, ReshapeParam<P>>,
// let _: P? = para.input.metalTexture.logDesc(header: "reshape input: ", stridable: false)
let
_
:
P
?
=
para
.
output
.
metalTexture
.
logDesc
(
header
:
"reshape output: "
,
stridable
:
true
)
let
deivice
=
MTLCreateSystemDefaultDevice
()
!
let
array
:
[
Float32
]
=
deivice
.
texture2tensor
(
texture
:
para
.
output
.
metalTexture
,
dim
:
[
1
,
1
,
600
,
7
])
print
(
array
.
strideArray
())
}
}
metal/paddle-mobile/paddle-mobile/Operators/TransposeOp.swift
浏览文件 @
f855bea8
...
...
@@ -60,6 +60,7 @@ class TransposeOp<P: PrecisionType>: Operator<TransposeKernel<P>, TransposeParam
}
print
(
outputArray
.
strideArray
())
// writeToLibrary(fileName: "transpose_ouput", array: outputArray)
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录