Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
de9ba01f
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,发现更多精彩内容 >>
未验证
提交
de9ba01f
编写于
12月 27, 2019
作者:
W
wangchaochaohu
提交者:
GitHub
12月 27, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add conda build python script test=develop (#21943)
* add script for conda package build
上级
2687f2af
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
295 addition
and
0 deletion
+295
-0
paddle/scripts/conda_build.py
paddle/scripts/conda_build.py
+295
-0
未找到文件。
paddle/scripts/conda_build.py
0 → 100644
浏览文件 @
de9ba01f
#!/bin/python
#
import
platform
from
sys
import
argv
import
argparse
import
os
import
time
def
parse_args
():
parser
=
argparse
.
ArgumentParser
(
"conda build for paddlepaddle version"
)
parser
.
add_argument
(
"--paddle_version"
,
type
=
str
,
required
=
True
,
help
=
"paddle version for conda build."
)
args
=
parser
.
parse_args
()
return
args
class
ConstantVar
:
def
__init__
(
self
):
self
.
build
=
r
"""
build:
number: '0'
string: """
self
.
requirement_build
=
r
"""
requirements:
build:
- numpy>=1.12
- cython
- setuptools
"""
self
.
requirement_run
=
r
"""
run:
- numpy>1.12
- six
- decorator
- nltk
- scipy
- requests
- pyyaml
- pillow
- graphviz
- protobuf
- py-cpuinfo==5.0.0
- funcsigs
- matplotlib
"""
self
.
requirement_run_windows
=
r
"""
run:
- numpy>=1.12
- six
- decorator
- nltk
- scipy
- requests
- pyyaml
- pillow
- graphviz
- protobuf
- py-cpuinfo==5.0.0
"""
self
.
test
=
"""
test:
import:
paddle
"""
self
.
about
=
r
"""
about:
home: http://www.paddlepaddle.org/
license: APACHE 2.0
license_family: APACHE
summary: an easy-to-use, efficient, flexible and scalable deep learning platform
"""
self
.
build_const
=
r
"""
pip install /package/objgraph-3.4.1.tar.gz
pip install /package/prettytable-0.7.tar.gz
pip install /package/rarfile-3.0.tar.gz --no-deps
"""
self
.
blt_const
=
r
"""
pip install C:\package\objgraph-3.4.1.tar.gz
pip install C:\package\prettytable-0.7.tar.gz
pip install C:\package\funcsigs-1.0.2.tar.gz
pip install C:\package\rarfile-3.0.tar.gz --no-deps
git clone https://github.com/PaddlePaddle/recordio.git
cd recordio\python
python setup.py install
"""
self
.
python27
=
r
" - python>=2.7, <3.0"
self
.
python35
=
r
" - python>=3.5, <3.6"
self
.
python36
=
r
" - python>=3.6, <3.7"
self
.
python37
=
r
" - python>=3.7, <3.8"
self
.
python_version
=
[
self
.
python27
,
self
.
python35
,
self
.
python36
,
self
.
python37
]
self
.
cuda90
=
r
"""
- cudatoolkit>=9.0, <9.1
- cudnn>=7.3, <7.4
"""
self
.
cuda100
=
r
"""
- cudatoolkit>=10.0, <10.1
- cudnn>=7.3, <7.4
"""
self
.
cuda_info
=
[(
self
.
cuda90
,
"cuda9.0"
,
".post97"
),
(
self
.
cuda100
,
"cuda10.0"
,
".post107"
)]
self
.
py_str
=
[
"py27"
,
"py35"
,
"py36"
,
"py37"
]
self
.
pip_end
=
".whl --no-deps"
self
.
pip_prefix_linux
=
"pip install /package/paddlepaddle"
self
.
pip_prefix_windows
=
"pip install C:\package\paddlepaddle"
self
.
pip_gpu
=
"_gpu-"
self
.
pip_cpu
=
"-"
self
.
mac_pip
=
[
"-cp27-cp27m-macosx_10_6_intel"
,
"-cp35-cp35m-macosx_10_6_intel"
,
"-cp36-cp36m-macosx_10_6_intel"
,
"-cp37-cp37m-macosx_10_6_intel"
]
self
.
linux_pip
=
[
"-cp27-cp27mu-manylinux1_x86_64"
,
"-cp35-cp35m-manylinux1_x86_64"
,
"-cp36-cp36m-manylinux1_x86_64"
,
"-cp37-cp37m-manylinux1_x86_64"
]
self
.
windows_pip
=
[
"-cp27-cp27m-win_amd64"
,
"-cp35-cp35m-win_amd64"
,
"-cp36-cp36m-win_amd64"
,
"-cp37-cp37m-win_amd64"
]
def
meta_build_mac
(
var
,
python_str
,
paddle_version
,
build_var
,
build_name_str
):
package_str
=
"""
package:
name: paddlepaddle
version: """
+
paddle_version
requirement
=
var
.
requirement_build
+
python_str
+
var
.
requirement_run
+
python_str
meta_build
=
var
.
build
+
build_name_str
meta_str
=
package_str
+
meta_build
+
requirement
+
var
.
test
+
var
.
about
build_str
=
var
.
build_const
+
build_var
meta_filename
=
"meta.yaml"
build_filename
=
"build.sh"
with
open
(
meta_filename
,
'w'
)
as
f
:
f
.
write
(
meta_str
)
with
open
(
build_filename
,
'w'
)
as
f
:
f
.
write
(
build_str
)
def
meta_build_linux
(
var
,
python_str
,
paddle_version
,
build_var
,
build_name_str
,
cuda_str
=
None
):
if
cuda_str
==
None
:
package_str
=
"""
package:
name: paddlepaddle
version: """
+
paddle_version
else
:
package_str
=
"""
package:
name: paddlepaddle-gpu
version: """
+
paddle_version
requirement
=
var
.
requirement_build
+
python_str
+
var
.
requirement_run
+
python_str
meta_build
=
var
.
build
+
build_name_str
meta_str
=
package_str
+
meta_build
+
requirement
if
not
(
cuda_str
==
None
):
meta_str
=
meta_str
+
cuda_str
meta_str
=
meta_str
+
var
.
test
+
var
.
about
build_str
=
var
.
build_const
+
build_var
meta_filename
=
"meta.yaml"
build_filename
=
"build.sh"
with
open
(
meta_filename
,
'w'
)
as
f
:
f
.
write
(
meta_str
)
with
open
(
build_filename
,
'w'
)
as
f
:
f
.
write
(
build_str
)
def
meta_build_windows
(
var
,
python_str
,
paddle_version
,
blt_var
,
build_name_str
,
cuda_str
=
None
):
if
cuda_str
==
None
:
package_str
=
"""
package:
name: paddlepaddle
version: """
+
paddle_version
else
:
package_str
=
"""
package:
name: paddlepaddle-gpu
version: """
+
paddle_version
requirement
=
var
.
requirement_build
+
python_str
+
var
.
requirement_run_windows
+
python_str
meta_build
=
var
.
build
+
build_name_str
meta_str
=
package_str
+
meta_build
+
requirement
if
(
python_str
==
var
.
python27
or
python_str
==
var
.
python35
):
meta_str
=
meta_str
+
"""
- matplotlib<=2.2.4"""
else
:
meta_str
=
meta_str
+
"""
- matplotlib"""
if
not
(
cuda_str
==
None
):
meta_str
=
meta_str
+
cuda_str
meta_str
=
meta_str
+
var
.
test
+
var
.
about
blt_str
=
var
.
blt_const
+
blt_var
meta_filename
=
"meta.yaml"
build_filename
=
"bld.bat"
with
open
(
meta_filename
,
'w'
)
as
f
:
f
.
write
(
meta_str
)
with
open
(
build_filename
,
'w'
)
as
f
:
f
.
write
(
blt_str
)
def
conda_build
(
paddle_version
,
var
):
sysstr
=
platform
.
system
()
if
(
sysstr
==
"Windows"
):
os
.
system
(
"mkdir paddle"
)
os
.
chdir
(
r
"./paddle"
)
for
i
in
range
(
len
(
var
.
python_version
)):
blt_var
=
var
.
pip_prefix_windows
+
var
.
pip_cpu
+
paddle_version
+
var
.
windows_pip
[
i
]
+
var
.
pip_end
name
=
var
.
py_str
[
i
]
+
"_cpu_windows"
python_str
=
var
.
python_version
[
i
]
meta_build_windows
(
var
,
python_str
,
paddle_version
,
blt_var
,
name
)
os
.
system
(
"conda build ."
)
for
i
in
range
(
len
(
var
.
python_version
)):
for
cuda_str
in
var
.
cuda_info
:
post
=
cuda_str
[
2
]
blt_var
=
var
.
pip_prefix_windows
+
var
.
pip_gpu
+
paddle_version
+
post
+
var
.
windows_pip
[
i
]
+
var
.
pip_end
name
=
var
.
py_str
[
i
]
+
"_gpu_"
+
cuda_str
[
1
]
+
"_windows"
cuda_cudnn_str
=
cuda_str
[
0
]
python_str
=
var
.
python_version
[
i
]
meta_build_windows
(
var
,
python_str
,
paddle_version
,
blt_var
,
name
,
cuda_cudnn_str
)
os
.
system
(
"conda build ."
)
elif
(
sysstr
==
"Linux"
):
os
.
system
(
"mkdir paddle"
)
os
.
chdir
(
r
"./paddle"
)
for
i
in
range
(
len
(
var
.
python_version
)):
build_var
=
var
.
pip_prefix_linux
+
var
.
pip_cpu
+
paddle_version
+
var
.
linux_pip
[
i
]
+
var
.
pip_end
name
=
var
.
py_str
[
i
]
+
"_cpu_many_linux"
python_str
=
var
.
python_version
[
i
]
meta_build_linux
(
var
,
python_str
,
paddle_version
,
build_var
,
name
)
os
.
system
(
"conda build ."
)
for
i
in
range
(
len
(
var
.
python_version
)):
for
cuda_str
in
var
.
cuda_info
:
post
=
cuda_str
[
2
]
build_var
=
var
.
pip_prefix_linux
+
var
.
pip_gpu
+
paddle_version
+
post
+
var
.
linux_pip
[
i
]
+
var
.
pip_end
name
=
var
.
py_str
[
i
]
+
"_gpu_"
+
cuda_str
[
1
]
+
"_many_linux"
cuda_cudnn_str
=
cuda_str
[
0
]
python_str
=
var
.
python_version
[
i
]
meta_build_linux
(
var
,
python_str
,
paddle_version
,
build_var
,
name
,
cuda_cudnn_str
)
os
.
system
(
"conda build ."
)
os
.
system
(
"cd .."
)
elif
(
sysstr
==
"Darwin"
):
os
.
system
(
"mkdir paddle"
)
os
.
chdir
(
r
"./paddle"
)
for
i
in
range
(
len
(
var
.
python_version
)):
build_var
=
var
.
pip_prefix_linux
+
var
.
pip_cpu
+
paddle_version
+
var
.
mac_pip
[
i
]
+
var
.
pip_end
name
=
var
.
py_str
[
i
]
+
"_mac"
python_str
=
var
.
python_version
[
i
]
meta_build_mac
(
var
,
python_str
,
paddle_version
,
build_var
,
name
)
os
.
system
(
"conda build ."
)
os
.
system
(
"cd .."
)
if
__name__
==
"__main__"
:
args
=
parse_args
()
paddle_version
=
args
.
paddle_version
var
=
ConstantVar
()
conda_build
(
paddle_version
,
var
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录