Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
060e4fab
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,发现更多精彩内容 >>
未验证
提交
060e4fab
编写于
5月 30, 2023
作者:
H
houj04
提交者:
GitHub
5月 30, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[XPU] using xpu::normal in gaussian kernel. (#54176)
上级
74ec1993
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
17 addition
and
25 deletion
+17
-25
cmake/external/xpu.cmake
cmake/external/xpu.cmake
+1
-1
paddle/phi/kernels/xpu/gaussian_kernel.cc
paddle/phi/kernels/xpu/gaussian_kernel.cc
+12
-24
paddle/phi/kernels/xpu/gelu_kernel.cc
paddle/phi/kernels/xpu/gelu_kernel.cc
+4
-0
未找到文件。
cmake/external/xpu.cmake
浏览文件 @
060e4fab
...
...
@@ -8,7 +8,7 @@ set(XPU_API_LIB_NAME "libxpuapi.so")
set
(
XPU_RT_LIB_NAME
"libxpurt.so"
)
set
(
XPU_XFT_LIB_NAME
"libxft.so"
)
set
(
XPU_BASE_DATE
"2023052
3
"
)
set
(
XPU_BASE_DATE
"2023052
9
"
)
set
(
XPU_XCCL_BASE_VERSION
"1.0.49.2"
)
set
(
XPU_XFT_BASE_VERSION
"latest"
)
...
...
paddle/phi/kernels/xpu/gaussian_kernel.cc
浏览文件 @
060e4fab
...
...
@@ -15,7 +15,6 @@
#include "paddle/phi/kernels/gaussian_kernel.h"
#include "paddle/phi/backends/xpu/enforce_xpu.h"
#include "paddle/phi/common/memory_utils.h"
#include "paddle/phi/core/generator.h"
#include "paddle/phi/core/kernel_registry.h"
...
...
@@ -29,30 +28,19 @@ void GaussianKernel(const Context& ctx,
int
seed
,
DataType
dtype
,
DenseTensor
*
out
)
{
std
::
normal_distribution
<
float
>
dist
(
mean
,
std
);
int64_t
size
=
out
->
numel
();
ctx
.
template
Alloc
<
T
>(
out
);
auto
*
data
=
out
->
data
();
uint64_t
seed_v
=
static_cast
<
uint64_t
>
(
seed
);
// TODO(pangyoki): implement GetXPURandomEngine to set different seeds on
// corresponding XPU device.
std
::
shared_ptr
<
std
::
mt19937_64
>
engine
;
if
(
seed_v
)
{
engine
=
std
::
make_shared
<
std
::
mt19937_64
>
();
engine
->
seed
(
seed_v
);
}
else
{
engine
=
ctx
.
GetGenerator
()
->
GetCPUEngine
();
}
out
->
Resize
(
phi
::
make_ddim
(
shape
.
GetData
()));
T
*
data
=
ctx
.
template
Alloc
<
T
>(
out
);
using
XPUType
=
typename
XPUTypeTrait
<
T
>::
Type
;
int64_t
real_seed
=
seed
!=
0
?
seed
:
ctx
.
GetGenerator
()
->
Random64
();
std
::
unique_ptr
<
T
[]
>
data_cpu
(
new
T
[
size
]);
for
(
int64_t
i
=
0
;
i
<
size
;
++
i
)
{
data_cpu
[
i
]
=
dist
(
*
engine
);
}
memory_utils
::
Copy
(
ctx
.
GetPlace
(),
data
,
phi
::
CPUPlace
(),
reinterpret_cast
<
void
*>
(
data_cpu
.
get
()),
size
*
sizeof
(
T
));
// int normal(Context* ctx, T* x, T mean, T std, int64_t len, int64_t seed);
int
r
=
xpu
::
normal
<
XPUType
>
(
ctx
.
x_context
(),
reinterpret_cast
<
XPUType
*>
(
data
),
mean
,
std
,
out
->
numel
(),
real_seed
);
PADDLE_ENFORCE_XDNN_SUCCESS
(
r
,
"normal"
);
}
}
// namespace phi
...
...
paddle/phi/kernels/xpu/gelu_kernel.cc
浏览文件 @
060e4fab
...
...
@@ -14,6 +14,7 @@
#include "paddle/phi/kernels/gelu_kernel.h"
#include "glog/logging.h"
#include "paddle/phi/backends/xpu/enforce_xpu.h"
#include "paddle/phi/backends/xpu/xpu_context.h"
#include "paddle/phi/common/float16.h"
...
...
@@ -26,6 +27,9 @@ void GeluKernel(const Context& dev_ctx,
const
DenseTensor
&
x
,
bool
approximate
,
DenseTensor
*
out
)
{
if
(
approximate
)
{
LOG_FIRST_N
(
INFO
,
1
)
<<
"XPU does not support gelu with approximate."
;
}
using
XPUType
=
typename
XPUTypeTrait
<
T
>::
Type
;
dev_ctx
.
template
Alloc
<
T
>(
out
);
int
r
=
xpu
::
gelu
<
XPUType
>
(
dev_ctx
.
x_context
(),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录