Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
b8e26cd4
提交
b8e26cd4
authored
5月 02, 2024
作者:
Ricardo Vieira
提交者:
Ricardo Vieira
5月 02, 2024
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Make local_pow_to_nested_squaring more permissive
上级
e48ff560
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
2 行增加
和
12 行删除
+2
-12
math.py
pytensor/tensor/rewriting/math.py
+0
-4
test_math.py
tests/tensor/rewriting/test_math.py
+2
-8
没有找到文件。
pytensor/tensor/rewriting/math.py
浏览文件 @
b8e26cd4
...
@@ -2120,10 +2120,6 @@ def local_pow_to_nested_squaring(fgraph, node):
...
@@ -2120,10 +2120,6 @@ def local_pow_to_nested_squaring(fgraph, node):
rval
=
[
rval1
]
rval
=
[
rval1
]
if
rval
:
if
rval
:
rval
[
0
]
=
cast
(
rval
[
0
],
odtype
)
rval
[
0
]
=
cast
(
rval
[
0
],
odtype
)
# TODO: We can add a specify_broadcastable and/or unbroadcast to make the
# output types compatible. Or work on #408 and let TensorType.filter_variable do it.
if
rval
[
0
]
.
type
.
broadcastable
!=
node
.
outputs
[
0
]
.
type
.
broadcastable
:
return
None
return
rval
return
rval
...
...
tests/tensor/rewriting/test_math.py
浏览文件 @
b8e26cd4
...
@@ -29,7 +29,7 @@ from pytensor.graph.rewriting.db import RewriteDatabaseQuery
...
@@ -29,7 +29,7 @@ from pytensor.graph.rewriting.db import RewriteDatabaseQuery
from
pytensor.graph.rewriting.utils
import
is_same_graph
,
rewrite_graph
from
pytensor.graph.rewriting.utils
import
is_same_graph
,
rewrite_graph
from
pytensor.misc.safe_asarray
import
_asarray
from
pytensor.misc.safe_asarray
import
_asarray
from
pytensor.printing
import
debugprint
from
pytensor.printing
import
debugprint
from
pytensor.scalar
import
PolyGamma
,
P
ow
,
P
si
,
TriGamma
from
pytensor.scalar
import
PolyGamma
,
Psi
,
TriGamma
from
pytensor.tensor
import
inplace
from
pytensor.tensor
import
inplace
from
pytensor.tensor.basic
import
Alloc
,
constant
,
join
,
second
,
switch
from
pytensor.tensor.basic
import
Alloc
,
constant
,
join
,
second
,
switch
from
pytensor.tensor.blas
import
Dot22
,
Gemv
from
pytensor.tensor.blas
import
Dot22
,
Gemv
...
@@ -1757,7 +1757,7 @@ def test_local_pow_to_nested_squaring():
...
@@ -1757,7 +1757,7 @@ def test_local_pow_to_nested_squaring():
utt
.
assert_allclose
(
f
(
val_no0
),
val_no0
**
(
-
16
))
utt
.
assert_allclose
(
f
(
val_no0
),
val_no0
**
(
-
16
))
def
test_local_pow_to_nested_squaring_
fails_gracefully
():
def
test_local_pow_to_nested_squaring_
works_with_static_type
():
# Reported in #456
# Reported in #456
x
=
vector
(
"x"
,
shape
=
(
1
,))
x
=
vector
(
"x"
,
shape
=
(
1
,))
...
@@ -1771,12 +1771,6 @@ def test_local_pow_to_nested_squaring_fails_gracefully():
...
@@ -1771,12 +1771,6 @@ def test_local_pow_to_nested_squaring_fails_gracefully():
fn
=
function
([
x
],
y
)
fn
=
function
([
x
],
y
)
# Check rewrite is not applied (this could change in the future)
assert
any
(
(
isinstance
(
node
.
op
,
Elemwise
)
and
isinstance
(
node
.
op
.
scalar_op
,
Pow
))
for
node
in
fn
.
maker
.
fgraph
.
apply_nodes
)
np
.
testing
.
assert_allclose
(
fn
([
2.0
]),
np
.
array
([
4.0
]))
np
.
testing
.
assert_allclose
(
fn
([
2.0
]),
np
.
array
([
4.0
]))
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论