Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
92817f80
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
92817f80
编写于
11月 30, 2020
作者:
1
123malin
提交者:
GitHub
11月 30, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test=develop, rm pathlib (#28658)
* test=develop, rm pathlib
上级
4fd4095d
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
7 addition
and
12 deletion
+7
-12
paddle/scripts/conda_build.py
paddle/scripts/conda_build.py
+0
-2
python/paddle/distributed/fleet/utils/fs.py
python/paddle/distributed/fleet/utils/fs.py
+4
-5
python/paddle/fluid/incubate/fleet/utils/hdfs.py
python/paddle/fluid/incubate/fleet/utils/hdfs.py
+3
-4
python/requirements.txt
python/requirements.txt
+0
-1
未找到文件。
paddle/scripts/conda_build.py
浏览文件 @
92817f80
...
@@ -61,7 +61,6 @@ requirements:
...
@@ -61,7 +61,6 @@ requirements:
- graphviz
- graphviz
- protobuf
- protobuf
- py-cpuinfo==5.0.0
- py-cpuinfo==5.0.0
- pathlib
- astor
- astor
- gast>=0.3.3
- gast>=0.3.3
- matplotlib
- matplotlib
...
@@ -79,7 +78,6 @@ requirements:
...
@@ -79,7 +78,6 @@ requirements:
- graphviz
- graphviz
- protobuf
- protobuf
- astor
- astor
- pathlib
- gast>=0.3.3
- gast>=0.3.3
- py-cpuinfo==5.0.0
- py-cpuinfo==5.0.0
"""
"""
...
...
python/paddle/distributed/fleet/utils/fs.py
浏览文件 @
92817f80
...
@@ -29,7 +29,6 @@ import paddle.fluid as fluid
...
@@ -29,7 +29,6 @@ import paddle.fluid as fluid
from
paddle.fluid
import
core
from
paddle.fluid
import
core
import
functools
import
functools
from
pathlib
import
PurePosixPath
,
Path
import
shutil
import
shutil
__all__
=
[
'LocalFS'
,
'HDFSClient'
]
__all__
=
[
'LocalFS'
,
'HDFSClient'
]
...
@@ -322,7 +321,7 @@ class LocalFS(FS):
...
@@ -322,7 +321,7 @@ class LocalFS(FS):
return
return
raise
FSFileExistsError
raise
FSFileExistsError
return
Path
(
fs_path
).
touch
(
exist_ok
=
True
)
os
.
system
(
"touch {}"
.
format
(
fs_path
)
)
def
mv
(
self
,
src_path
,
dst_path
,
overwrite
=
False
,
test_exists
=
False
):
def
mv
(
self
,
src_path
,
dst_path
,
overwrite
=
False
,
test_exists
=
False
):
"""
"""
...
@@ -554,11 +553,11 @@ class HDFSClient(FS):
...
@@ -554,11 +553,11 @@ class HDFSClient(FS):
if
len
(
arr
)
!=
8
:
if
len
(
arr
)
!=
8
:
continue
continue
p
=
PurePosixPath
(
arr
[
7
])
p
=
os
.
path
.
basename
(
arr
[
7
])
if
arr
[
0
][
0
]
==
'd'
:
if
arr
[
0
][
0
]
==
'd'
:
dirs
.
append
(
p
.
name
)
dirs
.
append
(
p
)
else
:
else
:
files
.
append
(
p
.
name
)
files
.
append
(
p
)
return
dirs
,
files
return
dirs
,
files
...
...
python/paddle/fluid/incubate/fleet/utils/hdfs.py
浏览文件 @
92817f80
...
@@ -30,7 +30,6 @@ from .fs import FS, LocalFS, FSFileExistsError, FSFileNotExistsError, ExecuteErr
...
@@ -30,7 +30,6 @@ from .fs import FS, LocalFS, FSFileExistsError, FSFileNotExistsError, ExecuteErr
from
paddle.fluid
import
core
from
paddle.fluid
import
core
import
functools
import
functools
from
pathlib
import
PurePosixPath
,
Path
import
shutil
import
shutil
__all__
=
[
"HDFSClient"
]
__all__
=
[
"HDFSClient"
]
...
@@ -137,11 +136,11 @@ class HDFSClient(FS):
...
@@ -137,11 +136,11 @@ class HDFSClient(FS):
if
len
(
arr
)
!=
8
:
if
len
(
arr
)
!=
8
:
continue
continue
p
=
PurePosixPath
(
arr
[
7
])
p
=
os
.
path
.
basename
(
arr
[
7
])
if
arr
[
0
][
0
]
==
'd'
:
if
arr
[
0
][
0
]
==
'd'
:
dirs
.
append
(
p
.
name
)
dirs
.
append
(
p
)
else
:
else
:
files
.
append
(
p
.
name
)
files
.
append
(
p
)
return
dirs
,
files
return
dirs
,
files
...
...
python/requirements.txt
浏览文件 @
92817f80
...
@@ -12,4 +12,3 @@ Pillow
...
@@ -12,4 +12,3 @@ Pillow
six
six
decorator
decorator
astor
astor
pathlib
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录