Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
ba574c8e
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
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看板
未验证
提交
ba574c8e
编写于
8月 14, 2020
作者:
W
wangchaochaohu
提交者:
GitHub
8月 14, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refine the usage of numpy element fetch for Ops test=develop (#26194)
上级
b9828bdf
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
18 addition
and
11 deletion
+18
-11
python/paddle/fluid/layers/control_flow.py
python/paddle/fluid/layers/control_flow.py
+2
-2
python/paddle/fluid/layers/nn.py
python/paddle/fluid/layers/nn.py
+6
-6
python/paddle/fluid/layers/tensor.py
python/paddle/fluid/layers/tensor.py
+3
-3
python/paddle/fluid/tests/unittests/test_fill_constant_op.py
python/paddle/fluid/tests/unittests/test_fill_constant_op.py
+7
-0
未找到文件。
python/paddle/fluid/layers/control_flow.py
浏览文件 @
ba574c8e
...
...
@@ -1511,7 +1511,7 @@ def array_write(x, i, array=None):
assert
i
.
shape
==
[
1
],
"The shape of index 'i' should be [1] in dygraph mode"
i
=
i
.
numpy
()
[
0
]
i
=
i
.
numpy
()
.
item
(
0
)
if
array
is
None
:
array
=
create_array
(
x
.
dtype
)
assert
isinstance
(
...
...
@@ -1976,7 +1976,7 @@ def array_read(array, i):
assert
i
.
shape
==
[
1
],
"The shape of index 'i' should be [1] in dygraph mode"
i
=
i
.
numpy
()
[
0
]
i
=
i
.
numpy
()
.
item
(
0
)
return
array
[
i
]
check_variable_and_dtype
(
i
,
'i'
,
[
'int64'
],
'array_read'
)
...
...
python/paddle/fluid/layers/nn.py
浏览文件 @
ba574c8e
...
...
@@ -4841,7 +4841,7 @@ def split(input, num_or_sections, dim=-1, name=None):
if isinstance(dim, Variable):
dim = dim.numpy()
dim = dim
[0]
dim = dim
.item(0)
dim = (len(input.shape) + dim) if dim < 0 else dim
attrs += ('axis', dim)
...
...
@@ -5885,7 +5885,7 @@ def one_hot(input, depth, allow_out_of_range=False):
depth = depth.numpy()
assert depth.shape == (
1, ), "depth of type Variable should have shape [1]"
depth = depth
[0]
depth = depth
.item(0)
out = core.ops.one_hot(input, 'depth', depth, 'allow_out_of_range',
allow_out_of_range)
out.stop_gradient = True
...
...
@@ -6067,7 +6067,7 @@ def reshape(x, shape, actual_shape=None, act=None, inplace=False, name=None):
)
if isinstance(shape, (list, tuple)):
shape = [
item.numpy()
[0]
if isinstance(item, Variable) else item
item.numpy()
.item(0)
if isinstance(item, Variable) else item
for item in shape
]
out, _ = core.ops.reshape2(x, 'shape', shape)
...
...
@@ -10195,7 +10195,7 @@ def expand(x, expand_times, name=None):
if in_dygraph_mode():
if isinstance(expand_times, (list, tuple)):
expand_times = [
item.numpy()
[0]
if isinstance(item, Variable) else item
item.numpy()
.item(0)
if isinstance(item, Variable) else item
for item in expand_times
]
...
...
@@ -10806,11 +10806,11 @@ def slice(input, axes, starts, ends):
if isinstance(starts, (list, tuple)) and isinstance(ends,
(list, tuple)):
starts = [
item.numpy()
[0]
if isinstance(item, Variable) else item
item.numpy()
.item(0)
if isinstance(item, Variable) else item
for item in starts
]
ends = [
item.numpy()
[0]
if isinstance(item, Variable) else item
item.numpy()
.item(0)
if isinstance(item, Variable) else item
for item in ends
]
...
...
python/paddle/fluid/layers/tensor.py
浏览文件 @
ba574c8e
...
...
@@ -317,7 +317,7 @@ def concat(input, axis=0, name=None):
if
in_dygraph_mode
():
if
isinstance
(
axis
,
Variable
):
axis
=
axis
.
numpy
()
axis
=
axis
[
0
]
axis
=
axis
.
item
(
0
)
return
core
.
ops
.
concat
(
input
,
'axis'
,
axis
)
check_type
(
input
,
'input'
,
(
list
,
tuple
,
Variable
),
'concat'
)
...
...
@@ -699,9 +699,9 @@ def fill_constant(shape, dtype, value, force_cpu=False, out=None, name=None):
if
isinstance
(
value
,
Variable
):
if
dtype
in
[
'int64'
,
'int32'
]:
attrs
[
'str_value'
]
=
str
(
int
(
value
.
numpy
()))
attrs
[
'str_value'
]
=
str
(
int
(
value
.
numpy
()
.
item
(
0
)
))
else
:
attrs
[
'str_value'
]
=
str
(
float
(
value
.
numpy
()))
attrs
[
'str_value'
]
=
str
(
float
(
value
.
numpy
()
.
item
(
0
)
))
core
.
ops
.
fill_constant
(
out
,
'value'
,
float
(
value
),
'force_cpu'
,
force_cpu
,
'dtype'
,
...
...
python/paddle/fluid/tests/unittests/test_fill_constant_op.py
浏览文件 @
ba574c8e
...
...
@@ -305,14 +305,18 @@ class TestFillConstantImperative(unittest.TestCase):
with
fluid
.
dygraph
.
guard
():
data1
=
np
.
array
([
1
,
2
]).
astype
(
'int32'
)
data2
=
np
.
array
([
1.1
]).
astype
(
'float32'
)
data3
=
np
.
array
([
88
]).
astype
(
'int32'
)
shape
=
fluid
.
dygraph
.
to_variable
(
data1
)
val
=
fluid
.
dygraph
.
to_variable
(
data2
)
value
=
fluid
.
dygraph
.
to_variable
(
data3
)
res1
=
fluid
.
layers
.
fill_constant
(
shape
=
[
1
,
2
],
dtype
=
'float32'
,
value
=
1.1
)
res2
=
fluid
.
layers
.
fill_constant
(
shape
=
shape
,
dtype
=
'float32'
,
value
=
1.1
)
res3
=
fluid
.
layers
.
fill_constant
(
shape
=
shape
,
dtype
=
'float32'
,
value
=
val
)
res4
=
fluid
.
layers
.
fill_constant
(
shape
=
shape
,
dtype
=
'int32'
,
value
=
value
)
assert
np
.
array_equal
(
res1
.
numpy
(),
np
.
full
(
[
1
,
2
],
1.1
,
dtype
=
"float32"
))
...
...
@@ -322,6 +326,9 @@ class TestFillConstantImperative(unittest.TestCase):
assert
np
.
array_equal
(
res3
.
numpy
(),
np
.
full
(
[
1
,
2
],
1.1
,
dtype
=
"float32"
))
assert
np
.
array_equal
(
res4
.
numpy
(),
np
.
full
(
[
1
,
2
],
88
,
dtype
=
"int32"
))
class
TestFillConstantOpError
(
unittest
.
TestCase
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录