Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
b45f80dd
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
b45f80dd
编写于
4月 11, 2022
作者:
石
石晓伟
提交者:
GitHub
4月 11, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix, test=document_fix (#41655)
上级
5cb61417
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
20 addition
and
42 deletion
+20
-42
paddle/scripts/infrt_build.sh
paddle/scripts/infrt_build.sh
+20
-42
未找到文件。
paddle/scripts/infrt_build.sh
浏览文件 @
b45f80dd
...
@@ -20,9 +20,6 @@
...
@@ -20,9 +20,6 @@
set
-e
set
-e
# TARGET: CPU/GPU/TensorRt
TARGET
=
GPU
if
[
-z
${
BRANCH
}
]
;
then
if
[
-z
${
BRANCH
}
]
;
then
BRANCH
=
"develop"
BRANCH
=
"develop"
fi
fi
...
@@ -35,14 +32,8 @@ function update_pd_ops() {
...
@@ -35,14 +32,8 @@ function update_pd_ops() {
# compile and install paddle
# compile and install paddle
rm
-rf
${
PADDLE_ROOT
}
/build
&&
mkdir
-p
${
PADDLE_ROOT
}
/build
rm
-rf
${
PADDLE_ROOT
}
/build
&&
mkdir
-p
${
PADDLE_ROOT
}
/build
cd
${
PADDLE_ROOT
}
/build
cd
${
PADDLE_ROOT
}
/build
cmake ..
-DWITH_PYTHON
=
ON
-DWITH_MKL
=
OFF
-DWITH_GPU
=
OFF
-DPYTHON_EXECUTABLE
=
`
which python3
`
-DWITH_XBYAK
=
OFF
-DWITH_NCCL
=
OFF
-DWITH_RCCL
=
OFF
-DWITH_CRYPTO
=
OFF
INFER_WITH_GPU
=
OFF
make
-j8
paddle_python print_pten_kernels kernel_signature_generator
if
[
"
${
TARGET
}
"
==
"GPU"
]
||
[
"
${
TARGET
}
"
==
"gpu"
]
||
[
"
${
TARGET
}
"
==
"TensorRt"
]
||
[
"
${
TARGET
}
"
==
"tensorrt"
]
;
then
INFER_WITH_GPU
=
ON
fi
cmake ..
-DWITH_PYTHON
=
ON
-DWITH_MKL
=
OFF
-DWITH_GPU
=
$INFER_WITH_GPU
-DPYTHON_EXECUTABLE
=
`
which python3
`
-DWITH_XBYAK
=
OFF
-DWITH_NCCL
=
OFF
-DWITH_RCCL
=
OFF
-DWITH_CRYPTO
=
OFF
make
-j24
paddle_python print_pten_kernels kernel_signature_generator
cd
${
PADDLE_ROOT
}
/build
cd
${
PADDLE_ROOT
}
/build
./paddle/phi/tools/print_pten_kernels
>
../tools/infrt/kernels.json
./paddle/phi/tools/print_pten_kernels
>
../tools/infrt/kernels.json
./paddle/fluid/pybind/kernel_signature_generator
>
../tools/infrt/kernel_signature.json
./paddle/fluid/pybind/kernel_signature_generator
>
../tools/infrt/kernel_signature.json
...
@@ -90,7 +81,6 @@ function init() {
...
@@ -90,7 +81,6 @@ function init() {
}
}
function
infrt_gen_and_build
()
{
function
infrt_gen_and_build
()
{
parallel_number
=
24
if
[
"
$1
"
!=
""
]
;
then
if
[
"
$1
"
!=
""
]
;
then
parallel_number
=
$1
parallel_number
=
$1
fi
fi
...
@@ -103,13 +93,7 @@ function infrt_gen_and_build() {
...
@@ -103,13 +93,7 @@ function infrt_gen_and_build() {
# step2. compile infrt
# step2. compile infrt
cd
${
PADDLE_ROOT
}
/build
cd
${
PADDLE_ROOT
}
/build
rm
-f
infrt_summary.txt
rm
-f
infrt_summary.txt
cmake ..
-DWITH_MKL
=
OFF
-DWITH_GPU
=
OFF
-DWITH_CRYPTO
=
OFF
-DCMAKE_BUILD_TYPE
=
Release
-DWITH_INFRT
=
ON
-DWITH_PYTHON
=
OFF
-DWITH_TESTING
==
${
WITH_TESTING
:-
ON
}
;
build_error
=
$?
INFER_WITH_GPU
=
OFF
if
[
"
${
TARGET
}
"
==
"GPU"
]
||
[
"
${
TARGET
}
"
==
"gpu"
]
||
[
"
${
TARGET
}
"
==
"TensorRt"
]
;
then
INFER_WITH_GPU
=
ON
fi
cmake ..
-DWITH_MKL
=
OFF
-DWITH_GPU
=
${
INFER_WITH_GPU
}
-DWITH_TENSORRT
=
ON
-DWITH_CRYPTO
=
OFF
-DCMAKE_BUILD_TYPE
=
Release
-DWITH_INFRT
=
ON
-DINFRT_WITH_GPU
=
ON
-DINFRT_WITH_TRT
=
ON
-DWITH_PYTHON
=
OFF
-DWITH_TESTING
==
${
WITH_TESTING
:-
ON
}
;
build_error
=
$?
if
[
"
$build_error
"
!=
0
]
;
then
if
[
"
$build_error
"
!=
0
]
;
then
exit
7
;
exit
7
;
fi
fi
...
@@ -172,18 +156,12 @@ function main() {
...
@@ -172,18 +156,12 @@ function main() {
echo
" (2)bash infrt_build.sh build_only"
echo
" (2)bash infrt_build.sh build_only"
echo
" (3)bash infrt_build.sh test_only"
echo
" (3)bash infrt_build.sh test_only"
echo
" optional command: --update_pd_ops : pd_ops.td will be updated according to paddle's code."
echo
" optional command: --update_pd_ops : pd_ops.td will be updated according to paddle's code."
echo
" --target= : GPU/gpu/CPU/cpu/TensorRt/tensorrt, default value is GPU."
exit
0
exit
0
fi
fi
init
init
for
i
in
"
$@
"
;
do
case
$CMD
in
case
$i
in
--target
=
*
)
TARGET
=
"
${
i
#*=
}
"
shift
;;
build_and_test
)
build_and_test
)
infrt_gen_and_build
${
parallel_number
}
infrt_gen_and_build
${
parallel_number
}
test_infrt
test_infrt
...
@@ -199,7 +177,7 @@ function main() {
...
@@ -199,7 +177,7 @@ function main() {
exit
1
exit
1
;;
;;
esac
esac
done
set
+x
set
+x
if
[[
-f
${
PADDLE_ROOT
}
/build/infrt_summary.txt
]]
;
then
if
[[
-f
${
PADDLE_ROOT
}
/build/infrt_summary.txt
]]
;
then
echo
"=====================build summary======================"
echo
"=====================build summary======================"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录