Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
64a7b3c4
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看板
提交
64a7b3c4
编写于
6月 27, 2018
作者:
L
liuruilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add infer shape of metal
上级
3a756f87
变更
20
隐藏空白更改
内联
并排
Showing
20 changed file
with
208 addition
and
54 deletion
+208
-54
metal/paddle-mobile-demo/paddle-mobile-demo.xcodeproj/xcuserdata/liuruilong.xcuserdatad/xcschemes/xcschememanagement.plist
...liuruilong.xcuserdatad/xcschemes/xcschememanagement.plist
+1
-1
metal/paddle-mobile-demo/paddle-mobile-demo/ViewController.swift
...addle-mobile-demo/paddle-mobile-demo/ViewController.swift
+3
-2
metal/paddle-mobile/paddle-mobile.xcodeproj/project.pbxproj
metal/paddle-mobile/paddle-mobile.xcodeproj/project.pbxproj
+18
-2
metal/paddle-mobile/paddle-mobile.xcodeproj/xcuserdata/liuruilong.xcuserdatad/xcschemes/xcschememanagement.plist
...liuruilong.xcuserdatad/xcschemes/xcschememanagement.plist
+1
-1
metal/paddle-mobile/paddle-mobile/Common/Types.swift
metal/paddle-mobile/paddle-mobile/Common/Types.swift
+2
-2
metal/paddle-mobile/paddle-mobile/Executor.swift
metal/paddle-mobile/paddle-mobile/Executor.swift
+14
-10
metal/paddle-mobile/paddle-mobile/Loader.swift
metal/paddle-mobile/paddle-mobile/Loader.swift
+32
-4
metal/paddle-mobile/paddle-mobile/Operators/Base/OpParam.swift
.../paddle-mobile/paddle-mobile/Operators/Base/OpParam.swift
+0
-0
metal/paddle-mobile/paddle-mobile/Operators/Base/Operator.swift
...paddle-mobile/paddle-mobile/Operators/Base/Operator.swift
+6
-2
metal/paddle-mobile/paddle-mobile/Operators/BatchNormOp.swift
...l/paddle-mobile/paddle-mobile/Operators/BatchNormOp.swift
+8
-5
metal/paddle-mobile/paddle-mobile/Operators/ConvOp.swift
metal/paddle-mobile/paddle-mobile/Operators/ConvOp.swift
+22
-1
metal/paddle-mobile/paddle-mobile/Operators/ElementwiseAddOp.swift
...dle-mobile/paddle-mobile/Operators/ElementwiseAddOp.swift
+10
-5
metal/paddle-mobile/paddle-mobile/Operators/FeedOp.swift
metal/paddle-mobile/paddle-mobile/Operators/FeedOp.swift
+15
-2
metal/paddle-mobile/paddle-mobile/Operators/FetchOp.swift
metal/paddle-mobile/paddle-mobile/Operators/FetchOp.swift
+15
-3
metal/paddle-mobile/paddle-mobile/Operators/ReluOp.swift
metal/paddle-mobile/paddle-mobile/Operators/ReluOp.swift
+10
-5
metal/paddle-mobile/paddle-mobile/Program/Program.swift
metal/paddle-mobile/paddle-mobile/Program/Program.swift
+5
-1
metal/paddle-mobile/paddle-mobile/Program/Scope.swift
metal/paddle-mobile/paddle-mobile/Program/Scope.swift
+7
-1
metal/paddle-mobile/paddle-mobile/framework/Dim.swift
metal/paddle-mobile/paddle-mobile/framework/Dim.swift
+1
-1
metal/paddle-mobile/paddle-mobile/framework/Tensor.swift
metal/paddle-mobile/paddle-mobile/framework/Tensor.swift
+20
-5
metal/paddle-mobile/paddle-mobile/framework/Texture.swift
metal/paddle-mobile/paddle-mobile/framework/Texture.swift
+18
-1
未找到文件。
metal/paddle-mobile-demo/paddle-mobile-demo.xcodeproj/xcuserdata/liuruilong.xcuserdatad/xcschemes/xcschememanagement.plist
浏览文件 @
64a7b3c4
...
...
@@ -7,7 +7,7 @@
<key>
paddle-mobile-demo.xcscheme
</key>
<dict>
<key>
orderHint
</key>
<integer>
4
</integer>
<integer>
3
</integer>
</dict>
</dict>
</dict>
...
...
metal/paddle-mobile-demo/paddle-mobile-demo/ViewController.swift
浏览文件 @
64a7b3c4
...
...
@@ -24,8 +24,9 @@ class ViewController: UIViewController {
let
modelPath
=
Bundle
.
main
.
path
(
forResource
:
"model"
,
ofType
:
nil
)
?
!
"model null"
let
paraPath
=
Bundle
.
main
.
path
(
forResource
:
"params"
,
ofType
:
nil
)
?
!
"para null"
let
program
=
try
loader
.
load
(
modelPath
:
modelPath
,
paraPath
:
paraPath
)
let
executor
=
try
Executor
<
Float
>.
init
(
program
:
program
)
executor
.
predict
()
let
executor
=
try
Executor
<
Float
>.
init
(
inProgram
:
program
)
let
output
=
try
executor
.
predict
(
input
:
Texture
.
init
())
print
(
output
)
}
catch
let
error
{
print
(
error
)
}
...
...
metal/paddle-mobile/paddle-mobile.xcodeproj/project.pbxproj
浏览文件 @
64a7b3c4
...
...
@@ -155,12 +155,12 @@
FC039BA320E11CBC0081E9F8
/* Operators */
=
{
isa
=
PBXGroup
;
children
=
(
FCD592FA20E248EC00252966
/* Base */
,
FCD592F920E248EC00252966
/* Kernels */
,
FC039BA420E11CBC0081E9F8
/* ConvOp.swift */
,
FC039BA520E11CBC0081E9F8
/* ElementwiseAddOp.swift */
,
FC039BA620E11CBC0081E9F8
/* Operator.swift */
,
FC039BA720E11CBC0081E9F8
/* BatchNormOp.swift */
,
FC039BA820E11CBC0081E9F8
/* ReluOp.swift */
,
FC9D037820E229E4000F735A
/* OpParam.swift */
,
FC9D037F20E22FBB000F735A
/* FeedOp.swift */
,
FC9D038120E2312E000F735A
/* FetchOp.swift */
,
);
...
...
@@ -183,6 +183,22 @@
path
=
Program
;
sourceTree
=
"<group>"
;
};
FCD592F920E248EC00252966
/* Kernels */
=
{
isa
=
PBXGroup
;
children
=
(
);
path
=
Kernels
;
sourceTree
=
"<group>"
;
};
FCD592FA20E248EC00252966
/* Base */
=
{
isa
=
PBXGroup
;
children
=
(
FC9D037820E229E4000F735A
/* OpParam.swift */
,
FC039BA620E11CBC0081E9F8
/* Operator.swift */
,
);
path
=
Base
;
sourceTree
=
"<group>"
;
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
...
...
metal/paddle-mobile/paddle-mobile.xcodeproj/xcuserdata/liuruilong.xcuserdatad/xcschemes/xcschememanagement.plist
浏览文件 @
64a7b3c4
...
...
@@ -7,7 +7,7 @@
<key>
paddle-mobile.xcscheme
</key>
<dict>
<key>
orderHint
</key>
<integer>
3
</integer>
<integer>
4
</integer>
</dict>
</dict>
</dict>
...
...
metal/paddle-mobile/paddle-mobile/Common/Types.swift
浏览文件 @
64a7b3c4
...
...
@@ -60,7 +60,7 @@ class OpCreator<P: PrecisionType> {
}
}
func
creat
(
opDesc
:
OpDesc
,
scope
:
Scope
)
throws
->
Runable
{
func
creat
(
opDesc
:
OpDesc
,
scope
:
Scope
)
throws
->
Runable
&
InferShaperable
{
guard
let
opCreator
=
opCreators
[
opDesc
.
type
]
else
{
throw
PaddleMobileError
.
opError
(
message
:
"there is no "
+
opDesc
.
type
+
" yet"
)
}
...
...
@@ -72,7 +72,7 @@ class OpCreator<P: PrecisionType> {
}
}
let
opCreators
:
[
String
:
(
OpDesc
,
Scope
)
throws
->
Runable
]
=
let
opCreators
:
[
String
:
(
OpDesc
,
Scope
)
throws
->
Runable
&
InferShaperable
]
=
[
gConvType
:
ConvOp
<
P
>.
creat
,
gBatchNormType
:
BatchNormOp
<
P
>.
creat
,
gReluType
:
ReluOp
<
P
>.
creat
,
...
...
metal/paddle-mobile/paddle-mobile/Executor.swift
浏览文件 @
64a7b3c4
...
...
@@ -15,17 +15,15 @@
import
Foundation
public
class
Executor
<
P
:
PrecisionType
>
{
var
ops
:
[
Runable
]
=
[]
public
init
(
program
:
Program
)
throws
{
for
block
in
program
.
programDesc
.
blocks
{
for
varDesc
in
block
.
vars
{
if
!
varDesc
.
persistable
{
program
.
scope
.
vars
[
varDesc
.
name
]
=
Texture
.
init
()
}
}
var
ops
:
[
Runable
&
InferShaperable
]
=
[]
let
program
:
Program
public
init
(
inProgram
:
Program
)
throws
{
program
=
inProgram
for
block
in
inProgram
.
programDesc
.
blocks
{
for
op
in
block
.
ops
{
do
{
let
op
=
try
OpCreator
<
P
>.
shared
.
creat
(
opDesc
:
op
,
scope
:
program
.
scope
)
let
op
=
try
OpCreator
<
P
>.
shared
.
creat
(
opDesc
:
op
,
scope
:
inProgram
.
scope
)
op
.
inferShape
()
ops
.
append
(
op
)
}
catch
let
error
{
throw
error
...
...
@@ -34,10 +32,16 @@ public class Executor<P: PrecisionType> {
}
}
public
func
predict
()
{
public
func
predict
(
input
:
Texture
)
throws
->
Texture
{
program
.
scope
[
program
.
feedKey
]
=
input
for
op
in
ops
{
op
.
run
()
}
let
outputVar
=
program
.
scope
[
program
.
fetchKey
]
guard
let
output
=
outputVar
as?
Texture
else
{
throw
PaddleMobileError
.
netError
(
message
:
"output var type error"
)
}
return
output
}
}
...
...
metal/paddle-mobile/paddle-mobile/Loader.swift
浏览文件 @
64a7b3c4
...
...
@@ -156,14 +156,20 @@ public class Loader<P: PrecisionType> {
let
protoProgram
=
try
PaddleMobile_Framework_Proto_ProgramDesc
.
init
(
serializedData
:
modelData
)
let
scope
=
Scope
.
init
()
let
program
=
Program
.
init
(
protoProgramDesc
:
protoProgram
,
inParamPath
:
paraPath
,
inScope
:
scope
)
let
program
Desc
=
ProgramDesc
.
init
(
protoProgram
:
protoProgram
)
guard
let
paraLoader
=
try
?
ParaLoader
.
init
(
paramPath
:
paraPath
)
else
{
throw
PaddleMobileError
.
loaderError
(
message
:
"load para error"
)
}
for
block
in
program
.
programDesc
.
blocks
{
guard
programDesc
.
blocks
.
count
>
0
else
{
throw
PaddleMobileError
.
loaderError
(
message
:
"count of blocks must greater than 0"
)
}
for
block
in
programDesc
.
blocks
{
for
varDesc
in
block
.
vars
{
print
(
varDesc
.
name
+
"
\(
varDesc
.
persistable
)
"
)
if
(
varDesc
.
type
==
.
LodTensor
)
{
if
(
varDesc
.
persistable
&&
varDesc
.
type
!=
.
FeedMiniBatch
...
...
@@ -192,11 +198,33 @@ public class Loader<P: PrecisionType> {
}
paraData
.
convert
(
to
:
.
NHWC
)
let
tensor
=
Tensor
<
P
>.
init
(
inData
:
paraData
)
scope
.
vars
[
varDesc
.
name
]
=
tensor
scope
[
varDesc
.
name
]
=
tensor
}
else
{
scope
[
varDesc
.
name
]
=
Texture
.
init
()
}
}
else
{
scope
[
varDesc
.
name
]
=
Texture
.
init
()
}
}
}
let
block
=
programDesc
.
blocks
[
0
]
guard
let
firstOp
=
block
.
ops
.
first
,
let
lastOp
=
block
.
ops
.
last
else
{
throw
PaddleMobileError
.
loaderError
(
message
:
"at least two operator"
)
}
guard
firstOp
.
type
==
gFeedType
,
lastOp
.
type
==
gFetchType
else
{
throw
PaddleMobileError
.
loaderError
(
message
:
"the first op is not feed or the last op is not fetch"
)
}
guard
let
inputKey
=
opInfos
[
gFeedType
]?
.
inputs
.
first
,
let
outKey
=
opInfos
[
gFetchType
]?
.
outputs
.
first
else
{
throw
PaddleMobileError
.
loaderError
(
message
:
"the feed input key or fetch output key not found"
)
}
guard
let
feedKey
=
firstOp
.
inputs
[
inputKey
]?
.
first
,
let
fetchKey
=
lastOp
.
outputs
[
outKey
]?
.
first
else
{
throw
PaddleMobileError
.
loaderError
(
message
:
"feed key or fetch key not found"
)
}
let
program
=
Program
.
init
(
protoProgramDesc
:
protoProgram
,
inParamPath
:
paraPath
,
inScope
:
scope
,
inFeedKey
:
feedKey
,
inFetchKey
:
fetchKey
)
return
program
}
catch
_
{
throw
PaddleMobileError
.
loaderError
(
message
:
"protobuf decoder error"
)
...
...
metal/paddle-mobile/paddle-mobile/Operators/OpParam.swift
→
metal/paddle-mobile/paddle-mobile/Operators/
Base/
OpParam.swift
浏览文件 @
64a7b3c4
文件已移动
metal/paddle-mobile/paddle-mobile/Operators/Operator.swift
→
metal/paddle-mobile/paddle-mobile/Operators/
Base/
Operator.swift
浏览文件 @
64a7b3c4
...
...
@@ -14,7 +14,6 @@
import
Foundation
protocol
Runable
{
func
run
()
func
runImpl
()
...
...
@@ -27,7 +26,7 @@ extension Runable where Self: OperatorProtocol{
}
protocol
Creator
where
Self
:
OperatorProtocol
{
associatedtype
OpType
:
OperatorProtocol
associatedtype
OpType
:
OperatorProtocol
&
Runable
&
InferShaperable
static
func
creat
(
opDesc
:
OpDesc
,
inScope
:
Scope
)
throws
->
OpType
}
...
...
@@ -41,6 +40,11 @@ extension Creator where Self: OperatorProtocol {
}
}
protocol
InferShaperable
{
func
inferShape
()
}
protocol
OperatorProtocol
{
associatedtype
ParamType
:
OpParam
var
type
:
String
{
get
}
...
...
metal/paddle-mobile/paddle-mobile/Operators/BatchNormOp.swift
浏览文件 @
64a7b3c4
...
...
@@ -18,8 +18,8 @@ struct BatchNormParam<P: PrecisionType>: OpParam {
typealias
ParamPrecisionType
=
P
init
(
opDesc
:
OpDesc
,
scope
:
Scope
)
throws
{
do
{
input
X
=
try
BatchNormParam
.
inputX
(
inputs
:
opDesc
.
inputs
,
from
:
scope
)
output
Y
=
try
BatchNormParam
.
outputY
(
outputs
:
opDesc
.
outputs
,
from
:
scope
)
input
=
try
BatchNormParam
.
inputX
(
inputs
:
opDesc
.
inputs
,
from
:
scope
)
output
=
try
BatchNormParam
.
outputY
(
outputs
:
opDesc
.
outputs
,
from
:
scope
)
inputBias
=
try
BatchNormParam
.
inputBiase
(
inputs
:
opDesc
.
paraInputs
,
from
:
scope
)
inputMean
=
try
BatchNormParam
.
inputMean
(
inputs
:
opDesc
.
paraInputs
,
from
:
scope
)
inputScale
=
try
BatchNormParam
.
inputScale
(
inputs
:
opDesc
.
paraInputs
,
from
:
scope
)
...
...
@@ -31,8 +31,8 @@ struct BatchNormParam<P: PrecisionType>: OpParam {
throw
error
}
}
let
input
X
:
Texture
let
output
Y
:
Texture
let
input
:
Texture
let
output
:
Texture
let
inputBias
:
Tensor
<
ParamPrecisionType
>
let
inputMean
:
Tensor
<
ParamPrecisionType
>
let
inputScale
:
Tensor
<
ParamPrecisionType
>
...
...
@@ -42,7 +42,10 @@ struct BatchNormParam<P: PrecisionType>: OpParam {
let
is_test
:
Bool
}
class
BatchNormOp
<
P
:
PrecisionType
>
:
Operator
<
BatchNormParam
<
P
>>
,
Runable
,
Creator
{
class
BatchNormOp
<
P
:
PrecisionType
>
:
Operator
<
BatchNormParam
<
P
>>
,
Runable
,
Creator
,
InferShaperable
{
func
inferShape
()
{
para
.
output
.
dim
=
para
.
input
.
dim
}
typealias
OpType
=
BatchNormOp
<
P
>
func
runImpl
()
{
print
(
"this is BatchNormOp"
)
...
...
metal/paddle-mobile/paddle-mobile/Operators/ConvOp.swift
浏览文件 @
64a7b3c4
...
...
@@ -39,7 +39,28 @@ struct ConvParam<P: PrecisionType>: OpParam {
let
groups
:
Int
}
class
ConvOp
<
P
:
PrecisionType
>
:
Operator
<
ConvParam
<
P
>>
,
Runable
,
Creator
{
class
ConvOp
<
P
:
PrecisionType
>
:
Operator
<
ConvParam
<
P
>>
,
Runable
,
Creator
,
InferShaperable
{
func
inferShape
()
{
// let inDims = para.input.dim
// let filterDim = para.filter.dim
// let strides = para.stride
// let paddings = para.paddings
// let dilations = para.dilations
//
// var outDim = [inDims[0]]
// for i in 0..<strides.count {
// let dilation: Int = Int(dilations[i])
// let filterSize: Int = filterDim[i + 1]
// let inputSize: Int = inDims[i + 1]
// let padding: Int = Int(paddings[i])
// let stride: Int = Int(strides[i])
// let dKernel = dilation * (filterSize - 1) + 1
// let outputSize = (inputSize + 2 * padding - dKernel) / stride + 1
// outDim.append(outputSize)
// }
// outDim.append(filterDim[0])
}
typealias
OpType
=
ConvOp
<
P
>
func
runImpl
()
{
print
(
"this is conv"
)
...
...
metal/paddle-mobile/paddle-mobile/Operators/ElementwiseAddOp.swift
浏览文件 @
64a7b3c4
...
...
@@ -18,21 +18,26 @@ struct ElementwiseAddParam<P: PrecisionType>: OpParam {
typealias
ParamPrecisionType
=
P
init
(
opDesc
:
OpDesc
,
scope
:
Scope
)
throws
{
do
{
input
X
=
try
ElementwiseAddParam
.
inputX
(
inputs
:
opDesc
.
inputs
,
from
:
scope
)
input
=
try
ElementwiseAddParam
.
inputX
(
inputs
:
opDesc
.
inputs
,
from
:
scope
)
inputY
=
try
ElementwiseAddParam
.
inputY
(
inputs
:
opDesc
.
inputs
,
from
:
scope
)
out
=
try
ElementwiseAddParam
.
outputOut
(
outputs
:
opDesc
.
outputs
,
from
:
scope
)
out
put
=
try
ElementwiseAddParam
.
outputOut
(
outputs
:
opDesc
.
outputs
,
from
:
scope
)
axis
=
try
ElementwiseAddParam
.
getAttr
(
key
:
"axis"
,
attrs
:
opDesc
.
attrs
)
}
catch
let
error
{
throw
error
}
}
let
input
X
:
Texture
let
input
:
Texture
let
inputY
:
Tensor
<
P
>
let
out
:
Texture
let
out
put
:
Texture
let
axis
:
Int
}
class
ElementwiseAddOp
<
P
:
PrecisionType
>
:
Operator
<
ElementwiseAddParam
<
P
>>
,
Runable
,
Creator
{
class
ElementwiseAddOp
<
P
:
PrecisionType
>
:
Operator
<
ElementwiseAddParam
<
P
>>
,
Runable
,
Creator
,
InferShaperable
{
func
inferShape
()
{
para
.
output
.
dim
=
para
.
input
.
dim
}
typealias
OpType
=
ElementwiseAddOp
<
P
>
func
runImpl
()
{
print
(
"this is ElementwiseAddOp"
)
...
...
metal/paddle-mobile/paddle-mobile/Operators/FeedOp.swift
浏览文件 @
64a7b3c4
...
...
@@ -15,15 +15,28 @@
import
Foundation
struct
FeedParam
<
P
:
PrecisionType
>
:
OpParam
{
var
output
:
Texture
var
input
:
Texture
init
(
opDesc
:
OpDesc
,
scope
:
Scope
)
throws
{
do
{
input
=
try
FeedParam
.
inputX
(
inputs
:
opDesc
.
inputs
,
from
:
scope
)
output
=
try
FeedParam
.
outputOut
(
outputs
:
opDesc
.
outputs
,
from
:
scope
)
}
catch
let
error
{
throw
error
}
}
typealias
ParamPrecisionType
=
P
}
class
FeedOp
<
P
:
PrecisionType
>
:
Operator
<
FeedParam
<
P
>>
,
Runable
,
Creator
{
class
FeedOp
<
P
:
PrecisionType
>
:
Operator
<
FeedParam
<
P
>>
,
Runable
,
Creator
,
InferShaperable
{
typealias
OpType
=
FeedOp
<
P
>
func
inferShape
()
{
para
.
output
.
dim
=
para
.
input
.
dim
}
func
runImpl
()
{
print
(
"feed op"
)
}
...
...
metal/paddle-mobile/paddle-mobile/Operators/FetchOp.swift
浏览文件 @
64a7b3c4
...
...
@@ -15,17 +15,29 @@
import
Foundation
struct
FetchParam
<
P
:
PrecisionType
>
:
OpParam
{
var
input
:
Texture
var
output
:
Texture
init
(
opDesc
:
OpDesc
,
scope
:
Scope
)
throws
{
do
{
input
=
try
FetchParam
.
inputX
(
inputs
:
opDesc
.
inputs
,
from
:
scope
)
output
=
try
FetchParam
.
outputOut
(
outputs
:
opDesc
.
outputs
,
from
:
scope
)
}
catch
let
error
{
throw
error
}
}
typealias
ParamPrecisionType
=
P
}
class
FetchOp
<
P
:
PrecisionType
>
:
Operator
<
FetchParam
<
P
>>
,
Runable
,
Creator
{
class
FetchOp
<
P
:
PrecisionType
>
:
Operator
<
FetchParam
<
P
>>
,
Runable
,
Creator
,
InferShaperable
{
func
inferShape
()
{
para
.
output
.
dim
=
para
.
input
.
dim
}
typealias
OpType
=
FetchOp
<
P
>
func
runImpl
()
{
print
(
"fe
ed
op"
)
print
(
"fe
tch
op"
)
}
}
metal/paddle-mobile/paddle-mobile/Operators/ReluOp.swift
浏览文件 @
64a7b3c4
...
...
@@ -18,17 +18,22 @@ struct ReluParam<P: PrecisionType>: OpParam {
typealias
ParamPrecisionType
=
P
init
(
opDesc
:
OpDesc
,
scope
:
Scope
)
throws
{
do
{
input
X
=
try
ReluParam
.
inputX
(
inputs
:
opDesc
.
inputs
,
from
:
scope
)
out
=
try
ReluParam
.
outputOut
(
outputs
:
opDesc
.
outputs
,
from
:
scope
)
input
=
try
ReluParam
.
inputX
(
inputs
:
opDesc
.
inputs
,
from
:
scope
)
out
put
=
try
ReluParam
.
outputOut
(
outputs
:
opDesc
.
outputs
,
from
:
scope
)
}
catch
let
error
{
throw
error
}
}
let
input
X
:
Texture
let
out
:
Texture
let
input
:
Texture
let
out
put
:
Texture
}
class
ReluOp
<
P
:
PrecisionType
>
:
Operator
<
ReluParam
<
P
>>
,
Runable
,
Creator
{
class
ReluOp
<
P
:
PrecisionType
>
:
Operator
<
ReluParam
<
P
>>
,
Runable
,
Creator
,
InferShaperable
{
func
inferShape
()
{
para
.
output
.
dim
=
para
.
input
.
dim
}
typealias
OpType
=
ReluOp
<
P
>
func
runImpl
()
{
print
(
"this is ReluOp"
)
...
...
metal/paddle-mobile/paddle-mobile/Program/Program.swift
浏览文件 @
64a7b3c4
...
...
@@ -16,11 +16,15 @@ import Foundation
public
struct
Program
{
let
paramPath
:
String
let
feedKey
:
String
let
fetchKey
:
String
let
programDesc
:
ProgramDesc
let
scope
:
Scope
init
(
protoProgramDesc
:
PaddleMobile_Framework_Proto_ProgramDesc
,
inParamPath
:
String
,
inScope
:
Scope
)
{
init
(
protoProgramDesc
:
PaddleMobile_Framework_Proto_ProgramDesc
,
inParamPath
:
String
,
inScope
:
Scope
,
inFeedKey
:
String
,
inFetchKey
:
String
)
{
programDesc
=
ProgramDesc
.
init
(
protoProgram
:
protoProgramDesc
)
paramPath
=
inParamPath
scope
=
inScope
feedKey
=
inFeedKey
fetchKey
=
inFetchKey
}
}
metal/paddle-mobile/paddle-mobile/Program/Scope.swift
浏览文件 @
64a7b3c4
...
...
@@ -17,7 +17,13 @@ import Foundation
class
Scope
{
var
vars
:
[
String
:
Variant
]
=
[:]
subscript
(
key
:
String
)
->
Variant
?{
return
vars
[
key
]
get
{
return
vars
[
key
]
}
set
{
vars
[
key
]
=
newValue
}
}
}
metal/paddle-mobile/paddle-mobile/framework/Dim.swift
浏览文件 @
64a7b3c4
...
...
@@ -14,7 +14,7 @@
import
Foundation
struct
Dim
{
public
struct
Dim
{
init
(
inDim
:
[
Int
])
{
dims
=
inDim
}
...
...
metal/paddle-mobile/paddle-mobile/framework/Tensor.swift
浏览文件 @
64a7b3c4
...
...
@@ -14,10 +14,28 @@
import
Foundation
class
Tensor
<
P
:
PrecisionType
>
{
protocol
Tensorial
{
var
dim
:
Dim
{
get
set
}
func
numel
()
->
Int
func
dataLayout
()
->
DataLayout
}
extension
Tensorial
{
func
numel
()
->
Int
{
return
dim
.
numel
()
}
}
class
Tensor
<
P
:
PrecisionType
>
:
Tensorial
{
var
dim
:
Dim
{
return
paraData
.
dim
get
{
return
paraData
.
dim
}
set
{
paraData
.
dim
=
newValue
}
}
let
paraData
:
ParamData
<
P
>
init
(
inDimArray
:
[
Int
],
inData
:
ParamData
<
P
>
)
{
paraData
=
inData
...
...
@@ -25,9 +43,6 @@ class Tensor <P: PrecisionType>{
init
(
inData
:
ParamData
<
P
>
)
{
paraData
=
inData
}
func
numel
()
->
Int
{
return
dim
.
numel
()
}
func
dataLayout
()
->
DataLayout
{
return
paraData
.
layout
...
...
metal/paddle-mobile/paddle-mobile/framework/Texture.swift
浏览文件 @
64a7b3c4
...
...
@@ -12,8 +12,25 @@
See the License for the specific language governing permissions and
limitations under the License. */
import
Metal
import
Foundation
class
Texture
{
public
class
Texture
:
Tensorial
{
var
dim
:
Dim
// let texture: MTLTexture
func
dataLayout
()
->
DataLayout
{
return
.
NHWC
}
public
init
(
inTexture
:
MTLTexture
,
inDim
:
Dim
)
{
// texture = inTexture
dim
=
inDim
}
public
init
()
{
dim
=
Dim
.
init
(
inDim
:
[])
// fatalError()
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录