Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
80975d45
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看板
未验证
提交
80975d45
编写于
6月 20, 2023
作者:
H
houj04
提交者:
GitHub
6月 20, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[XPU] optimize gelu unittest. (#54737)
上级
64696b9b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
35 addition
and
16 deletion
+35
-16
test/xpu/test_activation_op_xpu.py
test/xpu/test_activation_op_xpu.py
+35
-16
未找到文件。
test/xpu/test_activation_op_xpu.py
浏览文件 @
80975d45
...
...
@@ -364,31 +364,50 @@ class XPUTestGeluOP(XPUOpTestWrapper):
self
.
op_name
=
'gelu'
self
.
use_dynamic_create_class
=
False
class
XPUTestGelu
(
TestActivationOPBase
):
class
XPUTestGelu
Base
(
TestActivationOPBase
):
def
set_case
(
self
):
self
.
op_type
=
"gelu"
self
.
dtype
=
self
.
in_type
approximate
=
False
x
=
np
.
random
.
uniform
(
-
1
,
1
,
[
11
,
17
]).
astype
(
self
.
dtype
)
out
=
gelu
(
x
,
approximate
)
self
.
init_config
()
out
=
gelu
(
self
.
x
,
self
.
approximate
)
self
.
inputs
=
{
'X'
:
x
}
self
.
inputs
=
{
'X'
:
self
.
x
}
self
.
outputs
=
{
'Out'
:
out
}
self
.
attrs
=
{
"approximate"
:
approximate
,
'use_xpu'
:
True
}
self
.
attrs
=
{
"approximate"
:
self
.
approximate
,
'use_xpu'
:
True
}
class
XPUTestGeluApproximate
(
TestActivationOPBase
):
def
set_case
(
self
):
self
.
op_type
=
"gelu"
self
.
dtype
=
self
.
in_type
def
init_config
(
self
):
self
.
approximate
=
False
self
.
x
=
np
.
random
.
uniform
(
-
1
,
1
,
[
11
,
17
]).
astype
(
self
.
dtype
)
approximate
=
True
x
=
np
.
random
.
uniform
(
-
1
,
1
,
[
11
,
17
]).
astype
(
self
.
dtype
)
out
=
gelu
(
x
,
approximate
)
class
XPUTestGelu_ZeroDim
(
XPUTestGeluBase
):
def
init_config
(
self
):
self
.
approximate
=
False
self
.
x
=
np
.
random
.
uniform
(
-
2
,
2
,
[]).
astype
(
self
.
dtype
)
self
.
inputs
=
{
'X'
:
x
}
self
.
outputs
=
{
'Out'
:
out
}
self
.
attrs
=
{
"approximate"
:
approximate
,
'use_xpu'
:
True
}
class
XPUTestGelu1
(
XPUTestGeluBase
):
def
init_config
(
self
):
self
.
approximate
=
True
self
.
x
=
np
.
random
.
uniform
(
-
1
,
1
,
[
11
,
17
]).
astype
(
self
.
dtype
)
class
XPUTestGelu2
(
XPUTestGeluBase
):
def
init_config
(
self
):
self
.
approximate
=
False
self
.
x
=
np
.
random
.
uniform
(
-
2
,
2
,
[
1024
,
8
]).
astype
(
self
.
dtype
)
class
XPUTestGelu3
(
XPUTestGeluBase
):
def
init_config
(
self
):
self
.
approximate
=
True
self
.
x
=
np
.
random
.
uniform
(
-
2
,
2
,
[
4
,
512
,
15
,
15
]).
astype
(
self
.
dtype
)
class
XPUTestGelu4
(
XPUTestGeluBase
):
def
init_config
(
self
):
self
.
approximate
=
False
self
.
x
=
np
.
random
.
uniform
(
-
2
,
2
,
[
4
,
256
,
22
,
22
]).
astype
(
self
.
dtype
)
support_types
=
get_xpu_op_support_types
(
'gelu'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录