Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
9036e6dd
提交
9036e6dd
authored
4月 07, 2017
作者:
Thomas George
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
more test cases + some small changes
上级
a8996904
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
20 行增加
和
45 行删除
+20
-45
linalg.py
theano/gpuarray/linalg.py
+0
-3
test_linalg.py
theano/gpuarray/tests/test_linalg.py
+20
-42
没有找到文件。
theano/gpuarray/linalg.py
浏览文件 @
9036e6dd
...
@@ -284,8 +284,6 @@ class GpuCholesky(Op):
...
@@ -284,8 +284,6 @@ class GpuCholesky(Op):
# Input matrix.
# Input matrix.
A
=
inputs
[
0
]
A
=
inputs
[
0
]
assert
(
len
(
A
.
shape
)
==
2
)
l
,
n
=
A
.
shape
l
,
n
=
A
.
shape
if
l
!=
n
:
if
l
!=
n
:
raise
ValueError
(
'A must be a square matrix'
)
raise
ValueError
(
'A must be a square matrix'
)
...
@@ -333,7 +331,6 @@ class GpuCholesky(Op):
...
@@ -333,7 +331,6 @@ class GpuCholesky(Op):
# cusolver leaves the elements in the matrix outside the considered
# cusolver leaves the elements in the matrix outside the considered
# upper or lower triangle unchanged, so we need to put zeros outside
# upper or lower triangle unchanged, so we need to put zeros outside
# the triangle
# the triangle
# Note : we should probably check for c or f order in triu instead of here
if
self
.
lower
:
if
self
.
lower
:
tril
(
L
)
tril
(
L
)
else
:
else
:
...
...
theano/gpuarray/tests/test_linalg.py
浏览文件 @
9036e6dd
...
@@ -120,14 +120,14 @@ class TestGpuCholesky(unittest.TestCase):
...
@@ -120,14 +120,14 @@ class TestGpuCholesky(unittest.TestCase):
utt
.
seed_rng
()
utt
.
seed_rng
()
def
get_gpu_cholesky_func
(
self
,
lower
=
True
,
inplace
=
False
):
def
get_gpu_cholesky_func
(
self
,
lower
=
True
,
inplace
=
False
):
""" Helper function to compile function from GPU Cholesky op. """
# Helper function to compile function from GPU Cholesky op.
A
=
theano
.
tensor
.
matrix
(
"A"
,
dtype
=
"float32"
)
A
=
theano
.
tensor
.
matrix
(
"A"
,
dtype
=
"float32"
)
cholesky_op
=
GpuCholesky
(
lower
=
lower
,
inplace
=
inplace
)
cholesky_op
=
GpuCholesky
(
lower
=
lower
,
inplace
=
inplace
)
chol_A
=
cholesky_op
(
A
)
chol_A
=
cholesky_op
(
A
)
return
theano
.
function
([
A
],
chol_A
,
accept_inplace
=
inplace
,
mode
=
mode_with_gpu
)
return
theano
.
function
([
A
],
chol_A
,
accept_inplace
=
inplace
,
mode
=
mode_with_gpu
)
def
compare_gpu_cholesky_to_numpy
(
self
,
A_val
,
lower
=
True
,
inplace
=
False
):
def
compare_gpu_cholesky_to_numpy
(
self
,
A_val
,
lower
=
True
,
inplace
=
False
):
""" Helper function to compare op output to numpy.cholesky output. """
# Helper function to compare op output to numpy.cholesky output.
chol_A_val
=
numpy
.
linalg
.
cholesky
(
A_val
)
chol_A_val
=
numpy
.
linalg
.
cholesky
(
A_val
)
if
not
lower
:
if
not
lower
:
chol_A_val
=
chol_A_val
.
T
chol_A_val
=
chol_A_val
.
T
...
@@ -137,77 +137,55 @@ class TestGpuCholesky(unittest.TestCase):
...
@@ -137,77 +137,55 @@ class TestGpuCholesky(unittest.TestCase):
utt
.
assert_allclose
(
chol_A_res
,
chol_A_val
)
utt
.
assert_allclose
(
chol_A_res
,
chol_A_val
)
def
test_invalid_input_fail_non_square
(
self
):
def
test_invalid_input_fail_non_square
(
self
):
""" Invalid Cholesky input test with non-square matrix as input. """
# Invalid Cholesky input test with non-square matrix as input.
A_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
2
))
.
astype
(
"float32"
)
A_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
2
))
.
astype
(
"float32"
)
fn
=
self
.
get_gpu_cholesky_func
(
True
,
False
)
fn
=
self
.
get_gpu_cholesky_func
(
True
,
False
)
self
.
assertRaises
(
ValueError
,
fn
,
A_val
)
self
.
assertRaises
(
ValueError
,
fn
,
A_val
)
def
test_invalid_input_fail_vector
(
self
):
def
test_invalid_input_fail_vector
(
self
):
""" Invalid Cholesky input test with vector as input. """
# Invalid Cholesky input test with vector as input.
def
invalid_input_func
():
def
invalid_input_func
():
A
=
theano
.
tensor
.
vector
(
"A"
,
dtype
=
"float32"
)
A
=
theano
.
tensor
.
vector
(
"A"
,
dtype
=
"float32"
)
GpuCholesky
(
lower
=
True
,
inplace
=
False
)(
A
)
GpuCholesky
(
lower
=
True
,
inplace
=
False
)(
A
)
self
.
assertRaises
(
AssertionError
,
invalid_input_func
)
self
.
assertRaises
(
AssertionError
,
invalid_input_func
)
def
test_invalid_input_fail_tensor3
(
self
):
def
test_invalid_input_fail_tensor3
(
self
):
""" Invalid Cholesky input test with 3D tensor as input. """
# Invalid Cholesky input test with 3D tensor as input.
def
invalid_input_func
():
def
invalid_input_func
():
A
=
theano
.
tensor
.
tensor3
(
"A"
,
dtype
=
"float32"
)
A
=
theano
.
tensor
.
tensor3
(
"A"
,
dtype
=
"float32"
)
GpuCholesky
(
lower
=
True
,
inplace
=
False
)(
A
)
GpuCholesky
(
lower
=
True
,
inplace
=
False
)(
A
)
self
.
assertRaises
(
AssertionError
,
invalid_input_func
)
self
.
assertRaises
(
AssertionError
,
invalid_input_func
)
def
test_diag_chol
(
self
):
def
test_diag_chol
(
self
):
""" Diagonal matrix input Cholesky test. """
# Diagonal matrix input Cholesky test.
# make sure all diagonal elements are positive so positive-definite
# make sure all diagonal elements are positive so positive-definite
for
lower
in
[
True
,
False
]:
for
inplace
in
[
True
,
False
]:
A_val
=
numpy
.
diag
(
numpy
.
random
.
uniform
(
size
=
5
)
.
astype
(
"float32"
)
+
1
)
A_val
=
numpy
.
diag
(
numpy
.
random
.
uniform
(
size
=
5
)
.
astype
(
"float32"
)
+
1
)
self
.
compare_gpu_cholesky_to_numpy
(
A_val
,
lower
=
True
,
inplace
=
Fals
e
)
self
.
compare_gpu_cholesky_to_numpy
(
A_val
,
lower
=
lower
,
inplace
=
inplac
e
)
def
test_dense_chol_lower
(
self
):
def
test_dense_chol_lower
(
self
):
""" Dense matrix input lower-triangular Cholesky test. """
# Dense matrix input lower-triangular Cholesky test.
for
lower
in
[
True
,
False
]:
for
inplace
in
[
True
,
False
]:
M_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
3
))
.
astype
(
"float32"
)
M_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
3
))
.
astype
(
"float32"
)
# A = M.dot(M) will be positive definite for all non-singular M
# A = M.dot(M) will be positive definite for all non-singular M
A_val
=
M_val
.
dot
(
M_val
.
T
)
A_val
=
M_val
.
dot
(
M_val
.
T
)
self
.
compare_gpu_cholesky_to_numpy
(
A_val
,
lower
=
True
,
inplace
=
False
)
self
.
compare_gpu_cholesky_to_numpy
(
A_val
,
lower
=
lower
,
inplace
=
inplace
)
def
test_dense_chol_upper
(
self
):
""" Dense matrix input upper-triangular Cholesky test. """
M_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
3
))
.
astype
(
"float32"
)
# A = M.dot(M) will be positive definite for all non-singular M
A_val
=
M_val
.
dot
(
M_val
.
T
)
self
.
compare_gpu_cholesky_to_numpy
(
A_val
,
lower
=
False
,
inplace
=
False
)
def
test_diag_chol_inplace
(
self
):
""" Diagonal matrix input inplace Cholesky test. """
# make sure all diagonal elements are positive so positive-definite
A_val
=
numpy
.
diag
(
numpy
.
random
.
uniform
(
size
=
5
)
.
astype
(
"float32"
)
+
1
)
self
.
compare_gpu_cholesky_to_numpy
(
A_val
,
lower
=
True
,
inplace
=
True
)
def
test_dense_chol_lower_inplace
(
self
):
""" Dense matrix input lower-triangular inplace Cholesky test. """
M_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
3
))
.
astype
(
"float32"
)
# A = M.dot(M) will be positive definite for all non-singular M
A_val
=
M_val
.
dot
(
M_val
.
T
)
self
.
compare_gpu_cholesky_to_numpy
(
A_val
,
lower
=
True
,
inplace
=
True
)
def
test_dense_chol_upper_inplace
(
self
):
""" Dense matrix input upper-triangular inplace Cholesky test. """
M_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
3
))
.
astype
(
"float32"
)
# A = M.dot(M) will be positive definite for all non-singular M
A_val
=
M_val
.
dot
(
M_val
.
T
)
self
.
compare_gpu_cholesky_to_numpy
(
A_val
,
lower
=
False
,
inplace
=
True
)
def
test_invalid_input_fail_non_symmetric
(
self
):
def
test_invalid_input_fail_non_symmetric
(
self
):
""" Invalid Cholesky input test with non-symmetric input.
# Invalid Cholesky input test with non-symmetric input.
(Non-symmetric real input must also be non-positive definite). """
# (Non-symmetric real input must also be non-positive definite).
A_val
=
None
while
True
:
A_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
3
))
.
astype
(
"float32"
)
A_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
3
))
.
astype
(
"float32"
)
# double-check random A_val is asymmetric - the probability of this
if
not
numpy
.
allclose
(
A_val
,
A_val
.
T
):
# not being the case even with finite precision should be negligible
break
assert
not
numpy
.
allclose
(
A_val
,
A_val
.
T
)
fn
=
self
.
get_gpu_cholesky_func
(
True
,
False
)
fn
=
self
.
get_gpu_cholesky_func
(
True
,
False
)
self
.
assertRaises
(
LinAlgError
,
fn
,
A_val
)
self
.
assertRaises
(
LinAlgError
,
fn
,
A_val
)
def
test_invalid_input_fail_negative_definite
(
self
):
def
test_invalid_input_fail_negative_definite
(
self
):
""" Invalid Cholesky input test with negative-definite input. """
# Invalid Cholesky input test with negative-definite input.
M_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
3
))
.
astype
(
"float32"
)
M_val
=
numpy
.
random
.
normal
(
size
=
(
3
,
3
))
.
astype
(
"float32"
)
# A = -M.dot(M) will be negative definite for all non-singular M
# A = -M.dot(M) will be negative definite for all non-singular M
A_val
=
-
M_val
.
dot
(
M_val
.
T
)
A_val
=
-
M_val
.
dot
(
M_val
.
T
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论