Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
f88f8513
提交
f88f8513
authored
6月 09, 2011
作者:
Pascal Lamblin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove unnecessary layer in stacktrace.
上级
0d02b179
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
6 行增加
和
9 行删除
+6
-9
basic.py
theano/scalar/basic.py
+6
-9
没有找到文件。
theano/scalar/basic.py
浏览文件 @
f88f8513
...
@@ -1126,26 +1126,23 @@ int_div = IntDiv(upcast_out, name = 'int_div')
...
@@ -1126,26 +1126,23 @@ int_div = IntDiv(upcast_out, name = 'int_div')
floor_div
=
int_div
floor_div
=
int_div
def
raise_complex_error
():
raise
ComplexError
(
"Theano does not support the mod operator (
%
) on "
"complex numbers, since numpy deprecated it."
)
def
mod_check
(
x
,
y
):
def
mod_check
(
x
,
y
):
if
(
as_scalar
(
x
)
.
type
in
complex_types
or
if
(
as_scalar
(
x
)
.
type
in
complex_types
or
as_scalar
(
y
)
.
type
in
complex_types
):
as_scalar
(
y
)
.
type
in
complex_types
):
# Currently forbidden.
# Currently forbidden.
raise
_complex_error
()
raise
Mod
.
complex_error
else
:
else
:
return
mod
(
x
,
y
)
return
mod
(
x
,
y
)
class
Mod
(
BinaryScalarOp
):
class
Mod
(
BinaryScalarOp
):
complex_error
=
ComplexError
(
"Theano does not support the mod operator (
%
) on "
"complex numbers, since numpy deprecated it."
)
def
impl
(
self
,
x
,
y
):
def
impl
(
self
,
x
,
y
):
if
isinstance
(
x
,
numpy
.
complex
)
or
isinstance
(
y
,
numpy
.
complex
):
if
isinstance
(
x
,
numpy
.
complex
)
or
isinstance
(
y
,
numpy
.
complex
):
raise
_complex_error
()
raise
self
.
complex_error
return
x
%
y
return
x
%
y
def
c_code_cache_version
(
self
):
def
c_code_cache_version
(
self
):
...
@@ -1184,7 +1181,7 @@ class Mod(BinaryScalarOp):
...
@@ -1184,7 +1181,7 @@ class Mod(BinaryScalarOp):
x_mod_ypm
=
"fmod(
%(x)
s,-
%(y)
s)"
%
locals
()
x_mod_ypm
=
"fmod(
%(x)
s,-
%(y)
s)"
%
locals
()
x_mod_ymp
=
"fmod(-
%(x)
s,
%(y)
s)"
%
locals
()
x_mod_ymp
=
"fmod(-
%(x)
s,
%(y)
s)"
%
locals
()
elif
str
(
t
)
in
imap
(
str
,
complex_types
):
elif
str
(
t
)
in
imap
(
str
,
complex_types
):
raise
_complex_error
()
raise
self
.
complex_error
else
:
else
:
raise
NotImplementedError
(
'type not supported'
,
type
)
raise
NotImplementedError
(
'type not supported'
,
type
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论