Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
987cb97e
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看板
未验证
提交
987cb97e
编写于
8月 30, 2023
作者:
K
kangguangli
提交者:
GitHub
8月 30, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[NewIR] fix logical op infermeta (#56711)
* fix logical op infermeta * add test * adpat inplace api
上级
2ef4ec71
变更
8
显示空白变更内容
内联
并排
Showing
8 changed file
with
42 addition
and
5 deletion
+42
-5
paddle/ir/core/ir_printer.cc
paddle/ir/core/ir_printer.cc
+5
-0
paddle/ir/core/program.h
paddle/ir/core/program.h
+2
-0
paddle/phi/api/yaml/ops.yaml
paddle/phi/api/yaml/ops.yaml
+4
-4
paddle/phi/infermeta/binary.cc
paddle/phi/infermeta/binary.cc
+9
-0
paddle/phi/infermeta/binary.h
paddle/phi/infermeta/binary.h
+4
-0
paddle/phi/infermeta/unary.cc
paddle/phi/infermeta/unary.cc
+7
-0
paddle/phi/infermeta/unary.h
paddle/phi/infermeta/unary.h
+2
-0
test/cpp/ir/core/ir_program_test.cc
test/cpp/ir/core/ir_program_test.cc
+9
-1
未找到文件。
paddle/ir/core/ir_printer.cc
浏览文件 @
987cb97e
...
@@ -324,4 +324,9 @@ std::ostream& operator<<(std::ostream& os, Attribute attr) {
...
@@ -324,4 +324,9 @@ std::ostream& operator<<(std::ostream& os, Attribute attr) {
return
os
;
return
os
;
}
}
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
Program
&
prog
)
{
prog
.
Print
(
os
);
return
os
;
}
}
// namespace ir
}
// namespace ir
paddle/ir/core/program.h
浏览文件 @
987cb97e
...
@@ -71,4 +71,6 @@ class IR_API Program {
...
@@ -71,4 +71,6 @@ class IR_API Program {
ParameterMap
parameters_
;
ParameterMap
parameters_
;
};
};
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
Program
&
prog
);
}
// namespace ir
}
// namespace ir
paddle/phi/api/yaml/ops.yaml
浏览文件 @
987cb97e
...
@@ -1515,7 +1515,7 @@
...
@@ -1515,7 +1515,7 @@
args
:
(Tensor x, Tensor y)
args
:
(Tensor x, Tensor y)
output
:
Tensor(out)
output
:
Tensor(out)
infer_meta
:
infer_meta
:
func
:
Elementwise
InferMeta
func
:
LogicalBinary
InferMeta
kernel
:
kernel
:
func
:
logical_and
func
:
logical_and
data_type
:
x
data_type
:
x
...
@@ -1526,7 +1526,7 @@
...
@@ -1526,7 +1526,7 @@
args
:
(Tensor x)
args
:
(Tensor x)
output
:
Tensor(out)
output
:
Tensor(out)
infer_meta
:
infer_meta
:
func
:
UnchangedInferM
eta
func
:
LogicalNotInferm
eta
kernel
:
kernel
:
func
:
logical_not
func
:
logical_not
data_type
:
x
data_type
:
x
...
@@ -1537,7 +1537,7 @@
...
@@ -1537,7 +1537,7 @@
args
:
(Tensor x, Tensor y)
args
:
(Tensor x, Tensor y)
output
:
Tensor(out)
output
:
Tensor(out)
infer_meta
:
infer_meta
:
func
:
Elementwise
InferMeta
func
:
LogicalBinary
InferMeta
kernel
:
kernel
:
func
:
logical_or
func
:
logical_or
data_type
:
x
data_type
:
x
...
@@ -1548,7 +1548,7 @@
...
@@ -1548,7 +1548,7 @@
args
:
(Tensor x, Tensor y)
args
:
(Tensor x, Tensor y)
output
:
Tensor(out)
output
:
Tensor(out)
infer_meta
:
infer_meta
:
func
:
Elementwise
InferMeta
func
:
LogicalBinary
InferMeta
kernel
:
kernel
:
func
:
logical_xor
func
:
logical_xor
data_type
:
x
data_type
:
x
...
...
paddle/phi/infermeta/binary.cc
浏览文件 @
987cb97e
...
@@ -1942,6 +1942,15 @@ void LogLossInferMeta(const MetaTensor& input,
...
@@ -1942,6 +1942,15 @@ void LogLossInferMeta(const MetaTensor& input,
out
->
share_lod
(
input
);
out
->
share_lod
(
input
);
}
}
void
LogicalBinaryInferMeta
(
const
MetaTensor
&
x
,
const
MetaTensor
&
y
,
MetaTensor
*
out
)
{
ElementwiseInferMeta
(
x
,
y
,
out
);
if
(
!
(
out
->
is_same_tensor
(
x
)))
{
out
->
set_dtype
(
DataType
::
BOOL
);
}
}
void
LUUnpackInferMeta
(
const
MetaTensor
&
x
,
void
LUUnpackInferMeta
(
const
MetaTensor
&
x
,
const
MetaTensor
&
pivots
,
const
MetaTensor
&
pivots
,
bool
unpack_ludata
,
bool
unpack_ludata
,
...
...
paddle/phi/infermeta/binary.h
浏览文件 @
987cb97e
...
@@ -300,6 +300,10 @@ void IndexAddInferMeta(const MetaTensor& x,
...
@@ -300,6 +300,10 @@ void IndexAddInferMeta(const MetaTensor& x,
void
KronInferMeta
(
const
MetaTensor
&
x
,
const
MetaTensor
&
y
,
MetaTensor
*
out
);
void
KronInferMeta
(
const
MetaTensor
&
x
,
const
MetaTensor
&
y
,
MetaTensor
*
out
);
void
LogicalBinaryInferMeta
(
const
MetaTensor
&
x
,
const
MetaTensor
&
y
,
MetaTensor
*
out
);
void
LogLossInferMeta
(
const
MetaTensor
&
input
,
void
LogLossInferMeta
(
const
MetaTensor
&
input
,
const
MetaTensor
&
label
,
const
MetaTensor
&
label
,
float
epsilon
,
float
epsilon
,
...
...
paddle/phi/infermeta/unary.cc
浏览文件 @
987cb97e
...
@@ -2083,6 +2083,13 @@ void KthvalueInferMeta(const MetaTensor& x,
...
@@ -2083,6 +2083,13 @@ void KthvalueInferMeta(const MetaTensor& x,
indices
->
set_dtype
(
x
.
dtype
());
indices
->
set_dtype
(
x
.
dtype
());
}
}
void
LogicalNotInfermeta
(
const
MetaTensor
&
x
,
MetaTensor
*
out
)
{
UnchangedInferMeta
(
x
,
out
);
if
(
!
(
out
->
is_same_tensor
(
x
)))
{
out
->
set_dtype
(
DataType
::
BOOL
);
}
}
void
LogsumexpInferMeta
(
const
MetaTensor
&
input
,
void
LogsumexpInferMeta
(
const
MetaTensor
&
input
,
const
std
::
vector
<
int64_t
>&
axis
,
const
std
::
vector
<
int64_t
>&
axis
,
bool
keepdim
,
bool
keepdim
,
...
...
paddle/phi/infermeta/unary.h
浏览文件 @
987cb97e
...
@@ -298,6 +298,8 @@ void KthvalueInferMeta(const MetaTensor& x,
...
@@ -298,6 +298,8 @@ void KthvalueInferMeta(const MetaTensor& x,
MetaTensor
*
indices
,
MetaTensor
*
indices
,
MetaConfig
=
MetaConfig
());
MetaConfig
=
MetaConfig
());
void
LogicalNotInfermeta
(
const
MetaTensor
&
x
,
MetaTensor
*
out
);
void
LogsumexpInferMeta
(
const
MetaTensor
&
input
,
void
LogsumexpInferMeta
(
const
MetaTensor
&
input
,
const
std
::
vector
<
int64_t
>&
axis
,
const
std
::
vector
<
int64_t
>&
axis
,
bool
keepdim
,
bool
keepdim
,
...
...
test/cpp/ir/core/ir_program_test.cc
浏览文件 @
987cb97e
...
@@ -14,6 +14,8 @@
...
@@ -14,6 +14,8 @@
#include <gtest/gtest.h>
#include <gtest/gtest.h>
#include <sstream>
#include "paddle/fluid/ir/dialect/paddle_dialect/interface/op_yaml_info.h"
#include "paddle/fluid/ir/dialect/paddle_dialect/interface/op_yaml_info.h"
#include "paddle/fluid/ir/dialect/paddle_dialect/ir/pd_dialect.h"
#include "paddle/fluid/ir/dialect/paddle_dialect/ir/pd_dialect.h"
#include "paddle/fluid/ir/dialect/paddle_dialect/ir/pd_type.h"
#include "paddle/fluid/ir/dialect/paddle_dialect/ir/pd_type.h"
...
@@ -193,7 +195,13 @@ TEST(program_test, program) {
...
@@ -193,7 +195,13 @@ TEST(program_test, program) {
EXPECT_EQ
(
program
.
block
()
->
size
()
==
5
,
true
);
EXPECT_EQ
(
program
.
block
()
->
size
()
==
5
,
true
);
EXPECT_EQ
(
program
.
parameters_num
()
==
3
,
true
);
EXPECT_EQ
(
program
.
parameters_num
()
==
3
,
true
);
program
.
Print
(
std
::
cout
);
std
::
stringstream
ss
;
program
.
Print
(
ss
);
std
::
stringstream
ss_ostram
;
ss_ostram
<<
program
;
EXPECT_EQ
(
ss
.
str
(),
ss_ostram
.
str
());
}
}
TEST
(
program_test
,
slice_combine_test
)
{
TEST
(
program_test
,
slice_combine_test
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录