Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
c04e2e85
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c04e2e85
编写于
9月 21, 2020
作者:
Z
zhhsplendid
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add import, test=develop
上级
aaa703d9
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
81 addition
and
2 deletion
+81
-2
python/paddle/fluid/dygraph/dygraph_to_static/variable_trans_func.py
...le/fluid/dygraph/dygraph_to_static/variable_trans_func.py
+2
-2
python/paddle/jit/__init__.py
python/paddle/jit/__init__.py
+4
-0
python/paddle/jit/dygraph_to_static/__init__.py
python/paddle/jit/dygraph_to_static/__init__.py
+23
-0
python/paddle/jit/dygraph_to_static/convert_operators.py
python/paddle/jit/dygraph_to_static/convert_operators.py
+25
-0
python/paddle/jit/dygraph_to_static/variable_trans_func.py
python/paddle/jit/dygraph_to_static/variable_trans_func.py
+26
-0
python/setup.py.in
python/setup.py.in
+1
-0
未找到文件。
python/paddle/fluid/dygraph/dygraph_to_static/variable_trans_func.py
浏览文件 @
c04e2e85
...
...
@@ -22,8 +22,8 @@ from paddle.fluid.layers import fill_constant
from
paddle.fluid.layer_helper
import
LayerHelper
__all__
=
[
'
to_static_variable_gas
t_node'
,
'create_static_variable_gast_node'
,
'data_layer_not_check'
'
create_fill_constan
t_node'
,
'create_static_variable_gast_node'
,
'data_layer_not_check'
,
'to_static_variable'
,
'to_static_variable_gast_node'
]
...
...
python/paddle/jit/__init__.py
浏览文件 @
c04e2e85
...
...
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
__future__
import
print_function
from
..fluid.dygraph.jit
import
save
#DEFINE_ALIAS
from
..fluid.dygraph.jit
import
load
#DEFINE_ALIAS
from
..fluid.dygraph.jit
import
TracedLayer
#DEFINE_ALIAS
...
...
@@ -21,6 +23,8 @@ from ..fluid.dygraph.jit import declarative as to_static #DEFINE_ALIAS
from
..fluid.dygraph
import
ProgramTranslator
#DEFINE_ALIAS
from
..fluid.dygraph.io
import
TranslatedLayer
#DEFINE_ALIAS
from
.
import
dygraph_to_static
__all__
=
[
'save'
,
'load'
,
'TracedLayer'
,
'to_static'
,
'ProgramTranslator'
,
'TranslatedLayer'
,
'set_code_level'
,
'set_verbosity'
...
...
python/paddle/jit/dygraph_to_static/__init__.py
0 → 100644
浏览文件 @
c04e2e85
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
__future__
import
print_function
from
.
import
convert_operators
from
.
import
variable_trans_func
from
.variable_trans_func
import
*
__all__
=
[]
__all__
+=
variable_trans_func
.
__all__
python/paddle/jit/dygraph_to_static/convert_operators.py
0 → 100644
浏览文件 @
c04e2e85
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
__future__
import
print_function
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
cast_bool_if_necessary
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_assert
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_len
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_logical_and
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_logical_not
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_logical_or
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_print
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_var_dtype
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_var_shape
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.convert_operators
import
convert_while_loop
#DEFINE_ALIAS
python/paddle/jit/dygraph_to_static/variable_trans_func.py
0 → 100644
浏览文件 @
c04e2e85
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
__future__
import
print_function
from
...fluid.dygraph.dygraph_to_static.variable_trans_func
import
create_fill_constant_node
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.variable_trans_func
import
create_static_variable_gast_node
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.variable_trans_func
import
data_layer_not_check
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.variable_trans_func
import
to_static_variable
#DEFINE_ALIAS
from
...fluid.dygraph.dygraph_to_static.variable_trans_func
import
to_static_variable_gast_node
#DEFINE_ALIAS
__all__
=
[
'create_fill_constant_node'
,
'create_static_variable_gast_node'
,
'data_layer_not_check'
,
'to_static_variable'
,
'to_static_variable_gast_node'
]
python/setup.py.in
浏览文件 @
c04e2e85
...
...
@@ -155,6 +155,7 @@ packages=['paddle',
'paddle.distributed.fleet.utils',
'paddle.framework',
'paddle.jit',
'paddle.jit.dygraph_to_static',
'paddle.fluid',
'paddle.fluid.inference',
'paddle.fluid.dygraph',
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录