Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
b068788c
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看板
提交
b068788c
编写于
9月 21, 2018
作者:
X
xiaohaichun
提交者:
GitHub
9月 21, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1001 from xiaohaichun/metal
add gpu predict interface
上级
32efc50c
bae31c56
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
60 addition
and
8 deletion
+60
-8
metal/paddle-mobile-demo/paddle-mobile-demo/LoadPointerViewController.m
...obile-demo/paddle-mobile-demo/LoadPointerViewController.m
+16
-7
metal/paddle-mobile/paddle-mobile/PaddleMobileGPU.h
metal/paddle-mobile/paddle-mobile/PaddleMobileGPU.h
+16
-0
metal/paddle-mobile/paddle-mobile/PaddleMobileGPU.m
metal/paddle-mobile/paddle-mobile/PaddleMobileGPU.m
+28
-1
未找到文件。
metal/paddle-mobile-demo/paddle-mobile-demo/LoadPointerViewController.m
浏览文件 @
b068788c
...
...
@@ -126,14 +126,23 @@
-
(
void
)
predict
{
_texture
=
[
self
createTextureFromImage
:[
UIImage
imageNamed
:
@"hand.jpg"
]
device
:
self
.
device
];
[
_runner
predict
:
_texture
withCompletion
:
^
(
BOOL
success
,
NSArray
<
NSNumber
*>
*
result
)
{
if
(
success
)
{
for
(
int
i
=
0
;
i
<
result
.
count
;
i
++
)
{
NSNumber
*
number
=
result
[
i
];
NSLog
(
@"result %d = %f:"
,
i
,
[
number
floatValue
]);
NSTimeInterval
startTime
=
[[
NSDate
date
]
timeIntervalSince1970
];
NSInteger
max
=
428
;
for
(
int
i
=
0
;
i
<
max
;
i
++
)
{
[
_runner
predict
:
_texture
withCompletion
:
^
(
BOOL
success
,
NSArray
<
NSNumber
*>
*
result
)
{
if
(
success
)
{
if
(
i
==
max
-
1
)
{
double
time
=
[[
NSDate
date
]
timeIntervalSince1970
]
-
startTime
;
time
=
(
time
/
max
)
*
1000
;
NSLog
(
@"gap ==== %fms"
,
time
);
}
// for (int i = 0; i < result.count; i ++) {
// NSNumber *number = result[i];
// NSLog(@"result %d = %f:",i, [number floatValue]);
// }
}
}
}
];
}
];
}
}
-
(
void
)
didReceiveMemoryWarning
{
...
...
metal/paddle-mobile/paddle-mobile/PaddleMobileGPU.h
浏览文件 @
b068788c
...
...
@@ -21,6 +21,16 @@ typedef enum : NSUInteger {
GenetType
,
}
NetType
;
@interface
PaddleMobileGPUResult
:
NSObject
@property
(
assign
,
nonatomic
)
float
*
output
;
@property
(
assign
,
nonatomic
)
int
outputSize
;
-
(
void
)
releaseOutput
;
@end
@interface
ModelConfig
:
NSObject
/*
...
...
@@ -81,6 +91,12 @@ typedef enum : NSUInteger {
*/
-
(
void
)
predict
:(
id
<
MTLTexture
>
)
texture
withCompletion
:(
void
(
^
)(
BOOL
,
NSArray
<
NSNumber
*>
*
))
completion
;
/*
* texture: 需要进行预测的图像转换的 texture
* completion: 预测完成回调
*/
-
(
void
)
predict
:(
id
<
MTLTexture
>
)
texture
withResultCompletion
:(
void
(
^
)(
BOOL
,
PaddleMobileGPUResult
*
))
completion
;
/*
* 清理内存
*/
...
...
metal/paddle-mobile/paddle-mobile/PaddleMobileGPU.m
浏览文件 @
b068788c
...
...
@@ -14,6 +14,26 @@
@implementation
ModelConfig
@end
@interface
PaddleMobileGPUResult
()
@property
(
strong
,
nonatomic
)
ResultHolder
*
resultHolder
;
-
(
void
)
setOutputResult
:(
ResultHolder
*
)
resultHolder
;
@end
@implementation
PaddleMobileGPUResult
-
(
void
)
setOutputResult
:(
ResultHolder
*
)
resultHolder
{
self
.
resultHolder
=
resultHolder
;
self
.
output
=
resultHolder
.
result
;
self
.
outputSize
=
resultHolder
.
capacity
;
}
-
(
void
)
releaseOutput
{
[
self
.
resultHolder
releasePointer
];
}
@end
@interface
PaddleMobileGPU
()
{
Runner
*
runner
;
...
...
@@ -52,7 +72,14 @@
[
result
releasePointer
];
}];
// [runner predictWithTexture:texture completion:completion];
}
-
(
void
)
predict
:(
id
<
MTLTexture
>
)
texture
withResultCompletion
:(
void
(
^
)(
BOOL
,
PaddleMobileGPUResult
*
))
completion
{
[
runner
predictWithTexture
:
texture
completion
:
^
(
BOOL
success
,
ResultHolder
*
_Nullable
result
)
{
PaddleMobileGPUResult
*
gpuResult
=
[[
PaddleMobileGPUResult
alloc
]
init
];
[
gpuResult
setOutputResult
:
result
];
completion
(
success
,
gpuResult
);
}];
}
-
(
void
)
clear
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录