Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
85f5b1ae
提交
85f5b1ae
authored
5月 09, 2008
作者:
Olivier Breuleux
浏览文件
操作
浏览文件
下载
差异文件
merge
上级
3b0bc9af
472e53bd
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
41 行增加
和
19 行删除
+41
-19
cc.py
gof/cc.py
+4
-4
graph.py
gof/graph.py
+14
-2
link.py
gof/link.py
+15
-11
op.py
gof/op.py
+2
-0
type.py
gof/type.py
+6
-2
没有找到文件。
gof/cc.py
浏览文件 @
85f5b1ae
...
...
@@ -618,8 +618,8 @@ class CLinker(link.Linker):
input_storage
,
output_storage
)
return
thunk
,
\
[
link
.
Filter
(
input
.
type
,
storage
)
for
input
,
storage
in
zip
(
self
.
env
.
inputs
,
input_storage
)],
\
[
link
.
Filter
(
output
.
type
,
storage
,
True
)
for
output
,
storage
in
zip
(
self
.
env
.
outputs
,
output_storage
)],
\
[
link
.
Filter
(
input
,
storage
)
for
input
,
storage
in
zip
(
self
.
env
.
inputs
,
input_storage
)],
\
[
link
.
Filter
(
output
,
storage
,
True
)
for
output
,
storage
in
zip
(
self
.
env
.
outputs
,
output_storage
)],
\
error_storage
def
make_thunk
(
self
,
input_storage
=
None
,
output_storage
=
None
):
...
...
@@ -821,8 +821,8 @@ class OpWiseCLinker(link.LocalLinker):
f
=
self
.
streamline
(
env
,
thunks
,
order
,
no_recycling
=
no_recycling
,
profiler
=
profiler
)
return
f
,
[
link
.
Filter
(
input
.
type
,
storage
)
for
input
,
storage
in
zip
(
env
.
inputs
,
input_storage
)],
\
[
link
.
Filter
(
output
.
type
,
storage
,
True
)
for
output
,
storage
in
zip
(
env
.
outputs
,
output_storage
)],
\
return
f
,
[
link
.
Filter
(
input
,
storage
)
for
input
,
storage
in
zip
(
env
.
inputs
,
input_storage
)],
\
[
link
.
Filter
(
output
,
storage
,
True
)
for
output
,
storage
in
zip
(
env
.
outputs
,
output_storage
)],
\
thunks
,
order
...
...
gof/graph.py
浏览文件 @
85f5b1ae
...
...
@@ -24,6 +24,7 @@ class Apply(utils.object2):
"""
self
.
op
=
op
self
.
inputs
=
[]
self
.
tag
=
utils
.
scratchpad
()
## filter inputs to make sure each element is a Result
for
input
in
inputs
:
...
...
@@ -67,7 +68,14 @@ class Apply(utils.object2):
def
__asapply__
(
self
):
return
self
def
clone
(
self
):
return
self
.
__class__
(
self
.
op
,
self
.
inputs
,
[
output
.
clone
()
for
output
in
self
.
outputs
])
# cp = copy(self)
# cp.outputs = [output.clone() for output in self.outputs]
# for output in cp.outputs:
# output.owner = cp
# return cp
cp
=
self
.
__class__
(
self
.
op
,
self
.
inputs
,
[
output
.
clone
()
for
output
in
self
.
outputs
])
cp
.
tag
=
copy
(
self
.
tag
)
return
cp
def
clone_with_new_inputs
(
self
,
inputs
,
check_type
=
True
):
"""
Returns an Apply node with the same op but different inputs. Unless
...
...
@@ -96,6 +104,7 @@ class Result(utils.object2):
"""
#__slots__ = ['type', 'owner', 'index', 'name']
def
__init__
(
self
,
type
,
owner
=
None
,
index
=
None
,
name
=
None
):
self
.
tag
=
utils
.
scratchpad
()
self
.
type
=
type
if
owner
is
not
None
and
not
isinstance
(
owner
,
Apply
):
raise
TypeError
(
"owner must be an Apply instance"
,
owner
)
...
...
@@ -120,7 +129,10 @@ class Result(utils.object2):
def
__repr__
(
self
):
return
str
(
self
)
def
clone
(
self
):
return
self
.
__class__
(
self
.
type
,
None
,
None
,
self
.
name
)
#return copy(self)
cp
=
self
.
__class__
(
self
.
type
,
None
,
None
,
self
.
name
)
cp
.
tag
=
copy
(
self
.
tag
)
return
cp
class
Value
(
Result
):
"""
...
...
gof/link.py
浏览文件 @
85f5b1ae
...
...
@@ -35,7 +35,7 @@ def raise_with_op(op, exc_info = None):
exc_info
=
sys
.
exc_info
()
exc_type
,
exc_value
,
exc_trace
=
exc_info
try
:
trace
=
op
.
trace
trace
=
op
.
t
ag
.
t
race
except
AttributeError
:
trace
=
()
exc_value
.
__thunk_trace__
=
trace
...
...
@@ -107,20 +107,24 @@ class Linker:
class
Filter
(
object
):
def
__init__
(
self
,
type
,
storage
,
readonly
=
False
,
strict
=
False
):
self
.
type
=
type
def
__init__
(
self
,
r
,
storage
,
readonly
=
False
,
strict
=
False
,
trace
=
()):
self
.
r
=
r
self
.
type
=
r
.
type
self
.
storage
=
storage
self
.
readonly
=
readonly
self
.
strict
=
strict
def
__get
(
self
):
return
self
.
storage
[
0
]
def
__set
(
self
,
value
):
if
self
.
readonly
:
raise
Exception
(
"Cannot set readonly storage."
)
if
self
.
strict
:
self
.
storage
[
0
]
=
self
.
type
.
filter
(
value
,
strict
=
True
)
else
:
self
.
storage
[
0
]
=
self
.
type
.
filter
(
value
)
try
:
if
self
.
readonly
:
raise
Exception
(
"Cannot set readonly storage."
)
if
self
.
strict
:
self
.
storage
[
0
]
=
self
.
type
.
filter
(
value
,
strict
=
True
)
else
:
self
.
storage
[
0
]
=
self
.
type
.
filter
(
value
)
except
:
raise_with_op
(
self
.
r
)
data
=
property
(
__get
,
__set
)
def
__str__
(
self
):
return
"<"
+
str
(
self
.
storage
[
0
])
+
">"
...
...
@@ -245,8 +249,8 @@ class PerformLinker(LocalLinker):
f
=
self
.
streamline
(
env
,
thunks
,
order
,
no_recycling
=
no_recycling
,
profiler
=
profiler
)
return
f
,
[
Filter
(
input
.
type
,
storage
)
for
input
,
storage
in
zip
(
env
.
inputs
,
input_storage
)],
\
[
Filter
(
output
.
type
,
storage
,
True
)
for
output
,
storage
in
zip
(
env
.
outputs
,
output_storage
)],
\
return
f
,
[
Filter
(
input
,
storage
)
for
input
,
storage
in
zip
(
env
.
inputs
,
input_storage
)],
\
[
Filter
(
output
,
storage
,
True
)
for
output
,
storage
in
zip
(
env
.
outputs
,
output_storage
)],
\
thunks
,
order
# return f, env.inputs, env.outputs
...
...
gof/op.py
浏览文件 @
85f5b1ae
...
...
@@ -4,6 +4,7 @@ compatible with gof's graph manipulation routines.
"""
import
utils
import
traceback
class
Op
(
utils
.
object2
):
...
...
@@ -31,6 +32,7 @@ class Op(utils.object2):
self.make_node(*inputs).outputs (if more than one output)
"""
node
=
self
.
make_node
(
*
inputs
)
node
.
tag
.
trace
=
traceback
.
extract_stack
()[:
-
1
]
if
self
.
default_output
is
not
None
:
return
node
.
outputs
[
self
.
default_output
]
else
:
...
...
gof/type.py
浏览文件 @
85f5b1ae
...
...
@@ -3,6 +3,7 @@ import copy
import
utils
from
utils
import
AbstractFunctionError
,
object2
from
graph
import
Result
import
traceback
########
...
...
@@ -23,10 +24,13 @@ class Type(object2):
raise
AbstractFunctionError
()
def
make_result
(
self
,
name
=
None
):
return
Result
(
self
,
name
=
name
)
r
=
Result
(
self
,
name
=
name
)
return
r
def
__call__
(
self
,
name
=
None
):
return
self
.
make_result
(
name
)
r
=
self
.
make_result
(
name
)
r
.
tag
.
trace
=
traceback
.
extract_stack
()[:
-
1
]
return
r
def
c_is_simple
(
self
):
"""
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论