Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
cce9af0e
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,发现更多精彩内容 >>
提交
cce9af0e
编写于
1月 07, 2020
作者:
Z
zhupengyang
提交者:
Tao Luo
1月 07, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
all cases use large shape (#22106)
enhanced ops: conv2d, conv3d elementwise_pow: change to a reasonable shape
上级
6c20e7c4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
56 addition
and
44 deletion
+56
-44
python/paddle/fluid/tests/unittests/test_conv2d_op.py
python/paddle/fluid/tests/unittests/test_conv2d_op.py
+46
-34
python/paddle/fluid/tests/unittests/test_conv3d_op.py
python/paddle/fluid/tests/unittests/test_conv3d_op.py
+6
-6
python/paddle/fluid/tests/unittests/test_elementwise_pow_op.py
...n/paddle/fluid/tests/unittests/test_elementwise_pow_op.py
+4
-4
未找到文件。
python/paddle/fluid/tests/unittests/test_conv2d_op.py
浏览文件 @
cce9af0e
...
@@ -430,8 +430,14 @@ class TestWithStride(TestConv2dOp):
...
@@ -430,8 +430,14 @@ class TestWithStride(TestConv2dOp):
class
TestWithGroup
(
TestConv2dOp
):
class
TestWithGroup
(
TestConv2dOp
):
def
init_group
(
self
):
def
init_test_case
(
self
):
self
.
groups
=
3
self
.
pad
=
[
0
,
0
]
self
.
stride
=
[
1
,
1
]
self
.
input_size
=
[
2
,
3
,
5
,
5
]
# NCHW
self
.
group
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
18
,
f_c
,
3
,
3
]
class
TestWith1x1
(
TestConv2dOp
):
class
TestWith1x1
(
TestConv2dOp
):
...
@@ -441,7 +447,7 @@ class TestWith1x1(TestConv2dOp):
...
@@ -441,7 +447,7 @@ class TestWith1x1(TestConv2dOp):
self
.
input_size
=
[
2
,
3
,
5
,
5
]
# NCHW
self
.
input_size
=
[
2
,
3
,
5
,
5
]
# NCHW
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
1
,
1
]
self
.
filter_size
=
[
120
,
f_c
,
1
,
1
]
def
init_group
(
self
):
def
init_group
(
self
):
self
.
groups
=
3
self
.
groups
=
3
...
@@ -454,7 +460,7 @@ class TestWithDepthWise3x3(TestConv2dOp):
...
@@ -454,7 +460,7 @@ class TestWithDepthWise3x3(TestConv2dOp):
self
.
input_size
=
[
3
,
4
,
10
,
10
]
# NCHW
self
.
input_size
=
[
3
,
4
,
10
,
10
]
# NCHW
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
8
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
def
init_dilation
(
self
):
def
init_dilation
(
self
):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
...
@@ -496,7 +502,7 @@ class TestWithDilation(TestConv2dOp):
...
@@ -496,7 +502,7 @@ class TestWithDilation(TestConv2dOp):
self
.
input_size
=
[
2
,
3
,
10
,
10
]
# NCHW
self
.
input_size
=
[
2
,
3
,
10
,
10
]
# NCHW
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
def
init_dilation
(
self
):
def
init_dilation
(
self
):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
...
@@ -509,10 +515,10 @@ class TestWithInput1x1Filter1x1(TestConv2dOp):
...
@@ -509,10 +515,10 @@ class TestWithInput1x1Filter1x1(TestConv2dOp):
def
init_test_case
(
self
):
def
init_test_case
(
self
):
self
.
pad
=
[
0
,
0
]
self
.
pad
=
[
0
,
0
]
self
.
stride
=
[
1
,
1
]
self
.
stride
=
[
1
,
1
]
self
.
input_size
=
[
2
,
3
,
1
,
1
]
# NCHW
self
.
input_size
=
[
100
,
3
,
1
,
1
]
# NCHW
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
1
,
1
]
self
.
filter_size
=
[
120
,
f_c
,
1
,
1
]
def
init_group
(
self
):
def
init_group
(
self
):
self
.
groups
=
3
self
.
groups
=
3
...
@@ -548,7 +554,7 @@ class TestDepthwiseConv(TestConv2dOp):
...
@@ -548,7 +554,7 @@ class TestDepthwiseConv(TestConv2dOp):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
3
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -561,7 +567,7 @@ class TestDepthwiseConv2(TestConv2dOp):
...
@@ -561,7 +567,7 @@ class TestDepthwiseConv2(TestConv2dOp):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
3
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -574,7 +580,7 @@ class TestDepthwiseConv3(TestConv2dOp):
...
@@ -574,7 +580,7 @@ class TestDepthwiseConv3(TestConv2dOp):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -588,7 +594,7 @@ class TestDepthwiseConvWithDilation(TestConv2dOp):
...
@@ -588,7 +594,7 @@ class TestDepthwiseConvWithDilation(TestConv2dOp):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -602,7 +608,7 @@ class TestDepthwiseConvWithDilation2(TestConv2dOp):
...
@@ -602,7 +608,7 @@ class TestDepthwiseConvWithDilation2(TestConv2dOp):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -616,7 +622,7 @@ class TestDepthwiseConvandFuse(TestConv2dOp):
...
@@ -616,7 +622,7 @@ class TestDepthwiseConvandFuse(TestConv2dOp):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
3
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -630,7 +636,7 @@ class TestDepthwiseConv2andFuse(TestConv2dOp):
...
@@ -630,7 +636,7 @@ class TestDepthwiseConv2andFuse(TestConv2dOp):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
3
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -644,7 +650,7 @@ class TestDepthwiseConv3andFuse(TestConv2dOp):
...
@@ -644,7 +650,7 @@ class TestDepthwiseConv3andFuse(TestConv2dOp):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -659,7 +665,7 @@ class TestDepthwiseConvWithDilationandFuse(TestConv2dOp):
...
@@ -659,7 +665,7 @@ class TestDepthwiseConvWithDilationandFuse(TestConv2dOp):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -674,7 +680,7 @@ class TestDepthwiseConvWithDilation2andFuse(TestConv2dOp):
...
@@ -674,7 +680,7 @@ class TestDepthwiseConvWithDilation2andFuse(TestConv2dOp):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
...
@@ -878,8 +884,14 @@ class TestWithStride_AsyPadding(TestConv2dOp_v2):
...
@@ -878,8 +884,14 @@ class TestWithStride_AsyPadding(TestConv2dOp_v2):
class
TestWithGroup_AsyPadding
(
TestConv2dOp_v2
):
class
TestWithGroup_AsyPadding
(
TestConv2dOp_v2
):
def
init_group
(
self
):
def
init_test_case
(
self
):
self
.
groups
=
3
self
.
pad
=
[
0
,
0
]
self
.
stride
=
[
1
,
2
]
self
.
input_size
=
[
2
,
3
,
5
,
5
]
# NCHW
self
.
group
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
24
,
f_c
,
4
,
3
]
class
TestWith1x1_AsyPadding
(
TestConv2dOp_v2
):
class
TestWith1x1_AsyPadding
(
TestConv2dOp_v2
):
...
@@ -888,7 +900,7 @@ class TestWith1x1_AsyPadding(TestConv2dOp_v2):
...
@@ -888,7 +900,7 @@ class TestWith1x1_AsyPadding(TestConv2dOp_v2):
self
.
input_size
=
[
2
,
3
,
5
,
5
]
# NCHW
self
.
input_size
=
[
2
,
3
,
5
,
5
]
# NCHW
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
1
,
1
]
self
.
filter_size
=
[
120
,
f_c
,
1
,
1
]
def
init_group
(
self
):
def
init_group
(
self
):
self
.
groups
=
3
self
.
groups
=
3
...
@@ -904,7 +916,7 @@ class TestWithDepthWise3x3_AsyPadding(TestConv2dOp_v2):
...
@@ -904,7 +916,7 @@ class TestWithDepthWise3x3_AsyPadding(TestConv2dOp_v2):
self
.
input_size
=
[
3
,
4
,
10
,
10
]
# NCHW
self
.
input_size
=
[
3
,
4
,
10
,
10
]
# NCHW
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
8
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
16
,
f_c
,
3
,
3
]
def
init_dilation
(
self
):
def
init_dilation
(
self
):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
...
@@ -955,7 +967,7 @@ class TestWithDilation_AsyPadding(TestConv2dOp_v2):
...
@@ -955,7 +967,7 @@ class TestWithDilation_AsyPadding(TestConv2dOp_v2):
self
.
input_size
=
[
2
,
3
,
10
,
10
]
# NCHW
self
.
input_size
=
[
2
,
3
,
10
,
10
]
# NCHW
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
def
init_dilation
(
self
):
def
init_dilation
(
self
):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
...
@@ -971,10 +983,10 @@ class TestWithDilation_AsyPadding(TestConv2dOp_v2):
...
@@ -971,10 +983,10 @@ class TestWithDilation_AsyPadding(TestConv2dOp_v2):
class
TestWithInput1x1Filter1x1_AsyPadding
(
TestConv2dOp_v2
):
class
TestWithInput1x1Filter1x1_AsyPadding
(
TestConv2dOp_v2
):
def
init_test_case
(
self
):
def
init_test_case
(
self
):
self
.
stride
=
[
1
,
1
]
self
.
stride
=
[
1
,
1
]
self
.
input_size
=
[
2
,
3
,
1
,
1
]
# NCHW
self
.
input_size
=
[
40
,
3
,
1
,
1
]
# NCHW
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
1
,
1
]
self
.
filter_size
=
[
120
,
f_c
,
1
,
1
]
def
init_group
(
self
):
def
init_group
(
self
):
self
.
groups
=
3
self
.
groups
=
3
...
@@ -1000,7 +1012,7 @@ class TestDepthwiseConv_AsyPadding(TestConv2dOp_v2):
...
@@ -1000,7 +1012,7 @@ class TestDepthwiseConv_AsyPadding(TestConv2dOp_v2):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
3
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
@@ -1016,7 +1028,7 @@ class TestDepthwiseConv2_AsyPadding(TestConv2dOp_v2):
...
@@ -1016,7 +1028,7 @@ class TestDepthwiseConv2_AsyPadding(TestConv2dOp_v2):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
3
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
@@ -1032,7 +1044,7 @@ class TestDepthwiseConv3_AsyPadding(TestConv2dOp_v2):
...
@@ -1032,7 +1044,7 @@ class TestDepthwiseConv3_AsyPadding(TestConv2dOp_v2):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
@@ -1050,7 +1062,7 @@ class TestDepthwiseConvWithDilation_AsyPadding(TestConv2dOp_v2):
...
@@ -1050,7 +1062,7 @@ class TestDepthwiseConvWithDilation_AsyPadding(TestConv2dOp_v2):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
@@ -1068,7 +1080,7 @@ class TestDepthwiseConvWithDilation2_AsyPadding(TestConv2dOp_v2):
...
@@ -1068,7 +1080,7 @@ class TestDepthwiseConvWithDilation2_AsyPadding(TestConv2dOp_v2):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
@@ -1086,7 +1098,7 @@ class TestDepthwiseConvandFuse_AsyPadding(TestConv2dOp_v2):
...
@@ -1086,7 +1098,7 @@ class TestDepthwiseConvandFuse_AsyPadding(TestConv2dOp_v2):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
3
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
@@ -1104,7 +1116,7 @@ class TestDepthwiseConv2andFuse_AsyPadding(TestConv2dOp_v2):
...
@@ -1104,7 +1116,7 @@ class TestDepthwiseConv2andFuse_AsyPadding(TestConv2dOp_v2):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
3
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
12
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
@@ -1122,7 +1134,7 @@ class TestDepthwiseConv3andFuse_AsyPadding(TestConv2dOp_v2):
...
@@ -1122,7 +1134,7 @@ class TestDepthwiseConv3andFuse_AsyPadding(TestConv2dOp_v2):
self
.
groups
=
3
self
.
groups
=
3
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
@@ -1141,7 +1153,7 @@ class TestDepthwiseConvWithDilationandFuse_AsyPadding(TestConv2dOp_v2):
...
@@ -1141,7 +1153,7 @@ class TestDepthwiseConvWithDilationandFuse_AsyPadding(TestConv2dOp_v2):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
@@ -1160,7 +1172,7 @@ class TestDepthwiseConvWithDilation2andFuse_AsyPadding(TestConv2dOp_v2):
...
@@ -1160,7 +1172,7 @@ class TestDepthwiseConvWithDilation2andFuse_AsyPadding(TestConv2dOp_v2):
self
.
dilations
=
[
2
,
2
]
self
.
dilations
=
[
2
,
2
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
3
,
3
]
self
.
filter_size
=
[
24
,
f_c
,
3
,
3
]
self
.
op_type
=
"depthwise_conv2d"
self
.
op_type
=
"depthwise_conv2d"
def
init_paddings
(
self
):
def
init_paddings
(
self
):
...
...
python/paddle/fluid/tests/unittests/test_conv3d_op.py
浏览文件 @
cce9af0e
...
@@ -361,7 +361,7 @@ class TestWith1x1(TestConv3dOp):
...
@@ -361,7 +361,7 @@ class TestWith1x1(TestConv3dOp):
self
.
input_size
=
[
2
,
3
,
4
,
4
,
4
]
self
.
input_size
=
[
2
,
3
,
4
,
4
,
4
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
1
,
1
,
1
]
self
.
filter_size
=
[
120
,
f_c
,
1
,
1
,
1
]
def
init_dilation
(
self
):
def
init_dilation
(
self
):
self
.
dilations
=
[
1
,
1
,
1
]
self
.
dilations
=
[
1
,
1
,
1
]
...
@@ -374,10 +374,10 @@ class TestWithInput1x1Filter1x1(TestConv3dOp):
...
@@ -374,10 +374,10 @@ class TestWithInput1x1Filter1x1(TestConv3dOp):
def
init_test_case
(
self
):
def
init_test_case
(
self
):
self
.
pad
=
[
0
,
0
,
0
]
self
.
pad
=
[
0
,
0
,
0
]
self
.
stride
=
[
1
,
1
,
1
]
self
.
stride
=
[
1
,
1
,
1
]
self
.
input_size
=
[
2
,
3
,
1
,
1
,
1
]
self
.
input_size
=
[
40
,
3
,
1
,
1
,
1
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
1
,
1
,
1
]
self
.
filter_size
=
[
120
,
f_c
,
1
,
1
,
1
]
def
init_dilation
(
self
):
def
init_dilation
(
self
):
self
.
dilations
=
[
1
,
1
,
1
]
self
.
dilations
=
[
1
,
1
,
1
]
...
@@ -393,7 +393,7 @@ class TestWithDilation(TestConv3dOp):
...
@@ -393,7 +393,7 @@ class TestWithDilation(TestConv3dOp):
self
.
input_size
=
[
2
,
3
,
6
,
6
,
6
]
self
.
input_size
=
[
2
,
3
,
6
,
6
,
6
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
2
,
2
,
2
]
self
.
filter_size
=
[
24
,
f_c
,
2
,
2
,
2
]
def
init_dilation
(
self
):
def
init_dilation
(
self
):
self
.
dilations
=
[
2
,
2
,
2
]
self
.
dilations
=
[
2
,
2
,
2
]
...
@@ -699,7 +699,7 @@ class TestWith1x1_AsyPadding(TestConv3dOp_2):
...
@@ -699,7 +699,7 @@ class TestWith1x1_AsyPadding(TestConv3dOp_2):
self
.
input_size
=
[
2
,
3
,
4
,
4
,
4
]
self
.
input_size
=
[
2
,
3
,
4
,
4
,
4
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
1
,
1
,
1
]
self
.
filter_size
=
[
120
,
f_c
,
1
,
1
,
1
]
def
init_dilation
(
self
):
def
init_dilation
(
self
):
self
.
dilations
=
[
1
,
1
,
1
]
self
.
dilations
=
[
1
,
1
,
1
]
...
@@ -718,7 +718,7 @@ class TestWithDilation_AsyPadding(TestConv3dOp_2):
...
@@ -718,7 +718,7 @@ class TestWithDilation_AsyPadding(TestConv3dOp_2):
self
.
input_size
=
[
2
,
3
,
6
,
6
,
6
]
self
.
input_size
=
[
2
,
3
,
6
,
6
,
6
]
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
assert
np
.
mod
(
self
.
input_size
[
1
],
self
.
groups
)
==
0
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
f_c
=
self
.
input_size
[
1
]
//
self
.
groups
self
.
filter_size
=
[
6
,
f_c
,
2
,
2
,
2
]
self
.
filter_size
=
[
24
,
f_c
,
2
,
2
,
2
]
def
init_dilation
(
self
):
def
init_dilation
(
self
):
self
.
dilations
=
[
2
,
2
,
2
]
self
.
dilations
=
[
2
,
2
,
2
]
...
...
python/paddle/fluid/tests/unittests/test_elementwise_pow_op.py
浏览文件 @
cce9af0e
...
@@ -39,8 +39,8 @@ class TestElementwisePowOp_big_shape_1(TestElementwisePowOp):
...
@@ -39,8 +39,8 @@ class TestElementwisePowOp_big_shape_1(TestElementwisePowOp):
def
setUp
(
self
):
def
setUp
(
self
):
self
.
op_type
=
"elementwise_pow"
self
.
op_type
=
"elementwise_pow"
self
.
inputs
=
{
self
.
inputs
=
{
'X'
:
np
.
random
.
uniform
(
0.1
,
1
,
[
10
0
,
10
0
]).
astype
(
"float64"
),
'X'
:
np
.
random
.
uniform
(
0.1
,
1
,
[
10
,
1
0
]).
astype
(
"float64"
),
'Y'
:
np
.
random
.
uniform
(
0.1
,
1
,
[
10
0
,
10
0
]).
astype
(
"float64"
)
'Y'
:
np
.
random
.
uniform
(
0.1
,
1
,
[
10
,
1
0
]).
astype
(
"float64"
)
}
}
self
.
outputs
=
{
'Out'
:
np
.
power
(
self
.
inputs
[
'X'
],
self
.
inputs
[
'Y'
])}
self
.
outputs
=
{
'Out'
:
np
.
power
(
self
.
inputs
[
'X'
],
self
.
inputs
[
'Y'
])}
...
@@ -49,8 +49,8 @@ class TestElementwisePowOp_big_shape_2(TestElementwisePowOp):
...
@@ -49,8 +49,8 @@ class TestElementwisePowOp_big_shape_2(TestElementwisePowOp):
def
setUp
(
self
):
def
setUp
(
self
):
self
.
op_type
=
"elementwise_pow"
self
.
op_type
=
"elementwise_pow"
self
.
inputs
=
{
self
.
inputs
=
{
'X'
:
np
.
random
.
uniform
(
0.1
,
1
,
[
10
0
,
10
0
]).
astype
(
"float64"
),
'X'
:
np
.
random
.
uniform
(
0.1
,
1
,
[
10
,
1
0
]).
astype
(
"float64"
),
'Y'
:
np
.
random
.
uniform
(
0.1
,
1
,
[
10
0
,
10
0
]).
astype
(
"float64"
)
*
20
'Y'
:
np
.
random
.
uniform
(
0.1
,
1
,
[
10
,
1
0
]).
astype
(
"float64"
)
*
20
}
}
self
.
outputs
=
{
'Out'
:
np
.
power
(
self
.
inputs
[
'X'
],
self
.
inputs
[
'Y'
])}
self
.
outputs
=
{
'Out'
:
np
.
power
(
self
.
inputs
[
'X'
],
self
.
inputs
[
'Y'
])}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录