Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
a6336543
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看板
未验证
提交
a6336543
编写于
4月 24, 2020
作者:
W
Wilber
提交者:
GitHub
4月 24, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Demo][Cuda] Modify cxx&python demo of Cuda backend for release/v2.6 (#3473)
* fix cuda demo. test=develop * update type error. test=develop
上级
574f58b6
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
17 addition
and
12 deletion
+17
-12
docs/demo_guides/cuda.md
docs/demo_guides/cuda.md
+3
-3
lite/api/paddle_api.h
lite/api/paddle_api.h
+1
-1
lite/demo/cxx/cuda_demo/CMakeLists.txt
lite/demo/cxx/cuda_demo/CMakeLists.txt
+12
-8
lite/tools/build.sh
lite/tools/build.sh
+1
-0
未找到文件。
docs/demo_guides/cuda.md
浏览文件 @
a6336543
...
@@ -48,7 +48,7 @@ cuda的编译结果位于 `build_cuda/inference_lite_lib`
...
@@ -48,7 +48,7 @@ cuda的编译结果位于 `build_cuda/inference_lite_lib`
4、
`demo`
文件夹:c++ demo.
4、
`demo`
文件夹:c++ demo.
如果编译打开了python选项,则会在
`build_cuda/inference_lite_lib/python/lib/`
目录下生成
`lite
_core
.so`
。
如果编译打开了python选项,则会在
`build_cuda/inference_lite_lib/python/lib/`
目录下生成
`lite.so`
。
## 运行
## 运行
...
@@ -66,7 +66,7 @@ wget https://paddle-inference-dist.cdn.bcebos.com/PaddleLite/kite.jpg
...
@@ -66,7 +66,7 @@ wget https://paddle-inference-dist.cdn.bcebos.com/PaddleLite/kite.jpg
二: 运行
二: 运行
**NOTE
:**
此处示例使用的是python接口。
**NOTE
:**
此处示例使用的是python接口。
```
python
```
python
#-*- coding: utf-8 -*-
#-*- coding: utf-8 -*-
...
@@ -75,7 +75,7 @@ import sys
...
@@ -75,7 +75,7 @@ import sys
import
numpy
as
np
import
numpy
as
np
import
cv2
import
cv2
sys
.
path
.
append
(
'build_cuda/inference_lite_lib/python/lib'
)
sys
.
path
.
append
(
'build_cuda/inference_lite_lib/python/lib'
)
from
lite
_core
import
*
from
lite
import
*
def
read_img
(
im_path
,
resize_h
,
resize_w
):
def
read_img
(
im_path
,
resize_h
,
resize_w
):
im
=
cv2
.
imread
(
im_path
).
astype
(
'float32'
)
im
=
cv2
.
imread
(
im_path
).
astype
(
'float32'
)
...
...
lite/api/paddle_api.h
浏览文件 @
a6336543
...
@@ -181,7 +181,7 @@ class LITE_API CxxConfig : public ConfigBase {
...
@@ -181,7 +181,7 @@ class LITE_API CxxConfig : public ConfigBase {
#endif
#endif
#ifdef LITE_WITH_CUDA
#ifdef LITE_WITH_CUDA
void
set_multi_stream
(
bool
multi_stream
)
{
multi_stream_
=
multi_stream
;
}
void
set_multi_stream
(
bool
multi_stream
)
{
multi_stream_
=
multi_stream
;
}
int
multi_stream
()
const
{
return
multi_stream_
;
}
bool
multi_stream
()
const
{
return
multi_stream_
;
}
#endif
#endif
#ifdef LITE_WITH_MLU
#ifdef LITE_WITH_MLU
...
...
lite/demo/cxx/cuda_demo/CMakeLists.txt
浏览文件 @
a6336543
project
(
demo CXX C
)
cmake_minimum_required
(
VERSION 2.8
)
cmake_minimum_required
(
VERSION 2.8
)
project
(
demo CXX C
)
add_definitions
(
-DLITE_WITH_CUDA
)
set
(
TARGET demo
)
set
(
TARGET demo
)
set
(
CMAKE_CXX_FLAGS
"-std=c++11 -O3"
)
set
(
CMAKE_CXX_FLAGS
"-std=c++11 -O3"
)
set
(
LITE_
LIB
"
${
PROJECT_SOURCE_DIR
}
/../../cxx"
)
set
(
LITE_
ROOT
"
${
PROJECT_SOURCE_DIR
}
/../../cxx"
)
set
(
PROTOBUF_
LIB
"
${
PROJECT_SOURCE_DIR
}
/../../third_party/protobuf"
)
set
(
PROTOBUF_
ROOT
"
${
PROJECT_SOURCE_DIR
}
/../../third_party/protobuf"
)
include_directories
(
"
${
LITE_LIB
}
/include"
)
include_directories
(
"
${
LITE_ROOT
}
/include"
)
link_directories
(
"
${
LITE_LIB
}
/lib"
)
link_directories
(
"
${
LITE_ROOT
}
/lib"
)
link_directories
(
"
${
PROTOBUF_LIB
}
/lib"
)
link_directories
(
"
${
PROTOBUF_ROOT
}
/lib"
)
# cuda lib
link_directories
(
"/usr/local/cuda/lib64/"
)
add_executable
(
${
TARGET
}
${
TARGET
}
.cc
)
add_executable
(
${
TARGET
}
${
TARGET
}
.cc
)
set
(
DEPS
${
LITE_
LIB
}
/lib/libpaddle_full_api_shared.so
)
set
(
DEPS
${
LITE_
ROOT
}
/lib/libpaddle_full_api_shared.so
)
set
(
DEPS
${
DEPS
}
protobuf-lite
)
set
(
DEPS
${
DEPS
}
protobuf-lite
)
set
(
DEPS
${
DEPS
}
"-lrt -lpthread -ldl"
)
set
(
DEPS
${
DEPS
}
"-lrt -lpthread -ldl
-lcudart
"
)
target_link_libraries
(
${
TARGET
}
${
DEPS
}
)
target_link_libraries
(
${
TARGET
}
${
DEPS
}
)
lite/tools/build.sh
浏览文件 @
a6336543
...
@@ -350,6 +350,7 @@ function make_cuda {
...
@@ -350,6 +350,7 @@ function make_cuda {
-DLITE_WITH_LIGHT_WEIGHT_FRAMEWORK
=
OFF
\
-DLITE_WITH_LIGHT_WEIGHT_FRAMEWORK
=
OFF
\
-DWITH_TESTING
=
OFF
\
-DWITH_TESTING
=
OFF
\
-DLITE_WITH_ARM
=
OFF
\
-DLITE_WITH_ARM
=
OFF
\
-DLITE_WITH_STATIC_CUDA
=
OFF
\
-DLITE_WITH_PYTHON
=
${
BUILD_PYTHON
}
\
-DLITE_WITH_PYTHON
=
${
BUILD_PYTHON
}
\
-DLITE_BUILD_EXTRA
=
ON
\
-DLITE_BUILD_EXTRA
=
ON
\
-DLITE_WITH_XPU
=
$BUILD_XPU
\
-DLITE_WITH_XPU
=
$BUILD_XPU
\
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录