Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
04087012
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
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看板
未验证
提交
04087012
编写于
3月 25, 2022
作者:
Z
zyfncg
提交者:
GitHub
3月 25, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Scalar support marking data_type in yaml (#40867)
* Scalar support marking data_type in yaml * fix code-gene bug
上级
0f5e90a2
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
25 addition
and
24 deletion
+25
-24
paddle/fluid/eager/auto_code_generator/final_state_generator/codegen_utils.py
...uto_code_generator/final_state_generator/codegen_utils.py
+8
-4
python/paddle/utils/code_gen/api.yaml
python/paddle/utils/code_gen/api.yaml
+5
-5
python/paddle/utils/code_gen/api_base.py
python/paddle/utils/code_gen/api_base.py
+11
-14
python/paddle/utils/code_gen/sparse_api.yaml
python/paddle/utils/code_gen/sparse_api.yaml
+1
-1
未找到文件。
paddle/fluid/eager/auto_code_generator/final_state_generator/codegen_utils.py
浏览文件 @
04087012
...
...
@@ -30,15 +30,19 @@ core_ops_args_info = {}
core_ops_args_type_info
=
{}
yaml_types_mapping
=
{
'int'
:
'int'
,
'int32
'
:
'int32_t'
,
'int64
'
:
'int64_t'
,
'size_t'
:
'size_t'
,
\
'int'
:
'int'
,
'int32
_t'
:
'int32_t'
,
'int64_t
'
:
'int64_t'
,
'size_t'
:
'size_t'
,
\
'float'
:
'float'
,
'double'
:
'double'
,
'bool'
:
'bool'
,
\
'str'
:
'std::string'
,
\
'Place'
:
'paddle::experimental::Place'
,
'DataLayout'
:
'paddle::experimental::DataLayout'
,
'DataType'
:
'paddle::experimental::DataType'
,
\
'int64[]'
:
'std::vector<int64_t>'
,
'int[]'
:
'std::vector<int>'
,
'int64
_t
[]'
:
'std::vector<int64_t>'
,
'int[]'
:
'std::vector<int>'
,
'Tensor'
:
'Tensor'
,
'Tensor[]'
:
'std::vector<Tensor>'
,
'Tensor[Tensor[]]'
:
'std::vector<std::vector<Tensor>>'
,
'Scalar'
:
'paddle::experimental::Scalar'
,
'Scalar(int)'
:
'paddle::experimental::Scalar'
,
'Scalar(int64_t)'
:
'paddle::experimental::Scalar'
,
'Scalar(float)'
:
'paddle::experimental::Scalar'
,
'Scalar(double)'
:
'paddle::experimental::Scalar'
,
'ScalarArray'
:
'paddle::experimental::ScalarArray'
}
...
...
@@ -254,8 +258,8 @@ def ParseYamlForward(args_str, returns_str):
fargs
=
r
'(.*?)'
wspace
=
r
'\s*'
args_pattern
=
f
'
\(
{
fargs
}
\)
'
args_str
=
re
.
search
(
args_pattern
,
args_str
).
group
(
1
)
args_pattern
=
f
'
^\(
{
fargs
}
\)$
'
args_str
=
re
.
search
(
args_pattern
,
args_str
.
strip
()
).
group
(
1
)
inputs_list
,
attrs_list
=
ParseYamlArgs
(
args_str
)
returns_list
=
ParseYamlReturns
(
returns_str
)
...
...
python/paddle/utils/code_gen/api.yaml
浏览文件 @
04087012
...
...
@@ -19,7 +19,7 @@
-
api
:
concat
args
:
(Tensor[] x, Scalar axis)
args
:
(Tensor[] x, Scalar
(int64_t)
axis)
output
:
Tensor
infer_meta
:
func
:
ConcatInferMeta
...
...
@@ -123,7 +123,7 @@
backward
:
matmul_grad
-
api
:
mean
args
:
(Tensor x, int64[] axis={}, bool keep_dim=false)
args
:
(Tensor x, int64
_t
[] axis={}, bool keep_dim=false)
output
:
Tensor
infer_meta
:
func
:
ReduceInferMeta
...
...
@@ -198,7 +198,7 @@
func
:
sotfmax
-
api
:
split
args
:
(Tensor x, ScalarArray num_or_sections, Scalar axis)
args
:
(Tensor x, ScalarArray num_or_sections, Scalar
(int)
axis)
output
:
Tensor[]
invoke
:
split_impl(x, num_or_sections, axis)
...
...
@@ -212,7 +212,7 @@
backward
:
subtract_grad
-
api
:
sum
args
:
(Tensor x, int64[] axis={}, DataType dtype=DataType::UNDEFINED, bool keep_dim=false)
args
:
(Tensor x, int64
_t
[] axis={}, DataType dtype=DataType::UNDEFINED, bool keep_dim=false)
output
:
Tensor
infer_meta
:
func
:
SumInferMeta
...
...
@@ -227,7 +227,7 @@
-
api
:
one_hot
args
:
(Tensor x, Scalar num_classes)
args
:
(Tensor x, Scalar
(int)
num_classes)
output
:
Tensor
infer_meta
:
func
:
OneHotInferMeta
...
...
python/paddle/utils/code_gen/api_base.py
浏览文件 @
04087012
...
...
@@ -89,10 +89,13 @@ class BaseAPI(object):
attr_types_map
=
{
'ScalarArray'
:
'const ScalarArray&'
,
'Scalar'
:
'const Scalar&'
,
'uint8'
:
'uint8_t'
,
'Scalar(int)'
:
'const Scalar&'
,
'Scalar(int64_t)'
:
'const Scalar&'
,
'Scalar(float)'
:
'const Scalar&'
,
'Scalar(dobule)'
:
'const Scalar&'
,
'int'
:
'int'
,
'int32'
:
'int32_t'
,
'int64'
:
'int64_t'
,
'int32
_t
'
:
'int32_t'
,
'int64
_t
'
:
'int64_t'
,
'long'
:
'long'
,
'size_t'
:
'size_t'
,
'float'
:
'float'
,
...
...
@@ -102,27 +105,21 @@ class BaseAPI(object):
'Place'
:
'Place'
,
'DataLayout'
:
'DataLayout'
,
'DataType'
:
'DataType'
,
'int64[]'
:
'const std::vector<int64_t>&'
,
'int[]'
:
'const std::vector<int>&'
,
'long[]'
:
'const std::vector<int64_t>&'
'int64_t[]'
:
'const std::vector<int64_t>&'
,
'int[]'
:
'const std::vector<int>&'
}
optional_types_trans
=
{
'Tensor'
:
'const paddle::optional<Tensor>&'
,
'Tensor[]'
:
'const paddle::optional<std::vector<Tensor>>&'
,
'ScalarArray'
:
'const paddle::optional<ScalarArray>&'
,
'Scalar'
:
'const paddle::optional<Scalar>&'
,
'int'
:
'paddle::optional<int>'
,
'int32'
:
'paddle::optional<int32_t>'
,
'int64'
:
'paddle::optional<int64_t>'
,
'size_t'
:
'paddle::optional<size_t>'
,
'int32_t'
:
'paddle::optional<int32_t>'
,
'int64_t'
:
'paddle::optional<int64_t>'
,
'float'
:
'paddle::optional<float>'
,
'double'
:
'paddle::optional<double>'
,
'bool'
:
'paddle::optional<bool>'
,
'Place'
:
'paddle::optional<Place>'
,
'DataLayout'
:
'paddle::optional<DataLayout>'
,
'DataType'
:
'paddle::optional<DataType>'
,
'int64[]'
:
'paddle::optional<std::vector<int64_t>>'
,
'int[]'
:
'paddle::optional<std::vector<int>>'
'DataType'
:
'paddle::optional<DataType>'
}
args_declare_str
=
""
...
...
python/paddle/utils/code_gen/sparse_api.yaml
浏览文件 @
04087012
...
...
@@ -13,7 +13,7 @@
invoke
:
to_dense_impl(x)
-
api
:
to_sparse_coo
args
:
(Tensor x, int64 sparse_dim)
args
:
(Tensor x, int64
_t
sparse_dim)
output
:
Tensor(out@SparseCooTensor)
invoke
:
to_sparse_coo_impl(x, sparse_dim)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录