Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
144ea9a6
提交
144ea9a6
authored
1月 19, 2012
作者:
Pascal Lamblin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add tests for things that should still fail.
上级
628b9720
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
95 行增加
和
40 行删除
+95
-40
test_var.py
theano/sandbox/cuda/tests/test_var.py
+95
-40
没有找到文件。
theano/sandbox/cuda/tests/test_var.py
浏览文件 @
144ea9a6
import
unittest
import
numpy
from
nose.plugins.skip
import
SkipTest
...
...
@@ -5,7 +6,9 @@ import theano
from
theano
import
tensor
from
theano.ifelse
import
ifelse
from
theano
import
sparse
from
theano.tensor
import
TensorType
from
theano.tests
import
unittest_tools
as
utt
from
theano.sandbox.cuda.var
import
float32_shared_constructor
as
f32sc
from
theano.sandbox.cuda
import
CudaNdarrayType
,
cuda_available
...
...
@@ -49,48 +52,100 @@ def test_givens():
y
=
x
**
2
f
=
theano
.
function
([
x
],
y
,
givens
=
{
x
:
x
+
1
})
def
test_updates
(
):
class
T_updates
(
unittest
.
TestCase
):
# Test that you can use a TensorType expression to update a
# CudaNdarrayType in the updates dictionary.
data
=
numpy
.
float32
([
1
,
2
,
3
,
4
])
x
=
f32sc
(
data
)
y
=
x
**
2
f
=
theano
.
function
([],
y
,
updates
=
{
x
:
x
+
1
})
def
test_updates2
():
# Test that you can use a TensorType expression to update a
# CudaNdarrayType in the updates dictionary.
# This test case uses code mentionned in #698
data
=
numpy
.
random
.
rand
(
10
,
10
)
.
astype
(
'float32'
)
output_var
=
f32sc
(
name
=
"output"
,
value
=
numpy
.
zeros
((
10
,
10
),
'float32'
))
x
=
tensor
.
fmatrix
(
'x'
)
output_updates
=
{
output_var
:
x
**
2
}
output_givens
=
{
x
:
data
}
output_func
=
theano
.
function
(
inputs
=
[],
outputs
=
[],
updates
=
output_updates
,
givens
=
output_givens
)
output_func
()
def
test_ifelse
():
data
=
numpy
.
float32
([
1
,
2
,
3
,
4
])
x
=
f32sc
(
data
)
y
=
x
+
1
cond
=
theano
.
tensor
.
iscalar
(
'cond'
)
assert
isinstance
(
x
.
type
,
CudaNdarrayType
)
assert
isinstance
(
y
.
type
,
TensorType
)
out1
=
ifelse
(
cond
,
x
,
x
+
1
)
out2
=
ifelse
(
cond
,
x
+
1
,
x
)
assert
isinstance
(
out1
.
type
,
TensorType
)
assert
isinstance
(
out2
.
type
,
TensorType
)
def
test_1
(
self
):
data
=
numpy
.
float32
([
1
,
2
,
3
,
4
])
x
=
f32sc
(
data
)
y
=
x
**
2
f
=
theano
.
function
([],
y
,
updates
=
{
x
:
x
+
1
})
def
test_2
(
self
):
# This test case uses code mentionned in #698
data
=
numpy
.
random
.
rand
(
10
,
10
)
.
astype
(
'float32'
)
output_var
=
f32sc
(
name
=
"output"
,
value
=
numpy
.
zeros
((
10
,
10
),
'float32'
))
x
=
tensor
.
fmatrix
(
'x'
)
output_updates
=
{
output_var
:
x
**
2
}
output_givens
=
{
x
:
data
}
output_func
=
theano
.
function
(
inputs
=
[],
outputs
=
[],
updates
=
output_updates
,
givens
=
output_givens
)
output_func
()
class
T_ifelse
(
unittest
.
TestCase
):
def
setUp
(
self
):
utt
.
seed_rng
()
self
.
rng
=
numpy
.
random
.
RandomState
(
seed
=
utt
.
fetch_seed
())
def
test_cuda_tensor
(
self
):
data
=
self
.
rng
.
rand
(
4
)
.
astype
(
'float32'
)
x
=
f32sc
(
data
)
y
=
x
+
1
cond
=
theano
.
tensor
.
iscalar
(
'cond'
)
assert
isinstance
(
x
.
type
,
CudaNdarrayType
)
assert
isinstance
(
y
.
type
,
TensorType
)
out1
=
ifelse
(
cond
,
x
,
y
)
out2
=
ifelse
(
cond
,
y
,
x
)
assert
isinstance
(
out1
.
type
,
TensorType
)
assert
isinstance
(
out2
.
type
,
TensorType
)
f
=
theano
.
function
([
cond
],
out1
)
g
=
theano
.
function
([
cond
],
out2
)
assert
numpy
.
all
(
f
(
0
)
==
data
+
1
)
assert
numpy
.
all
(
f
(
1
)
==
data
)
assert
numpy
.
all
(
g
(
0
)
==
data
)
assert
numpy
.
all
(
g
(
1
)
==
data
+
1
)
def
test_dtype_mismatch
(
self
):
data
=
self
.
rng
.
rand
(
5
)
.
astype
(
'float32'
)
x
=
f32sc
(
data
)
y
=
tensor
.
cast
(
x
,
'float64'
)
cond
=
theano
.
tensor
.
iscalar
(
'cond'
)
self
.
assertRaises
(
TypeError
,
ifelse
,
cond
,
x
,
y
)
self
.
assertRaises
(
TypeError
,
ifelse
,
cond
,
y
,
x
)
def
test_ndim_mismatch
(
self
):
data
=
self
.
rng
.
rand
(
5
)
.
astype
(
'float32'
)
x
=
f32sc
(
data
)
y
=
tensor
.
fcol
(
'y'
)
cond
=
theano
.
tensor
.
iscalar
(
'cond'
)
self
.
assertRaises
(
TypeError
,
ifelse
,
cond
,
x
,
y
)
self
.
assertRaises
(
TypeError
,
ifelse
,
cond
,
y
,
x
)
def
test_broadcast_mismatch
(
self
):
data
=
self
.
rng
.
rand
(
2
,
3
)
.
astype
(
'float32'
)
x
=
f32sc
(
data
)
print
x
.
broadcastable
y
=
tensor
.
frow
(
'y'
)
print
y
.
broadcastable
cond
=
theano
.
tensor
.
iscalar
(
'cond'
)
self
.
assertRaises
(
TypeError
,
ifelse
,
cond
,
x
,
y
)
self
.
assertRaises
(
TypeError
,
ifelse
,
cond
,
y
,
x
)
def
test_sparse_tensor_error
(
self
):
data
=
self
.
rng
.
rand
(
2
,
3
)
.
astype
(
'float32'
)
x
=
f32sc
(
data
)
y
=
sparse
.
matrix
(
'csc'
,
dtype
=
'float32'
,
name
=
'y'
)
z
=
sparse
.
matrix
(
'csr'
,
dtype
=
'float32'
,
name
=
'z'
)
cond
=
theano
.
tensor
.
iscalar
(
'cond'
)
# Right now (2012-01-19), a ValueError gets raised, but I thing
# a TypeError (like in the other cases) would be fine.
self
.
assertRaises
((
TypeError
,
ValueError
),
ifelse
,
cond
,
x
,
y
)
self
.
assertRaises
((
TypeError
,
ValueError
),
ifelse
,
cond
,
y
,
x
)
self
.
assertRaises
((
TypeError
,
ValueError
),
ifelse
,
cond
,
x
,
z
)
self
.
assertRaises
((
TypeError
,
ValueError
),
ifelse
,
cond
,
z
,
x
)
self
.
assertRaises
((
TypeError
,
ValueError
),
ifelse
,
cond
,
y
,
z
)
self
.
assertRaises
((
TypeError
,
ValueError
),
ifelse
,
cond
,
z
,
y
)
f
=
theano
.
function
([
cond
],
out1
)
g
=
theano
.
function
([
cond
],
out2
)
assert
numpy
.
all
(
f
(
0
)
==
data
+
1
)
assert
numpy
.
all
(
f
(
1
)
==
data
)
assert
numpy
.
all
(
g
(
0
)
==
data
)
assert
numpy
.
all
(
g
(
1
)
==
data
+
1
)
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论