Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
ada16f94
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看板
未验证
提交
ada16f94
编写于
9月 06, 2023
作者:
Z
zhangbo9674
提交者:
GitHub
9月 06, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[IR] Refine the Build interface of split op (#56924)
* fix bug * fix bug
上级
6d0ef342
变更
7
显示空白变更内容
内联
并排
Showing
7 changed file
with
100 addition
and
28 deletion
+100
-28
paddle/fluid/framework/new_executor/standalone_executor.cc
paddle/fluid/framework/new_executor/standalone_executor.cc
+2
-5
paddle/fluid/ir/dialect/op_generator/op_build_gen.py
paddle/fluid/ir/dialect/op_generator/op_build_gen.py
+70
-9
paddle/fluid/ir/transforms/inplace_pass.cc
paddle/fluid/ir/transforms/inplace_pass.cc
+11
-9
paddle/ir/core/ir_context.cc
paddle/ir/core/ir_context.cc
+1
-1
paddle/phi/core/flags.cc
paddle/phi/core/flags.cc
+14
-1
python/paddle/nn/functional/activation.py
python/paddle/nn/functional/activation.py
+1
-1
test/ir/new_ir/test_pd_inplace_pass.py
test/ir/new_ir/test_pd_inplace_pass.py
+1
-2
未找到文件。
paddle/fluid/framework/new_executor/standalone_executor.cc
浏览文件 @
ada16f94
...
...
@@ -16,8 +16,8 @@
#include "paddle/fluid/framework/new_executor/feed_fetch_utils.h"
#include "paddle/fluid/framework/new_executor/interpreter/interpreter_util.h"
#include "paddle/fluid/framework/new_executor/program_interpreter.h"
#include "paddle/fluid/platform/flags.h"
#include "paddle/fluid/platform/profiler/event_tracing.h"
#include "paddle/phi/core/flags.h"
#include "paddle/fluid/ir/transforms/pd_op_to_kernel_pass.h"
...
...
@@ -29,10 +29,7 @@
PHI_DECLARE_bool
(
enable_new_ir_in_executor
);
PHI_DECLARE_bool
(
enable_new_ir_api
);
PADDLE_DEFINE_EXPORTED_bool
(
new_ir_apply_inplace_pass
,
true
,
"new ir kernel program apply inplace pass."
);
PHI_DECLARE_bool
(
new_ir_apply_inplace_pass
);
namespace
paddle
{
namespace
framework
{
...
...
paddle/fluid/ir/dialect/op_generator/op_build_gen.py
浏览文件 @
ada16f94
...
...
@@ -13,6 +13,10 @@
# limitations under the License.
# generator build function
_INFERMETA_NEED_META_CONFIG
=
{
'SplitInferMeta'
}
_PREPARE_DATA_WITH_UNKNOW_ATTRIBUTE
=
{
'SplitOp'
}
OP_BUILD_TEMPLATE
=
"""
void {op_name}::Build({build_args}) {{
{get_attributes}
...
...
@@ -273,6 +277,7 @@ def GenBuildAttributes(
def
GenBuildOutputs
(
op_class_name
,
op_input_name_list
,
op_input_type_list
,
op_mutable_attribute_name_list
,
...
...
@@ -316,6 +321,40 @@ def GenBuildOutputs(
CREATE_INTARRAY_MUTABLE_ATTRIBUE_TEMPLATE
=
""" std::vector<int64_t> {name} = {name}_.owner()->dyn_cast<paddle::dialect::FullIntArrayOp>().attributes().at("value").dyn_cast<paddle::dialect::IntArrayAttribute>().data().GetData(); (void){name};
\n
"""
CREATE_SCALAR_MUTABLE_ATTRIBUE_TEMPLATE
=
""" {dtype} {name} = {name}_.owner()->dyn_cast<paddle::dialect::FullOp>().attributes().at("value").dyn_cast<paddle::dialect::ScalarAttribute>().data().to<{dtype}>(); (void){name};
\n
"""
CREATE_INTARRAY_MUTABLE_ATTRIBUE_WITH_UNKONW_DATA_TEMPLATE
=
""" phi::IntArray {name};
if ({name}_.owner()->info().id() == ir::TypeId::get<paddle::dialect::FullIntArrayOp>()) {{
{name} = std::move(phi::IntArray({name}_.owner()
->dyn_cast<paddle::dialect::FullIntArrayOp>()
.attributes()
.at("value")
.dyn_cast<paddle::dialect::IntArrayAttribute>()
.data()
.GetData()));
}}
else {{
PADDLE_ENFORCE(
{name}_.type().isa<ir::VectorType>(),
phi::errors::PreconditionNotMet("section Type should be VectorType."));
size_t {name}_size = {name}_.type().dyn_cast<ir::VectorType>().size();
{name} = std::move(phi::IntArray(std::vector<int64_t>({name}_size, -1)));
{name}.SetFromTensor(true);
}}
\n
"""
CREATE_SCALAR_MUTABLE_ATTRIBUE_WITH_UNKONW_DATA_TEMPLATE
=
""" phi::Scalar {name};
if ({name}_.owner()->info().id() == ir::TypeId::get<paddle::dialect::FullOp>()) {{
{name} = std::move(phi::Scalar({name}_.owner()
->dyn_cast<paddle::dialect::FullOp>()
.attributes()
.at("value")
.dyn_cast<paddle::dialect::ScalarAttribute>()
.data()
.to<int>()));
}}
else {{
{name} = std::move(phi::Scalar(-1));
{name}.SetFromTensor(true);
}}
\n
"""
CREATE_OUTPUT_METATENSOR_TEMPLATE
=
""" phi::DenseTensor dense_{name};
phi::MetaTensor meta_{name}(&dense_{name});
"""
...
...
@@ -348,6 +387,11 @@ def GenBuildOutputs(
attr_dtype
=
op_mutable_attribute_type_list
[
idx
]
# int_array
if
attr_dtype
[
0
]
==
"paddle::dialect::IntArrayAttribute"
:
if
op_class_name
in
_PREPARE_DATA_WITH_UNKNOW_ATTRIBUTE
:
build_output_str
+=
CREATE_INTARRAY_MUTABLE_ATTRIBUE_WITH_UNKONW_DATA_TEMPLATE
.
format
(
name
=
op_mutable_attribute_name_list
[
idx
]
)
else
:
build_output_str
+=
(
CREATE_INTARRAY_MUTABLE_ATTRIBUE_TEMPLATE
.
format
(
name
=
op_mutable_attribute_name_list
[
idx
]
...
...
@@ -355,6 +399,12 @@ def GenBuildOutputs(
)
# scalar
elif
attr_dtype
[
0
]
==
"paddle::dialect::ScalarAttribute"
:
if
op_class_name
in
_PREPARE_DATA_WITH_UNKNOW_ATTRIBUTE
:
build_output_str
+=
CREATE_SCALAR_MUTABLE_ATTRIBUE_WITH_UNKONW_DATA_TEMPLATE
.
format
(
name
=
op_mutable_attribute_name_list
[
idx
],
dtype
=
attr_dtype
[
1
],
)
else
:
build_output_str
+=
(
CREATE_SCALAR_MUTABLE_ATTRIBUE_TEMPLATE
.
format
(
name
=
op_mutable_attribute_name_list
[
idx
],
...
...
@@ -421,6 +471,16 @@ def GenBuildOutputs(
CREATE_INFER_META_FUNC_TEMPLATE
=
"""
phi::{func}({args});
"""
CREATE_INFER_META_FUNC_WITH_METACINFIG_TEMPLATE
=
"""
phi::{func}({args}, phi::MetaConfig(false, false));
"""
if
op_infer_meta_map
[
'func'
]
in
_INFERMETA_NEED_META_CONFIG
:
build_output_str
+=
(
CREATE_INFER_META_FUNC_WITH_METACINFIG_TEMPLATE
.
format
(
func
=
op_infer_meta_map
[
'func'
],
args
=
", "
.
join
(
infer_meta_args
)
)
)
else
:
build_output_str
+=
CREATE_INFER_META_FUNC_TEMPLATE
.
format
(
func
=
op_infer_meta_map
[
'func'
],
args
=
", "
.
join
(
infer_meta_args
)
)
...
...
@@ -528,6 +588,7 @@ def gen_build_func_str(
op_non_mutable_attribute_type_list
,
)
build_outputs_str
=
GenBuildOutputs
(
op_class_name
,
op_input_name_list
,
op_input_type_list
,
op_mutable_attribute_name_list
,
...
...
paddle/fluid/ir/transforms/inplace_pass.cc
浏览文件 @
ada16f94
...
...
@@ -25,10 +25,11 @@
#include "paddle/ir/pass/pass.h"
#include "paddle/ir/pass/pass_registry.h"
namespace
details
{
// NOTE(zhangbo): Which kind of value can be deleted?
// (1) Value's type needs to be AllocatedDenseTensorType or
// AllocatedSelectedRowsType; (2) Value's is not persisable.
bool
CanBeDeleted
(
ir
::
Value
value
)
{
static
bool
CanBeDeleted
(
ir
::
Value
value
)
{
if
(
!
value
.
type
())
{
return
false
;
}
...
...
@@ -47,7 +48,7 @@ bool CanBeDeleted(ir::Value value) {
return
true
;
}
bool
CanDoInplace
(
const
std
::
unordered_set
<
ir
::
Value
>&
eager_dels
,
static
bool
CanDoInplace
(
const
std
::
unordered_set
<
ir
::
Value
>&
eager_dels
,
ir
::
Value
input
,
ir
::
Value
output
)
{
if
(
input
.
type
()
!=
output
.
type
())
{
...
...
@@ -61,7 +62,7 @@ bool CanDoInplace(const std::unordered_set<ir::Value>& eager_dels,
return
true
;
}
bool
IsNoNeedBuffer
(
ir
::
Operation
*
op
,
ir
::
Value
value
)
{
static
bool
IsNoNeedBuffer
(
ir
::
Operation
*
op
,
ir
::
Value
value
)
{
if
(
op
->
dialect
()
->
name
().
compare
(
paddle
::
dialect
::
PaddleKernelDialect
::
name
())
!=
0
)
{
VLOG
(
8
)
<<
op
->
name
()
...
...
@@ -90,7 +91,7 @@ bool IsNoNeedBuffer(ir::Operation* op, ir::Value value) {
// NOTE(zhangbo): pd.feed's output and pd.fetch's input can not be eager
// deleted.
std
::
unordered_set
<
ir
::
Value
>
GetSkipDeletionValues
(
ir
::
Block
*
block
)
{
st
atic
st
d
::
unordered_set
<
ir
::
Value
>
GetSkipDeletionValues
(
ir
::
Block
*
block
)
{
std
::
unordered_set
<
ir
::
Value
>
skip_dels
;
for
(
auto
&
op
:
*
block
)
{
if
(
op
->
dialect
()
->
name
().
compare
(
...
...
@@ -119,7 +120,7 @@ std::unordered_set<ir::Value> GetSkipDeletionValues(ir::Block* block) {
// NOTE(zhangbo): For inplace Pass, currently only the kernel_dialect operator
// is supported. Therefore, this function only returns the values in the
// kernel_dialect operator that can be eager deleted.
std
::
unordered_map
<
ir
::
Operation
*
,
std
::
unordered_set
<
ir
::
Value
>>
st
atic
st
d
::
unordered_map
<
ir
::
Operation
*
,
std
::
unordered_set
<
ir
::
Value
>>
GetEagerDeletionValues
(
ir
::
Block
*
block
)
{
std
::
unordered_set
<
ir
::
Value
>
skip_dels
=
GetSkipDeletionValues
(
block
);
...
...
@@ -167,7 +168,7 @@ GetEagerDeletionValues(ir::Block* block) {
return
eager_dels
;
}
std
::
unordered_map
<
ir
::
Operation
*
,
std
::
string
>
GetInplaceOps
(
st
atic
st
d
::
unordered_map
<
ir
::
Operation
*
,
std
::
string
>
GetInplaceOps
(
ir
::
Block
*
block
)
{
const
auto
eager_dels
=
GetEagerDeletionValues
(
block
);
...
...
@@ -282,6 +283,7 @@ std::unordered_map<ir::Operation*, std::string> GetInplaceOps(
}
return
inplace_ops
;
}
}
// namespace details
class
InplacePass
:
public
ir
::
Pass
{
public:
...
...
@@ -292,7 +294,7 @@ class InplacePass : public ir::Pass {
IR_ENFORCE
(
module_op
,
"DcePass should run on module op."
);
auto
*
block
=
module_op
.
block
();
auto
inplace_ops
=
GetInplaceOps
(
block
);
auto
inplace_ops
=
details
::
GetInplaceOps
(
block
);
for
(
auto
kv
:
inplace_ops
)
{
VLOG
(
6
)
<<
"Do inplace for: "
...
...
paddle/ir/core/ir_context.cc
浏览文件 @
ada16f94
...
...
@@ -118,7 +118,7 @@ class IrContextImpl {
<<
", OpInfo: ptr="
<<
iter
->
second
.
AsOpaquePointer
()
<<
"]."
;
return
iter
->
second
;
}
LOG
(
WARNING
)
<<
"No cache found operation of: [Name="
<<
name
<<
"]."
;
VLOG
(
8
)
<<
"No cache found operation of: [Name="
<<
name
<<
"]."
;
return
OpInfo
();
}
const
OpInfoMap
&
registered_op_info_map
()
{
return
registed_op_infos_
;
}
...
...
paddle/phi/core/flags.cc
浏览文件 @
ada16f94
...
...
@@ -1301,6 +1301,19 @@ PHI_DEFINE_EXPORTED_bool(enable_new_ir_in_executor_trace_run,
false
,
"Enable new IR in executor"
);
/**
* Apply inplace pass to new IR FLAG
* Name: new_ir_apply_inplace_pass
* Since Version: 2.6.0
* Value Range: bool, default=true
* Example:
* Note: If Ture, will apply inplace pass to new IR.
*/
PHI_DEFINE_EXPORTED_bool
(
new_ir_apply_inplace_pass
,
true
,
"Whether to apply inplace pass on lowering "
"::ir::Program to Kernel Dialect"
);
PHI_DEFINE_EXPORTED_bool
(
enable_record_memory
,
false
,
"Enable memory recorder"
);
PHI_DEFINE_EXPORTED_bool
(
...
...
python/paddle/nn/functional/activation.py
浏览文件 @
ada16f94
...
...
@@ -759,7 +759,7 @@ def relu(x, name=None):
if
in_dynamic_mode
():
return
_C_ops
.
relu
(
x
)
else
:
if
paddle
.
ir
.
core
.
_use_new_ir_api
():
if
paddle
.
framework
.
in_dynamic_or_new_ir_mode
():
# Below code will be removed after we can generate IR api automatically
return
paddle
.
_ir_ops
.
relu
(
x
)
...
...
test/ir/new_ir/test_pd_inplace_pass.py
浏览文件 @
ada16f94
...
...
@@ -17,14 +17,13 @@ import unittest
import
numpy
as
np
import
paddle
from
paddle.fluid
import
core
paddle
.
enable_static
()
class
TestPdInplacePass
(
unittest
.
TestCase
):
def
test_pd_inplace_pass
(
self
):
place
=
core
.
Place
()
place
=
paddle
.
framework
.
core
.
Place
()
place
.
set_place
(
paddle
.
CPUPlace
())
new_scope
=
paddle
.
static
.
Scope
()
main_program
=
paddle
.
static
.
Program
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录