Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
f4c355f4
提交
f4c355f4
authored
2月 14, 2017
作者:
hantek
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
amendment
上级
cd021d10
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
24 行增加
和
29 行删除
+24
-29
subtensor.py
theano/gpuarray/subtensor.py
+9
-9
test_subtensor.py
theano/gpuarray/tests/test_subtensor.py
+13
-5
basic.py
theano/tensor/basic.py
+2
-15
没有找到文件。
theano/gpuarray/subtensor.py
浏览文件 @
f4c355f4
...
...
@@ -1080,7 +1080,7 @@ __device__ ga_half atomicExch(ga_half *addr, ga_half val) {
"""
%
locals
()
class
Gpu
Diagonal
(
Subtensor
):
class
Gpu
ExtractDiag
(
Subtensor
):
__props__
=
(
"offset"
,
"axis1"
,
"axis2"
,
"view"
)
def
__init__
(
self
,
offset
=
0
,
axis1
=
0
,
axis2
=
1
,
view
=
False
):
...
...
@@ -1185,7 +1185,7 @@ class GpuDiagonal(Subtensor):
return
[
tuple
(
out_shape
)]
class
GpuAllocDiag
(
Subtensor
):
class
GpuAllocDiag
(
Op
):
__props__
=
(
"offset"
,)
def
__init__
(
self
,
offset
=
0
):
...
...
@@ -1206,20 +1206,20 @@ class GpuAllocDiag(Subtensor):
(
z
,)
=
outputs
dim
=
x
.
shape
[
0
]
+
abs
(
self
.
offset
)
z
=
gpuarray
.
zeros
((
dim
,
dim
),
dtype
=
x
.
dtype
,
context
=
x
.
context
)
z
[
0
]
=
gpuarray
.
zeros
((
dim
,
dim
),
dtype
=
x
.
dtype
,
context
=
x
.
context
)
if
self
.
offset
<=
0
:
# diag in the lower triangle
diag_z
=
z
[
-
self
.
offset
,
:(
dim
+
self
.
offset
)]
diag_z
=
z
[
0
][
-
self
.
offset
,
:(
dim
+
self
.
offset
)]
else
:
# diag in the upper triangle
diag_z
=
z
[:(
dim
-
self
.
offset
),
self
.
offset
]
diag_z
.
strides
=
(
sum
(
z
.
strides
),)
diag_z
=
z
[
0
][
:(
dim
-
self
.
offset
),
self
.
offset
]
diag_z
.
strides
=
(
sum
(
z
[
0
]
.
strides
),)
diag_z
[:]
=
x
[:]
def
grad
(
self
,
inputs
,
gout
):
(
input_x
,)
=
inputs
return
[
grad_not_implemented
(
self
,
0
,
input_x
)]
(
gz
,)
=
gout
return
[
GpuExtractDiag
(
offset
=
self
.
offset
,
axis1
=
0
,
axis2
=
1
,
view
=
False
)(
gz
)]
def
infer_shape
(
self
,
node
,
shapes
):
dim
=
shapes
[
0
][
0
]
+
abs
(
self
.
offset
)
return
[
dim
,
dim
]
return
[
[
dim
,
dim
]
]
theano/gpuarray/tests/test_subtensor.py
浏览文件 @
f4c355f4
...
...
@@ -14,7 +14,7 @@ from ..subtensor import (GpuIncSubtensor, GpuSubtensor,
GpuAdvancedSubtensor
,
GpuAdvancedIncSubtensor1
,
GpuAdvancedIncSubtensor1_dev20
,
Gpu
Diagonal
,
Gpu
ExtractDiag
,
GpuAllocDiag
)
from
..type
import
gpuarray_shared_constructor
...
...
@@ -181,11 +181,11 @@ class test_gpudiagonal(unittest.TestCase):
def
test_matrix
(
self
):
x
=
tensor
.
matrix
()
np_x
=
np
.
arange
(
77
)
.
reshape
(
7
,
11
)
.
astype
(
theano
.
config
.
floatX
)
fn
=
theano
.
function
([
x
],
Gpu
Diagonal
()(
x
),
mode
=
mode_with_gpu
)
fn
=
theano
.
function
([
x
],
Gpu
ExtractDiag
()(
x
),
mode
=
mode_with_gpu
)
assert
np
.
allclose
(
fn
(
np_x
),
np_x
.
diagonal
())
fn
=
theano
.
function
([
x
],
Gpu
Diagonal
(
2
)(
x
),
mode
=
mode_with_gpu
)
fn
=
theano
.
function
([
x
],
Gpu
ExtractDiag
(
2
)(
x
),
mode
=
mode_with_gpu
)
assert
np
.
allclose
(
fn
(
np_x
),
np_x
.
diagonal
(
2
))
fn
=
theano
.
function
([
x
],
Gpu
Diagonal
(
-
3
)(
x
),
mode
=
mode_with_gpu
)
fn
=
theano
.
function
([
x
],
Gpu
ExtractDiag
(
-
3
)(
x
),
mode
=
mode_with_gpu
)
assert
np
.
allclose
(
fn
(
np_x
),
np_x
.
diagonal
(
-
3
))
def
test_tensor
(
self
):
...
...
@@ -196,7 +196,7 @@ class test_gpudiagonal(unittest.TestCase):
(
-
3
,
1
,
0
),
(
-
2
,
2
,
0
),
(
3
,
3
,
0
),
(
-
1
,
3
,
2
),
(
2
,
2
,
3
),
(
-
1
,
2
,
1
),
(
1
,
3
,
1
),
(
-
1
,
1
,
3
)]:
assert
np
.
allclose
(
Gpu
Diagonal
(
offset
,
axis1
,
axis2
)(
x
)
.
eval
({
x
:
np_x
}),
Gpu
ExtractDiag
(
offset
,
axis1
,
axis2
)(
x
)
.
eval
({
x
:
np_x
}),
np_x
.
diagonal
(
offset
,
axis1
,
axis2
))
...
...
@@ -210,3 +210,11 @@ class test_gpuallocdiag(unittest.TestCase):
assert
np
.
allclose
(
fn
(
np_x
),
np
.
diag
(
np_x
,
2
))
fn
=
theano
.
function
([
x
],
GpuAllocDiag
(
-
3
)(
x
),
mode
=
mode_with_gpu
)
assert
np
.
allclose
(
fn
(
np_x
),
np
.
diag
(
np_x
,
-
3
))
def
test_grad
(
self
):
x
=
tensor
.
vector
()
np_x
=
np
.
arange
(
7
)
.
astype
(
theano
.
config
.
floatX
)
mtx_x
=
GpuAllocDiag
()(
x
)
sum_mtx_x
=
tensor
.
sum
(
mtx_x
)
grad
=
tensor
.
grad
(
sum_mtx_x
,
x
)
# assert
theano/tensor/basic.py
浏览文件 @
f4c355f4
...
...
@@ -6167,8 +6167,6 @@ class ExtractDiag(Op):
def
diagonal
(
a
,
offset
=
0
,
axis1
=
0
,
axis2
=
1
):
if
(
offset
,
axis1
,
axis2
)
==
(
0
,
0
,
1
):
return
theano
.
tensor
.
nlinalg
.
extract_diag
(
a
)
return
ExtractDiag
(
offset
,
axis1
,
axis2
)(
a
)
...
...
@@ -6177,7 +6175,6 @@ class AllocDiag(Op):
An op that copies a vector to the diagonal of an empty matrix. It does the
inverse of ExtractDiag.
__props__ = ()
Usage: T.AllocDiag()(x)
`x` should be a tensor vector. The parenthesis in the front should indicate
...
...
@@ -6210,9 +6207,6 @@ class AllocDiag(Op):
def
make_node
(
self
,
diag
):
diag
=
as_tensor_variable
(
diag
)
if
diag
.
type
.
ndim
!=
1
:
raise
TypeError
(
'data argument must be a vector'
,
diag
.
type
)
return
Apply
(
self
,
[
diag
],
[
matrix
(
dtype
=
diag
.
dtype
)])
def
perform
(
self
,
node
,
inputs
,
outputs
):
...
...
@@ -6221,17 +6215,11 @@ class AllocDiag(Op):
def
grad
(
self
,
inputs
,
gout
):
(
gz
,)
=
gout
if
self
.
has_default_props
():
return
[
diagonal
(
gz
)]
else
:
return
[
grad_not_implemented
(
self
,
0
,
inputs
[
0
])]
return
[
diagonal
(
gz
,
offset
=
self
.
offset
,
axis1
=
0
,
axis2
=
1
)]
def
infer_shape
(
self
,
nodes
,
shapes
):
return
[(
shapes
[
0
][
0
],)
*
2
]
def
has_default_props
(
self
):
return
self
.
offset
==
self
.
default_offset
def
diag
(
v
,
k
=
0
):
"""
...
...
@@ -6255,10 +6243,9 @@ def diag(v, k=0):
"""
if
v
.
ndim
==
1
:
assert
k
==
0
,
"diagonals other than main are not implemented"
return
AllocDiag
()(
v
)
elif
v
.
ndim
>=
2
:
return
diagonal
(
v
,
k
)
return
diagonal
(
v
,
offset
=
k
)
else
:
raise
ValueError
(
"Input must has v.dim >= 1."
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论