Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
87054fe3
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看板
未验证
提交
87054fe3
编写于
6月 20, 2023
作者:
H
HongyuJia
提交者:
GitHub
6月 20, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Fix Bug] Fix random fail of CustomOp due to python lock (#54772)
上级
46c57674
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
76 addition
and
79 deletion
+76
-79
paddle/fluid/pybind/eager_functions.cc
paddle/fluid/pybind/eager_functions.cc
+76
-79
未找到文件。
paddle/fluid/pybind/eager_functions.cc
浏览文件 @
87054fe3
...
...
@@ -521,87 +521,84 @@ static PyObject* eager_api_run_custom_op(PyObject* self,
std
::
string
op_type
=
CastPyArg2AttrString
(
PyTuple_GET_ITEM
(
args
,
0
),
0
);
VLOG
(
7
)
<<
"Get things from python for Custom Op: "
<<
op_type
;
paddle
::
CustomOpKernelContext
ctx
;
{
eager_gil_scoped_release
guard
;
auto
meta_info_map
=
egr
::
Controller
::
Instance
().
GetOpMetaInfoMap
();
PADDLE_ENFORCE_NE
(
meta_info_map
.
find
(
op_type
),
meta_info_map
.
end
(),
paddle
::
platform
::
errors
::
NotFound
(
"Can't find %s in Eager OpMetaInfoMap which should be "
"created by LoadOpMetaInfoAndRegisterOp, please make "
"sure you registered your op first and try again. "
,
op_type
));
const
auto
&
vec_map
=
meta_info_map
.
at
(
op_type
);
const
auto
&
inputs
=
paddle
::
OpMetaInfoHelper
::
GetInputs
(
vec_map
[
0
]);
const
auto
&
attrs
=
paddle
::
OpMetaInfoHelper
::
GetAttrs
(
vec_map
[
0
]);
const
auto
&
outputs
=
paddle
::
OpMetaInfoHelper
::
GetOutputs
(
vec_map
[
0
]);
const
auto
&
inplace_map
=
paddle
::
OpMetaInfoHelper
::
GetInplaceMap
(
vec_map
[
0
]);
for
(
size_t
i
=
0
;
i
<
inputs
.
size
();
++
i
)
{
const
auto
&
input
=
inputs
.
at
(
i
);
// Parse op_type first, so that use i + 1
PyObject
*
obj
=
PyTuple_GET_ITEM
(
args
,
i
+
1
);
// Emplace Py_None from python, this means optional inputs passed to C++,
// use one un-initialized tensor to indicate both Tensor and
// vector<Tensor> inputs.
if
(
obj
==
Py_None
)
{
VLOG
(
7
)
<<
"Custom operator add input "
<<
input
<<
" to CustomOpKernelContext. Add un-initialized tensor "
"because the optional input is None"
;
ctx
.
EmplaceBackInput
(
std
::
move
(
paddle
::
Tensor
()));
continue
;
}
if
(
paddle
::
framework
::
detail
::
IsDuplicableVar
(
input
))
{
ctx
.
EmplaceBackInputs
(
std
::
move
(
CastPyArg2VectorOfTensor
(
obj
,
i
+
1
)));
VLOG
(
7
)
<<
"Custom operator add input "
<<
input
<<
" to CustomOpKernelContext. Add vector<Tensor> size = "
<<
ctx
.
InputRangeAt
(
i
).
second
-
ctx
.
InputRangeAt
(
i
).
first
;
}
else
{
ctx
.
EmplaceBackInput
(
std
::
move
(
CastPyArg2Tensor
(
obj
,
i
+
1
)));
VLOG
(
7
)
<<
"Custom operator add input "
<<
input
<<
" to CustomOpKernelContext. Add Tensor for general case."
;
}
auto
meta_info_map
=
egr
::
Controller
::
Instance
().
GetOpMetaInfoMap
();
PADDLE_ENFORCE_NE
(
meta_info_map
.
find
(
op_type
),
meta_info_map
.
end
(),
paddle
::
platform
::
errors
::
NotFound
(
"Can't find %s in Eager OpMetaInfoMap which should be "
"created by LoadOpMetaInfoAndRegisterOp, please make "
"sure you registered your op first and try again. "
,
op_type
));
const
auto
&
vec_map
=
meta_info_map
.
at
(
op_type
);
const
auto
&
inputs
=
paddle
::
OpMetaInfoHelper
::
GetInputs
(
vec_map
[
0
]);
const
auto
&
attrs
=
paddle
::
OpMetaInfoHelper
::
GetAttrs
(
vec_map
[
0
]);
const
auto
&
outputs
=
paddle
::
OpMetaInfoHelper
::
GetOutputs
(
vec_map
[
0
]);
const
auto
&
inplace_map
=
paddle
::
OpMetaInfoHelper
::
GetInplaceMap
(
vec_map
[
0
]);
for
(
size_t
i
=
0
;
i
<
inputs
.
size
();
++
i
)
{
const
auto
&
input
=
inputs
.
at
(
i
);
// Parse op_type first, so that use i + 1
PyObject
*
obj
=
PyTuple_GET_ITEM
(
args
,
i
+
1
);
// Emplace Py_None from python, this means optional inputs passed to C++,
// use one un-initialized tensor to indicate both Tensor and
// vector<Tensor> inputs.
if
(
obj
==
Py_None
)
{
VLOG
(
7
)
<<
"Custom operator add input "
<<
input
<<
" to CustomOpKernelContext. Add un-initialized tensor "
"because the optional input is None"
;
ctx
.
EmplaceBackInput
(
std
::
move
(
paddle
::
Tensor
()));
continue
;
}
// Parse op_type and inputs first, so that use 1 + inputs.size() + i
int
attr_start_idx
=
1
+
inputs
.
size
();
for
(
size_t
i
=
0
;
i
<
attrs
.
size
();
++
i
)
{
const
auto
&
attr
=
attrs
.
at
(
i
);
std
::
vector
<
std
::
string
>
attr_name_and_type
=
paddle
::
ParseAttrStr
(
attr
);
auto
attr_type_str
=
attr_name_and_type
[
1
];
VLOG
(
7
)
<<
"Custom operator add attrs "
<<
attr_name_and_type
[
0
]
<<
" to CustomOpKernelContext. Attribute type = "
<<
attr_type_str
;
PyObject
*
obj
=
PyTuple_GET_ITEM
(
args
,
attr_start_idx
+
i
);
if
(
attr_type_str
==
"bool"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2AttrBoolean
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"int"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2AttrInt
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"float"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2AttrFloat
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"int64_t"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2Long
(
obj
,
op_type
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::string"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2AttrString
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::vector<int>"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2VectorOfInt
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::vector<float>"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2VectorOfFloat
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::vector<int64_t>"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2Longs
(
obj
,
op_type
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::vector<std::string>"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2VectorOfString
(
obj
,
attr_start_idx
+
i
));
}
else
{
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"Unsupported `%s` type value as custom attribute now. "
"Supported data types include `bool`, `int`, `float`, "
"`int64_t`, `std::string`, `std::vector<int>`, "
"`std::vector<float>`, `std::vector<int64_t>`, "
"`std::vector<std::string>`, Please check whether "
"the attribute data type and data type string are matched."
,
attr_type_str
));
}
if
(
paddle
::
framework
::
detail
::
IsDuplicableVar
(
input
))
{
ctx
.
EmplaceBackInputs
(
std
::
move
(
CastPyArg2VectorOfTensor
(
obj
,
i
+
1
)));
VLOG
(
7
)
<<
"Custom operator add input "
<<
input
<<
" to CustomOpKernelContext. Add vector<Tensor> size = "
<<
ctx
.
InputRangeAt
(
i
).
second
-
ctx
.
InputRangeAt
(
i
).
first
;
}
else
{
ctx
.
EmplaceBackInput
(
std
::
move
(
CastPyArg2Tensor
(
obj
,
i
+
1
)));
VLOG
(
7
)
<<
"Custom operator add input "
<<
input
<<
" to CustomOpKernelContext. Add Tensor for general case."
;
}
}
// Parse op_type and inputs first, so that use 1 + inputs.size() + i
int
attr_start_idx
=
1
+
inputs
.
size
();
for
(
size_t
i
=
0
;
i
<
attrs
.
size
();
++
i
)
{
const
auto
&
attr
=
attrs
.
at
(
i
);
std
::
vector
<
std
::
string
>
attr_name_and_type
=
paddle
::
ParseAttrStr
(
attr
);
auto
attr_type_str
=
attr_name_and_type
[
1
];
VLOG
(
7
)
<<
"Custom operator add attrs "
<<
attr_name_and_type
[
0
]
<<
" to CustomOpKernelContext. Attribute type = "
<<
attr_type_str
;
PyObject
*
obj
=
PyTuple_GET_ITEM
(
args
,
attr_start_idx
+
i
);
if
(
attr_type_str
==
"bool"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2AttrBoolean
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"int"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2AttrInt
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"float"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2AttrFloat
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"int64_t"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2Long
(
obj
,
op_type
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::string"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2AttrString
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::vector<int>"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2VectorOfInt
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::vector<float>"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2VectorOfFloat
(
obj
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::vector<int64_t>"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2Longs
(
obj
,
op_type
,
attr_start_idx
+
i
));
}
else
if
(
attr_type_str
==
"std::vector<std::string>"
)
{
ctx
.
EmplaceBackAttr
(
CastPyArg2VectorOfString
(
obj
,
attr_start_idx
+
i
));
}
else
{
PADDLE_THROW
(
platform
::
errors
::
Unimplemented
(
"Unsupported `%s` type value as custom attribute now. "
"Supported data types include `bool`, `int`, `float`, "
"`int64_t`, `std::string`, `std::vector<int>`, "
"`std::vector<float>`, `std::vector<int64_t>`, "
"`std::vector<std::string>`, Please check whether "
"the attribute data type and data type string are matched."
,
attr_type_str
));
}
}
{
eager_gil_scoped_release
guard
;
ctx
.
ConstructInplaceIndex
(
inputs
,
outputs
,
inplace_map
);
const
auto
&
inplace_reverse_idx_map
=
ctx
.
GetInplaceReverseIndexMap
();
for
(
size_t
out_idx
=
0
;
out_idx
<
outputs
.
size
();
++
out_idx
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录