Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
7e5f7c85
提交
7e5f7c85
authored
10月 23, 2025
作者:
Ricardo Vieira
提交者:
Ricardo Vieira
11月 16, 2025
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Avoid calling type_conversion_fn repeatedly on the same variables
上级
d833f039
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
19 行增加
和
5 行删除
+19
-5
utils.py
pytensor/link/utils.py
+19
-5
没有找到文件。
pytensor/link/utils.py
浏览文件 @
7e5f7c85
...
@@ -731,6 +731,8 @@ def fgraph_to_python(
...
@@ -731,6 +731,8 @@ def fgraph_to_python(
if
global_env
is
None
:
if
global_env
is
None
:
global_env
=
{}
global_env
=
{}
tipifiyed_vars
=
set
()
body_assigns
=
[]
body_assigns
=
[]
for
node
in
order
:
for
node
in
order
:
compiled_func
=
op_conversion_fn
(
compiled_func
=
op_conversion_fn
(
...
@@ -742,17 +744,29 @@ def fgraph_to_python(
...
@@ -742,17 +744,29 @@ def fgraph_to_python(
global_env
[
local_compiled_func_name
]
=
compiled_func
global_env
[
local_compiled_func_name
]
=
compiled_func
node_input_names
=
[]
node_input_names
=
[]
for
i
in
node
.
inputs
:
for
inp
in
node
.
inputs
:
local_input_name
=
unique_name
(
i
)
local_input_name
=
unique_name
(
inp
)
is_constant
=
isinstance
(
inp
,
Constant
)
input_storage
=
storage_map
.
setdefault
(
input_storage
=
storage_map
.
setdefault
(
i
,
[
None
if
not
isinstance
(
i
,
Constant
)
else
i
.
data
]
inp
,
[
inp
.
data
# type: ignore[attr-defined]
if
is_constant
else
None
],
)
)
if
input_storage
[
0
]
is
not
None
or
isinstance
(
i
,
Constant
):
if
(
is_constant
or
input_storage
[
0
]
is
not
None
)
and
inp
not
in
tipifiyed_vars
:
# Constants need to be assigned locally and referenced
# Constants need to be assigned locally and referenced
# FIXME: This is converting shared variables, but these may change later,
# so this one-time conversion is wasteful / not robust
global_env
[
local_input_name
]
=
type_conversion_fn
(
global_env
[
local_input_name
]
=
type_conversion_fn
(
input_storage
[
0
],
variable
=
i
,
storage
=
input_storage
,
**
kwargs
input_storage
[
0
],
variable
=
i
np
,
storage
=
input_storage
,
**
kwargs
)
)
tipifiyed_vars
.
add
(
inp
)
# TODO: We could attempt to use the storage arrays directly
# TODO: We could attempt to use the storage arrays directly
# Otherwise we're doubling the memory footprint of constants
# E.g. `local_input_name = f"{local_input_name}[0]"`
# E.g. `local_input_name = f"{local_input_name}[0]"`
node_input_names
.
append
(
local_input_name
)
node_input_names
.
append
(
local_input_name
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论