Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
19092641
提交
19092641
authored
3月 07, 2012
作者:
Frederic
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
pep8 fix.
上级
fce0a1e8
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
146 行增加
和
90 行删除
+146
-90
sp2.py
theano/sparse/sandbox/sp2.py
+146
-90
没有找到文件。
theano/sparse/sandbox/sp2.py
浏览文件 @
19092641
from
theano.sparse.basic
import
*
# To facilitate later merge into sparse module
from
theano.sparse.basic
import
_is_sparse
,
_is_sparse_variable
,
\
_is_dense_variable
,
_is_sparse
,
_is_dense
,
_kmap_eq
,
_kmap_hash
from
theano.sparse.basic
import
(
_is_sparse
,
_is_sparse_variable
,
_is_dense_variable
,
_is_sparse
,
_is_dense
,
_kmap_eq
,
_kmap_hash
)
class
Cast
(
gof
.
op
.
Op
):
def
__init__
(
self
,
out_type
):
self
.
out_type
=
out_type
def
__eq__
(
self
,
other
):
return
(
type
(
self
)
==
type
(
other
))
and
self
.
out_type
==
other
.
out_type
def
__hash__
(
self
):
return
hash
(
type
(
self
))
^
hash
(
self
.
out_type
)
def
make_node
(
self
,
x
):
x
=
as_sparse_variable
(
x
)
return
gof
.
Apply
(
self
,
[
x
],
[
SparseType
(
dtype
=
self
.
out_type
,
format
=
x
.
format
)
.
make_variable
()])
def
perform
(
self
,
node
,
(
x
,
),
(
out
,
)):
assert
_is_sparse
(
x
)
out
[
0
]
=
x
...
...
@@ -20,95 +26,118 @@ class Cast(gof.op.Op):
fcast
=
Cast
(
'float32'
)
dcast
=
Cast
(
'float64'
)
class
Poisson
(
gof
.
op
.
Op
):
def
__eq__
(
self
,
other
):
return
(
type
(
self
)
==
type
(
other
))
def
__hash__
(
self
):
return
hash
(
type
(
self
))
def
make_node
(
self
,
x
):
x
=
as_sparse_variable
(
x
)
return
gof
.
Apply
(
self
,
[
x
],
[
x
.
type
()])
def
perform
(
self
,
node
,
(
x
,
),
(
out
,
)):
assert
_is_sparse
(
x
)
out
[
0
]
=
x
.
copy
()
out
[
0
]
.
data
=
numpy
.
asarray
(
numpy
.
random
.
poisson
(
out
[
0
]
.
data
),
dtype
=
x
.
dtype
)
out
[
0
]
.
data
=
numpy
.
asarray
(
numpy
.
random
.
poisson
(
out
[
0
]
.
data
),
dtype
=
x
.
dtype
)
out
[
0
]
.
eliminate_zeros
()
poisson
=
Poisson
()
class
Multinomial
(
gof
.
op
.
Op
):
def
__eq__
(
self
,
other
):
return
(
type
(
self
)
==
type
(
other
))
def
__hash__
(
self
):
return
hash
(
type
(
self
))
def
make_node
(
self
,
n
,
p
):
n
=
tensor
.
as_tensor_variable
(
n
)
p
=
as_sparse_variable
(
p
)
return
gof
.
Apply
(
self
,
[
n
,
p
],
[
p
.
type
()])
def
perform
(
self
,
node
,
(
n
,
p
),
(
out
,
)):
assert
_is_sparse
(
p
)
if
p
.
format
!=
'csr'
:
raise
NotImplemented
()
out
[
0
]
=
p
.
copy
()
for
i
in
xrange
(
p
.
shape
[
0
]):
k
,
l
=
p
.
indptr
[
i
],
p
.
indptr
[
i
+
1
]
k
,
l
=
p
.
indptr
[
i
],
p
.
indptr
[
i
+
1
]
out
[
0
]
.
data
[
k
:
l
]
=
numpy
.
random
.
multinomial
(
n
[
i
],
p
.
data
[
k
:
l
])
multinomial
=
Multinomial
()
class
EliminateZeros
(
gof
.
op
.
Op
):
def
__eq__
(
self
,
other
):
return
(
type
(
self
)
==
type
(
other
))
def
__hash__
(
self
):
return
hash
(
type
(
self
))
def
make_node
(
self
,
x
):
x
=
as_sparse_variable
(
x
)
return
gof
.
Apply
(
self
,
[
x
],
[
x
.
type
()])
def
perform
(
self
,
node
,
(
x
,
),
(
out
,
)):
assert
_is_sparse
(
x
)
out
[
0
]
=
x
.
copy
()
out
[
0
]
.
eliminate_zeros
()
eliminate_zeros
=
EliminateZeros
()
class
Sum
(
gof
.
op
.
Op
):
def
__eq__
(
self
,
other
):
return
(
type
(
self
)
==
type
(
other
))
def
__hash__
(
self
):
return
hash
(
type
(
self
))
def
make_node
(
self
,
x
,
a
):
x
=
as_sparse_variable
(
x
)
a
=
tensor
.
as_tensor_variable
(
a
)
return
gof
.
Apply
(
self
,
[
x
,
a
],
[
tensor
.
TensorType
(
dtype
=
x
.
type
.
dtype
,
broadcastable
=
(
False
,))
.
make_variable
()])
return
gof
.
Apply
(
self
,
[
x
,
a
],
[
tensor
.
TensorType
(
dtype
=
x
.
type
.
dtype
,
broadcastable
=
(
False
,))
.
make_variable
()])
def
perform
(
self
,
node
,
(
x
,
a
),
(
out
,
)):
assert
_is_sparse
(
x
)
out
[
0
]
=
numpy
.
asarray
(
x
.
sum
(
a
),
dtype
=
x
.
dtype
)
.
flatten
()
sum
=
Sum
()
class
Binomial
(
gof
.
op
.
Op
):
def
__init__
(
self
,
format
,
dtype
):
self
.
format
=
format
self
.
dtype
=
dtype
def
__eq__
(
self
,
other
):
return
(
type
(
self
)
==
type
(
other
))
and
self
.
format
==
other
.
format
and
\
self
.
dtype
==
other
.
dtype
return
((
type
(
self
)
==
type
(
other
))
and
self
.
format
==
other
.
format
and
self
.
dtype
==
other
.
dtype
)
def
__hash__
(
self
):
return
hash
(
type
(
self
))
^
hash
(
self
.
format
)
^
hash
(
self
.
dtype
)
def
make_node
(
self
,
n
,
p
,
shape
):
n
=
tensor
.
as_tensor_variable
(
n
)
p
=
tensor
.
as_tensor_variable
(
p
)
shape
=
tensor
.
as_tensor_variable
(
shape
)
return
gof
.
Apply
(
self
,
[
n
,
p
,
shape
],
[
SparseType
(
dtype
=
self
.
dtype
,
format
=
self
.
format
)
.
make_variable
()])
return
gof
.
Apply
(
self
,
[
n
,
p
,
shape
],
[
SparseType
(
dtype
=
self
.
dtype
,
format
=
self
.
format
)
.
make_variable
()])
def
perform
(
self
,
node
,
(
n
,
p
,
shape
,
),
(
out
,
)):
N
=
n
*
p
*
shape
[
0
]
*
shape
[
1
]
data
=
numpy
.
ones
(
N
,
dtype
=
self
.
dtype
)
row
=
numpy
.
random
.
randint
(
0
,
shape
[
0
],
N
)
col
=
numpy
.
random
.
randint
(
0
,
shape
[
1
],
N
)
res
=
scipy
.
sparse
.
coo_matrix
((
data
,
(
row
,
col
)),
shape
=
shape
)
out
[
0
]
=
getattr
(
res
,
'to'
+
self
.
format
)()
out
[
0
]
.
data
=
numpy
.
ones_like
(
out
[
0
]
.
data
)
csr_fbinomial
=
Binomial
(
'csr'
,
'float32'
)
...
...
@@ -116,16 +145,17 @@ csc_fbinomial = Binomial('csc', 'float32')
csr_dbinomial
=
Binomial
(
'csr'
,
'float64'
)
csc_dbinomial
=
Binomial
(
'csc'
,
'float64'
)
def
structured_sigmoid
(
x
):
"""
Element-wise sigmoid function only to the non-zero elements.
"""
x
=
as_sparse_variable
(
x
)
x_data
,
x_ind
,
x_ptr
,
x_shape
=
csm_properties
(
x
)
x_data
=
tensor
.
nnet
.
sigmoid
(
x_data
)
return
CSR
(
x_data
,
x_ind
,
x_ptr
,
x_shape
)
...
...
@@ -134,11 +164,11 @@ def structured_exp(x):
Element-wise exponential function to the non-zero elements.
"""
x
=
as_sparse_variable
(
x
)
x_data
,
x_ind
,
x_ptr
,
x_shape
=
csm_properties
(
x
)
x_data
=
tensor
.
exp
(
x_data
)
return
CSR
(
x_data
,
x_ind
,
x_ptr
,
x_shape
)
...
...
@@ -162,13 +192,13 @@ def structured_minimum(x, y):
Element-wise minimum function only to non-zero elements.
"""
x
=
as_sparse_variable
(
x
)
y
=
tensor
.
as_tensor_variable
(
y
)
x_data
,
x_ind
,
x_ptr
,
x_shape
=
csm_properties
(
x
)
x_data
=
tensor
.
minimum
(
x_data
,
y
)
return
CSR
(
x_data
,
x_ind
,
x_ptr
,
x_shape
)
...
...
@@ -179,24 +209,28 @@ class StructuredAddSV(gof.op.Op):
matrix.'''
def
__eq__
(
self
,
other
):
return
(
type
(
self
)
==
type
(
other
))
def
__hash__
(
self
):
return
hash
(
type
(
self
))
def
make_node
(
self
,
x
,
y
):
x
=
as_sparse_variable
(
x
)
y
=
tensor
.
as_tensor_variable
(
y
)
assert
y
.
type
.
ndim
==
1
if
x
.
type
.
dtype
!=
y
.
type
.
dtype
:
raise
NotImplementedError
()
return
gof
.
Apply
(
self
,
[
x
,
y
],
[
SparseType
(
dtype
=
x
.
type
.
dtype
,
format
=
x
.
type
.
format
)
.
make_variable
()])
[
SparseType
(
dtype
=
x
.
type
.
dtype
,
format
=
x
.
type
.
format
)
.
make_variable
()])
def
perform
(
self
,
node
,
(
x
,
y
),
(
out
,
)):
assert
_is_sparse
(
x
)
and
not
_is_sparse
(
y
)
assert
x
.
shape
[
1
]
==
y
.
shape
[
0
]
out
[
0
]
=
x
.
__class__
(
x
+
(
x
.
toarray
()
!=
0
)
*
y
)
def
grad
(
self
,
(
x
,
y
),
(
gz
,)):
assert
_is_sparse_variable
(
x
)
and
_is_sparse_variable
(
y
)
assert
_is_sparse_variable
(
gz
)
...
...
@@ -207,14 +241,18 @@ structured_add_s_v = StructuredAddSV()
class
StrucutedAddSVCSR
(
gof
.
Op
):
def
__eq__
(
self
,
other
):
return
(
type
(
self
)
==
type
(
other
))
def
__hash__
(
self
):
return
hash
(
type
(
self
))
def
make_node
(
self
,
a_data
,
a_indices
,
a_indptr
,
b
):
assert
b
.
type
.
ndim
==
1
return
gof
.
Apply
(
self
,
[
a_data
,
a_indices
,
a_indptr
,
b
],
[
tensor
.
tensor
(
b
.
dtype
,
(
False
,))])
def
c_code
(
self
,
node
,
name
,
(
_data
,
_indices
,
_indptr
,
_b
,),
(
_zout
,
),
sub
):
def
c_code
(
self
,
node
,
name
,
inputs
,
outputs
,
sub
):
_data
,
_indices
,
_indptr
,
_b
,
=
inputs
_zout
,
=
outputs
if
node
.
inputs
[
0
]
.
type
.
dtype
in
(
'complex64'
,
'complex128'
):
raise
NotImplementedError
(
'Complex types are not supported for a'
)
if
node
.
inputs
[
3
]
.
type
.
dtype
in
(
'complex64'
,
'complex128'
):
...
...
@@ -272,98 +310,105 @@ class StrucutedAddSVCSR(gof.Op):
}
}
"""
%
dict
(
locals
(),
**
sub
)
"""
%
dict
(
locals
(),
**
sub
)
structured_add_s_v_csr
=
StrucutedAddSVCSR
()
@gof.local_optimizer
([
structured_add_s_v
])
def
local_structured_add_s_v
(
node
):
if
node
.
op
==
structured_add_s_v
:
x
,
y
=
node
.
inputs
x_is_sparse_variable
=
_is_sparse_variable
(
x
)
y_is_sparse_variable
=
_is_sparse_variable
(
y
)
#
y_is_sparse_variable = _is_sparse_variable(y)
if
x_is_sparse_variable
:
svar
=
x
dvar
=
y
svar
=
x
dvar
=
y
else
:
svar
=
y
dvar
=
x
svar
=
y
dvar
=
x
if
dvar
.
type
.
ndim
!=
1
:
return
False
elif
svar
.
type
.
format
==
'csr'
:
CSx
=
CSR
structured_add_s_v_csx
=
structured_add_s_v_csr
CSx
=
CSR
structured_add_s_v_csx
=
structured_add_s_v_csr
else
:
raise
NotImplemented
()
s_val
,
s_ind
,
s_ptr
,
s_shape
=
csm_properties
(
svar
)
c_data
=
structured_add_s_v_csx
(
s_val
,
s_ind
,
s_ptr
,
dvar
)
return
[
CSx
(
c_data
,
s_ind
,
s_ptr
,
s_shape
)]
return
False
register_specialize
(
local_structured_add_s_v
)
class
SamplingDot
(
gof
.
op
.
Op
):
"""
Operand for calculating the dot product DOT(X, Y) = Z when you only want to calculate
a subset of Z. It is equivalent to P o (X . Y) where o is the element-wise product, X and Y operands of
the dot product and P is a matrix that contains 1 when the corresponding element of Z should be calculated
and 0 when it shouldn't. Note that SamplingDot has a different interface than DOT because SamplingDot
requires X to be a MxK matrix while Y is a NxK matrix instead of the usual KxN matrix.
It will work if the pattern is not binary value, but if the pattern doesn't have a high sparsity proportion
it will be slower then a more optimized dot followed by a normal elemwise multiplication.
Operand for calculating the dot product DOT(X, Y) = Z when you
only want to calculate a subset of Z. It is equivalent to P o (X
. Y) where o is the element-wise product, X and Y operands of the
dot product and P is a matrix that contains 1 when the
corresponding element of Z should be calculated and 0 when it
shouldn't. Note that SamplingDot has a different interface than
DOT because SamplingDot requires X to be a MxK matrix while Y is a
NxK matrix instead of the usual KxN matrix.
It will work if the pattern is not binary value, but if the
pattern doesn't have a high sparsity proportion it will be slower
then a more optimized dot followed by a normal elemwise
multiplication.
"""
def
__eq__
(
self
,
other
):
return
type
(
self
)
==
type
(
other
)
def
__hash__
(
self
):
return
hash
(
type
(
self
))
def
__str__
(
self
):
return
'SamplingDot'
def
make_node
(
self
,
x
,
y
,
p
):
x
=
tensor
.
as_tensor_variable
(
x
)
y
=
tensor
.
as_tensor_variable
(
y
)
if
not
_is_sparse_variable
(
p
):
raise
TypeError
(
p
)
dtype_out
=
scalar
.
upcast
(
x
.
type
.
dtype
,
y
.
type
.
dtype
,
p
.
type
.
dtype
)
return
gof
.
Apply
(
self
,
[
x
,
y
,
p
],
[
p
.
type
()])
def
perform
(
self
,
node
,
(
x
,
y
,
p
),
(
out
,)):
if
_is_sparse_variable
(
x
):
raise
TypeError
(
x
)
if
_is_sparse_variable
(
y
):
raise
TypeError
(
y
)
if
not
_is_sparse
(
p
):
raise
TypeError
(
p
)
rval
=
p
.
__class__
(
p
.
multiply
(
numpy
.
dot
(
x
,
y
.
T
)))
out
[
0
]
=
rval
def
grad
(
self
,
(
x
,
y
,
p
),
(
gz
,)):
rval
=
[
dot
(
gz
,
y
),
dot
(
gz
.
T
,
x
),
None
]
return
rval
sampling_dot
=
SamplingDot
()
class
SamplingDotCsr
(
gof
.
Op
):
"""
Optimized SamplingDot when the pattern P is a CSR matrix.
...
...
@@ -374,13 +419,13 @@ class SamplingDotCsr(gof.Op):
"""
def
__eq__
(
self
,
other
):
return
type
(
self
)
==
type
(
other
)
def
__hash__
(
self
):
return
hash
(
type
(
self
))
def
__str__
(
self
):
return
'SamplingDot{Csr}'
def
make_node
(
self
,
x
,
y
,
p_data
,
p_ind
,
p_ptr
,
p_ncols
):
x
=
tensor
.
as_tensor_variable
(
x
)
y
=
tensor
.
as_tensor_variable
(
y
)
...
...
@@ -388,12 +433,13 @@ class SamplingDotCsr(gof.Op):
p_ind
=
tensor
.
as_tensor_variable
(
p_ind
)
p_ptr
=
tensor
.
as_tensor_variable
(
p_ptr
)
p_ncols
=
tensor
.
as_tensor_variable
(
p_ncols
)
assert
p_ncols
.
dtype
==
'int32'
dtype_out
=
scalar
.
upcast
(
x
.
type
.
dtype
,
y
.
type
.
dtype
,
p_data
.
type
.
dtype
)
dtype_out
=
scalar
.
upcast
(
x
.
type
.
dtype
,
y
.
type
.
dtype
,
p_data
.
type
.
dtype
)
dot_out
=
scalar
.
upcast
(
x
.
type
.
dtype
,
y
.
type
.
dtype
)
# We call blas ?dot function that take only param of the same type
x
=
tensor
.
cast
(
x
,
dot_out
)
y
=
tensor
.
cast
(
y
,
dot_out
)
...
...
@@ -406,7 +452,7 @@ class SamplingDotCsr(gof.Op):
def
c_support_code
(
self
):
return
blas
.
blas_header_text
()
def
c_libraries
(
self
):
import
pdb
;
pdb
.
set_trace
()
return
blas
.
ldflags
()
...
...
@@ -416,19 +462,24 @@ class SamplingDotCsr(gof.Op):
def
c_lib_dirs
(
self
):
return
blas
.
ldflags
(
libs
=
False
,
libs_dir
=
True
)
def
c_header_dirs
(
self
):
return
blas
.
ldflags
(
libs
=
False
,
include_dir
=
True
)
def
c_code
(
self
,
node
,
name
,
(
x
,
y
,
p_data
,
p_ind
,
p_ptr
,
p_ncols
),
(
z_data
,
z_ind
,
z_ptr
),
sub
):
def
c_code
(
self
,
node
,
name
,
inputs
,
outputs
,
sub
):
x
,
y
,
p_data
,
p_ind
,
p_ptr
,
p_ncols
=
inputs
z_data
,
z_ind
,
z_ptr
=
outputs
if
node
.
inputs
[
0
]
.
type
.
dtype
in
(
'complex64'
,
'complex128'
):
raise
NotImplementedError
(
'Complex types are not supported for x'
)
if
node
.
inputs
[
1
]
.
type
.
dtype
in
(
'complex64'
,
'complex128'
):
raise
NotImplementedError
(
'Complex types are not supported for y'
)
if
node
.
inputs
[
2
]
.
type
.
dtype
in
(
'complex64'
,
'complex128'
):
raise
NotImplementedError
(
'Complex types are not supported for pattern'
)
dot_out
=
scalar
.
upcast
(
node
.
inputs
[
0
]
.
type
.
dtype
,
node
.
inputs
[
0
]
.
type
.
dtype
)
raise
NotImplementedError
(
'Complex types are not supported for pattern'
)
# TODO: why 2 times the same inputs?
dot_out
=
scalar
.
upcast
(
node
.
inputs
[
0
]
.
type
.
dtype
,
node
.
inputs
[
0
]
.
type
.
dtype
)
if
dot_out
==
"float32"
:
conv_type
=
"float"
...
...
@@ -436,13 +487,17 @@ class SamplingDotCsr(gof.Op):
else
:
conv_type
=
"double"
cdot
=
"ddot_sub_"
typenum_x
=
node
.
inputs
[
0
]
.
type
.
dtype_specs
()[
-
1
]
# retrieve dtype number
typenum_y
=
node
.
inputs
[
1
]
.
type
.
dtype_specs
()[
-
1
]
# retrieve dtype number
typenum_p
=
node
.
inputs
[
2
]
.
type
.
dtype_specs
()[
-
1
]
# retrieve dtype number
typenum_zd
=
tensor
.
TensorType
(
node
.
outputs
[
0
]
.
dtype
,
[])
.
dtype_specs
()[
-
1
]
# retrieve dtype number
typenum_zi
=
tensor
.
TensorType
(
node
.
outputs
[
1
]
.
dtype
,
[])
.
dtype_specs
()[
-
1
]
# retrieve dtype number
typenum_zp
=
tensor
.
TensorType
(
node
.
outputs
[
2
]
.
dtype
,
[])
.
dtype_specs
()[
-
1
]
# retrieve dtype number
# retrieve dtype number
typenum_x
=
node
.
inputs
[
0
]
.
type
.
dtype_specs
()[
-
1
]
typenum_y
=
node
.
inputs
[
1
]
.
type
.
dtype_specs
()[
-
1
]
typenum_p
=
node
.
inputs
[
2
]
.
type
.
dtype_specs
()[
-
1
]
typenum_zd
=
tensor
.
TensorType
(
node
.
outputs
[
0
]
.
dtype
,
[])
.
dtype_specs
()[
-
1
]
typenum_zi
=
tensor
.
TensorType
(
node
.
outputs
[
1
]
.
dtype
,
[])
.
dtype_specs
()[
-
1
]
typenum_zp
=
tensor
.
TensorType
(
node
.
outputs
[
2
]
.
dtype
,
[])
.
dtype_specs
()[
-
1
]
rval
=
"""
if (
%(x)
s->nd != 2) {PyErr_SetString(PyExc_NotImplementedError, "rank(x) != 2");
%(fail)
s;}
...
...
@@ -529,13 +584,14 @@ class SamplingDotCsr(gof.Op):
Dzd[n_idx * Sdzd] *= Dpd[n_idx * Sdpd];
}
}
}
}
"""
%
dict
(
locals
(),
**
sub
)
"""
%
dict
(
locals
(),
**
sub
)
return
rval
sampling_dot_csr
=
SamplingDotCsr
()
# register a specialization to replace SamplingDot -> SamplingDotCsr
@gof.local_optimizer
([
sampling_dot
])
def
local_sampling_dot_csr
(
node
):
...
...
@@ -543,10 +599,10 @@ def local_sampling_dot_csr(node):
x
,
y
,
p
=
node
.
inputs
if
p
.
type
.
format
==
'csr'
:
p_data
,
p_ind
,
p_ptr
,
p_shape
=
csm_properties
(
p
)
z_data
,
z_ind
,
z_ptr
=
sampling_dot_csr
(
x
,
y
,
p_data
,
p_ind
,
p_ptr
,
p_shape
[
1
])
return
[
CSR
(
z_data
,
z_ind
,
z_ptr
,
p_shape
)]
return
False
register_specialize
(
local_sampling_dot_csr
,
name
=
'local_sampling_dot_csr'
)
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论