Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
0b0ad512
提交
0b0ad512
authored
11月 22, 2020
作者:
Brandon T. Willard
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Implement FunctionGraph.__contains__ for easy membership determination
上级
a4eb9873
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
41 行增加
和
17 行删除
+41
-17
test_fg.py
tests/gof/test_fg.py
+15
-0
fg.py
theano/gof/fg.py
+26
-17
没有找到文件。
tests/gof/test_fg.py
浏览文件 @
0b0ad512
...
...
@@ -329,3 +329,18 @@ class TestFunctionGraph:
fg
.
add_client
(
var4
,
(
var3
.
owner
,
0
))
fg
.
check_integrity
()
def
test_contains
(
self
):
var1
=
MyVariable
(
"var1"
)
var2
=
MyVariable
(
"var2"
)
var3
=
op1
(
var2
,
var1
)
var4
=
op2
(
var3
,
var2
)
var5
=
op3
(
var4
,
var2
,
var2
)
fg
=
FunctionGraph
([
var1
,
var2
],
[
var3
,
var5
],
clone
=
False
)
assert
var1
in
fg
assert
var3
in
fg
assert
var3
.
owner
in
fg
assert
var5
in
fg
assert
var5
.
owner
in
fg
theano/gof/fg.py
浏览文件 @
0b0ad512
"""
fg.py: fg stands for FunctionGraph
Contains the FunctionGraph class and exception
types that it can raise.
"""
"""A container for specifying and manipulating a graph with distinct inputs and outputs."""
import
time
from
collections
import
OrderedDict
from
io
import
StringIO
import
theano
from
theano
import
config
from
theano.gof
import
graph
,
toolbox
,
utils
from
theano.gof
import
toolbox
,
utils
from
theano.gof.graph
import
Apply
,
Constant
,
Variable
from
theano.gof.graph
import
as_string
as
graph_as_string
from
theano.gof.graph
import
clone
as
clone_graph
from
theano.gof.graph
import
clone_get_equiv
,
io_toposort
from
theano.gof.graph
import
ops
as
ops_between
from
theano.gof.graph
import
variables
as
variables_between
from
theano.gof.utils
import
TestValueError
,
get_variable_trace_string
from
theano.misc.ordered_set
import
OrderedSet
...
...
@@ -113,7 +114,7 @@ class FunctionGraph(utils.object2):
"""
if
clone
:
inputs
,
outputs
=
graph
.
clone
(
inputs
,
outputs
)
inputs
,
outputs
=
clone_graph
(
inputs
,
outputs
)
if
not
isinstance
(
inputs
,
list
):
raise
TypeError
(
"Argument `inputs` should be a list"
)
...
...
@@ -350,7 +351,7 @@ class FunctionGraph(utils.object2):
self
.
import_node
(
var
.
owner
,
reason
=
reason
)
elif
(
var
.
owner
is
None
and
not
isinstance
(
var
,
graph
.
Constant
)
and
not
isinstance
(
var
,
Constant
)
and
var
not
in
self
.
inputs
):
from
theano.gof.null_type
import
NullType
...
...
@@ -383,7 +384,7 @@ class FunctionGraph(utils.object2):
# in new nodes, so we use all variables we know of as if they were the input set.
# (the functions in the graph module only use the input set to
# know where to stop going down)
new_nodes
=
graph
.
io_toposort
(
self
.
variables
,
apply_node
.
outputs
)
new_nodes
=
io_toposort
(
self
.
variables
,
apply_node
.
outputs
)
if
check
:
for
node
in
new_nodes
:
...
...
@@ -394,7 +395,7 @@ class FunctionGraph(utils.object2):
raise
Exception
(
f
"{var} is already owned by another fgraph"
)
if
(
var
.
owner
is
None
and
not
isinstance
(
var
,
graph
.
Constant
)
and
not
isinstance
(
var
,
Constant
)
and
var
not
in
self
.
inputs
):
# Standard error message
...
...
@@ -688,7 +689,7 @@ class FunctionGraph(utils.object2):
ords
=
self
.
orderings
()
order
=
graph
.
io_toposort
(
fg
.
inputs
,
fg
.
outputs
,
ords
)
order
=
io_toposort
(
fg
.
inputs
,
fg
.
outputs
,
ords
)
return
order
...
...
@@ -743,7 +744,7 @@ class FunctionGraph(utils.object2):
Call this for a diagnosis if things go awry.
"""
nodes
=
graph
.
ops
(
self
.
inputs
,
self
.
outputs
)
nodes
=
ops_between
(
self
.
inputs
,
self
.
outputs
)
if
self
.
apply_nodes
!=
nodes
:
missing
=
nodes
.
difference
(
self
.
apply_nodes
)
excess
=
self
.
apply_nodes
.
difference
(
nodes
)
...
...
@@ -761,7 +762,7 @@ class FunctionGraph(utils.object2):
raise
Exception
(
f
"Inconsistent clients list {(node, i)} in {clients}"
)
variables
=
set
(
graph
.
variables
(
self
.
inputs
,
self
.
outputs
))
variables
=
set
(
variables_between
(
self
.
inputs
,
self
.
outputs
))
if
set
(
self
.
variables
)
!=
variables
:
missing
=
variables
.
difference
(
self
.
variables
)
excess
=
self
.
variables
.
difference
(
variables
)
...
...
@@ -774,7 +775,7 @@ class FunctionGraph(utils.object2):
if
(
variable
.
owner
is
None
and
variable
not
in
self
.
inputs
and
not
isinstance
(
variable
,
graph
.
Constant
)
and
not
isinstance
(
variable
,
Constant
)
):
raise
Exception
(
"Undeclared input."
,
variable
)
if
variable
.
fgraph
is
not
self
:
...
...
@@ -799,7 +800,7 @@ class FunctionGraph(utils.object2):
)
def
__repr__
(
self
):
return
f
"FunctionGraph({', '.join(graph
.
as_string(self.inputs, self.outputs))})"
return
f
"FunctionGraph({', '.join(graph
_
as_string(self.inputs, self.outputs))})"
def
clone
(
self
,
check_integrity
=
True
):
"""
...
...
@@ -824,7 +825,7 @@ class FunctionGraph(utils.object2):
equiv: dict
A dict that map old node to new node.
"""
equiv
=
graph
.
clone_get_equiv
(
self
.
inputs
,
self
.
outputs
)
equiv
=
clone_get_equiv
(
self
.
inputs
,
self
.
outputs
)
if
check_integrity
:
self
.
check_integrity
()
...
...
@@ -865,3 +866,11 @@ class FunctionGraph(utils.object2):
for
feature
in
self
.
_features
:
if
hasattr
(
feature
,
"unpickle"
):
feature
.
unpickle
(
self
)
def
__contains__
(
self
,
item
):
if
isinstance
(
item
,
Variable
):
return
item
in
self
.
variables
elif
isinstance
(
item
,
Apply
):
return
item
in
self
.
apply_nodes
else
:
raise
TypeError
()
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论