Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
444a7358
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看板
未验证
提交
444a7358
编写于
11月 15, 2021
作者:
L
Linjie Chen
提交者:
GitHub
11月 15, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Optimize Matmul_v2 (#37037)
Optimize dot product of Matmul_v2
上级
6b0cc2b1
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
18 addition
and
20 deletion
+18
-20
paddle/pten/kernels/functions/math/matmul_func.h
paddle/pten/kernels/functions/math/matmul_func.h
+18
-20
未找到文件。
paddle/pten/kernels/functions/math/matmul_func.h
浏览文件 @
444a7358
...
...
@@ -17,9 +17,7 @@ limitations under the License. */
#include "paddle/fluid/operators/math/blas.h"
#include "paddle/fluid/operators/math/complex_functors.h"
#include "paddle/fluid/operators/eigen/eigen_function.h"
#include "paddle/pten/core/dense_tensor.h"
#include "paddle/pten/kernels/functions/eigen/common.h"
namespace
pten
{
namespace
math
{
...
...
@@ -105,34 +103,34 @@ void MatMulFunction(const DeviceContext& dev_ctx,
const
T
*
x_data
=
X
.
data
<
T
>
();
const
T
*
y_data
=
Y
.
data
<
T
>
();
auto
blas
=
paddle
::
operators
::
math
::
GetBlas
<
DeviceContext
,
T
>
(
dev_ctx
);
if
(
x_ndim
==
1
&&
y_ndim
==
1
)
{
const
int
M
=
X
.
numel
();
const
int
N
=
Y
.
numel
();
PADDLE_ENFORCE_EQ
(
X
.
numel
()
,
Y
.
numel
()
,
M
,
N
,
paddle
::
platform
::
errors
::
InvalidArgument
(
"X's numbers must be equal to Y's numbers,"
"when X/Y's dims =1. But received X has [%d] elements,"
"received Y has [%d] elements"
,
X
.
numel
()
,
Y
.
numel
()
));
M
,
N
));
VLOG
(
3
)
<<
"MatMul's case 1"
;
Out
->
Resize
({
1
});
Out
->
mutable_data
<
T
>
();
auto
out_eigen
=
EigenScalar
<
T
>::
From
(
*
Out
);
auto
x_eigen
=
EigenVector
<
T
>::
Flatten
(
X
);
auto
y_eigen
=
EigenVector
<
T
>::
Flatten
(
Y
);
auto
&
dev
=
*
dev_ctx
.
eigen_device
();
if
(
flag
)
{
out_eigen
.
device
(
dev
)
=
(
x_eigen
*
y_eigen
).
sum
()
+
out_eigen
;
}
else
{
out_eigen
.
device
(
dev
)
=
(
x_eigen
*
y_eigen
).
sum
();
}
blas
.
GEMM
(
CblasNoTrans
,
CblasTrans
,
1
,
1
,
M
,
static_cast
<
T
>
(
1
),
y_data
,
x_data
,
static_cast
<
T
>
(
flag
),
Out
->
mutable_data
<
T
>
());
return
;
}
auto
blas
=
paddle
::
operators
::
math
::
GetBlas
<
DeviceContext
,
T
>
(
dev_ctx
);
if
(
x_ndim
==
1
)
{
const
int
N
=
X
.
numel
();
if
(
trans_y
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录