Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
5adc3f84
提交
5adc3f84
authored
9月 17, 2012
作者:
Ian Goodfellow
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
made GpuCAReduce stuff conditional
上级
e5978249
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
22 行增加
和
17 行删除
+22
-17
basic_ops.py
theano/sandbox/cuda/basic_ops.py
+22
-17
没有找到文件。
theano/sandbox/cuda/basic_ops.py
浏览文件 @
5adc3f84
...
@@ -508,6 +508,7 @@ class GpuCAReduce(GpuOp):
...
@@ -508,6 +508,7 @@ class GpuCAReduce(GpuOp):
"""
"""
def
__init__
(
self
,
reduce_mask
,
scalar_op
):
def
__init__
(
self
,
reduce_mask
,
scalar_op
):
self
.
reduce_mask
=
tuple
(
reduce_mask
)
self
.
reduce_mask
=
tuple
(
reduce_mask
)
self
.
scalar_op
=
scalar_op
def
__eq__
(
self
,
other
):
def
__eq__
(
self
,
other
):
return
(
type
(
self
)
==
type
(
other
)
and
return
(
type
(
self
)
==
type
(
other
)
and
...
@@ -532,11 +533,11 @@ class GpuCAReduce(GpuOp):
...
@@ -532,11 +533,11 @@ class GpuCAReduce(GpuOp):
def
perform
(
self
,
node
,
inp
,
out
):
def
perform
(
self
,
node
,
inp
,
out
):
x
,
=
inp
x
,
=
inp
z
,
=
out
z
,
=
out
raise
NotImplementedError
()
# TODO
self
.
_op_guard
()
z
[
0
]
=
x
.
reduce_sum
(
self
.
reduce_mask
)
z
[
0
]
=
x
.
reduce_sum
(
self
.
reduce_mask
)
def
c_code
(
self
,
node
,
name
,
inp
,
out
,
sub
):
def
c_code
(
self
,
node
,
name
,
inp
,
out
,
sub
):
raise
NotImplementedError
()
self
.
_op_guard
()
x
,
=
inp
x
,
=
inp
z
,
=
out
z
,
=
out
...
@@ -632,7 +633,7 @@ class GpuCAReduce(GpuOp):
...
@@ -632,7 +633,7 @@ class GpuCAReduce(GpuOp):
return
sio
.
getvalue
()
return
sio
.
getvalue
()
def
_makecall
(
self
,
node
,
name
,
x
,
z
,
fail
,
pattern
=
None
):
def
_makecall
(
self
,
node
,
name
,
x
,
z
,
fail
,
pattern
=
None
):
raise
NotImplementedError
()
self
.
_op_guard
()
"""Return a string for making a kernel call.
"""Return a string for making a kernel call.
The return value looks something like:
The return value looks something like:
...
@@ -719,7 +720,7 @@ class GpuCAReduce(GpuOp):
...
@@ -719,7 +720,7 @@ class GpuCAReduce(GpuOp):
def
_k_decl
(
self
,
node
,
nodename
,
pattern
=
None
,
def
_k_decl
(
self
,
node
,
nodename
,
pattern
=
None
,
ndim
=
None
,
reduce_mask
=
None
):
ndim
=
None
,
reduce_mask
=
None
):
raise
NotImplementedError
()
self
.
_op_guard
()
"""Return a string to declare a kernel function
"""Return a string to declare a kernel function
.. code-block:: c
.. code-block:: c
...
@@ -769,7 +770,7 @@ class GpuCAReduce(GpuOp):
...
@@ -769,7 +770,7 @@ class GpuCAReduce(GpuOp):
return
sio
.
getvalue
()
return
sio
.
getvalue
()
def
_k_init
(
self
,
*
args
):
def
_k_init
(
self
,
*
args
):
raise
NotImplementedError
()
self
.
_op_guard
()
return
"""
return
"""
const int threadCount = blockDim.x * blockDim.y * blockDim.z;
const int threadCount = blockDim.x * blockDim.y * blockDim.z;
const int threadNum = threadIdx.z * blockDim.x * blockDim.y + threadIdx.y * blockDim.x + threadIdx.x;
const int threadNum = threadIdx.z * blockDim.x * blockDim.y + threadIdx.y * blockDim.x + threadIdx.x;
...
@@ -786,7 +787,7 @@ class GpuCAReduce(GpuOp):
...
@@ -786,7 +787,7 @@ class GpuCAReduce(GpuOp):
"""
"""
def
_k_reduce_buf
(
self
,
z_pos
):
def
_k_reduce_buf
(
self
,
z_pos
):
raise
NotImplementedError
()
self
.
_op_guard
()
# Work with all nvidia driver
# Work with all nvidia driver
# But only for power or multiple of 2!
# But only for power or multiple of 2!
new_version
=
"""
new_version
=
"""
...
@@ -1030,7 +1031,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1030,7 +1031,7 @@ class GpuCAReduce(GpuOp):
self
.
c_code_reduce_01X
(
sio
,
node
,
name
,
x
,
z
,
fail
,
3
)
self
.
c_code_reduce_01X
(
sio
,
node
,
name
,
x
,
z
,
fail
,
3
)
def
c_code_reduce_10
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_10
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
print
>>
sio
,
"""
print
>>
sio
,
"""
{
{
int verbose = 0;
int verbose = 0;
...
@@ -1080,7 +1081,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1080,7 +1081,7 @@ class GpuCAReduce(GpuOp):
"""
%
locals
()
"""
%
locals
()
def
c_code_reduce_010
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_010
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall_inner
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
,
makecall_inner
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
,
pattern
=
"010_inner"
)
pattern
=
"010_inner"
)
...
@@ -1203,7 +1204,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1203,7 +1204,7 @@ class GpuCAReduce(GpuOp):
"""
%
locals
()
"""
%
locals
()
def
c_code_reduce_0101
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_0101
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
print
>>
sio
,
"""
print
>>
sio
,
"""
{
{
...
@@ -1223,7 +1224,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1223,7 +1224,7 @@ class GpuCAReduce(GpuOp):
"""
%
locals
()
"""
%
locals
()
def
c_code_reduce_100
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_100
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
# use threadIdx.x for i0
# use threadIdx.x for i0
# use blockIdx.x for i1
# use blockIdx.x for i1
...
@@ -1244,7 +1245,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1244,7 +1245,7 @@ class GpuCAReduce(GpuOp):
"""
%
locals
()
"""
%
locals
()
def
c_code_reduce_110
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_110
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
print
>>
sio
,
"""
print
>>
sio
,
"""
{
{
...
@@ -1266,7 +1267,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1266,7 +1267,7 @@ class GpuCAReduce(GpuOp):
"""
%
locals
()
"""
%
locals
()
def
c_code_reduce_001
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_001
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
print
>>
sio
,
"""
print
>>
sio
,
"""
{
{
...
@@ -1289,7 +1290,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1289,7 +1290,7 @@ class GpuCAReduce(GpuOp):
"""
%
locals
()
"""
%
locals
()
def
c_code_reduce_111
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_111
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
print
>>
sio
,
"""
print
>>
sio
,
"""
{
{
...
@@ -1322,7 +1323,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1322,7 +1323,7 @@ class GpuCAReduce(GpuOp):
"""
%
locals
()
"""
%
locals
()
def
c_code_reduce_0011
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_0011
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
print
>>
sio
,
"""
print
>>
sio
,
"""
{
{
...
@@ -1353,7 +1354,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1353,7 +1354,7 @@ class GpuCAReduce(GpuOp):
"""
%
locals
()
"""
%
locals
()
def
c_code_reduce_1111
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_1111
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
print
>>
sio
,
"""
print
>>
sio
,
"""
{
{
...
@@ -1386,7 +1387,7 @@ class GpuCAReduce(GpuOp):
...
@@ -1386,7 +1387,7 @@ class GpuCAReduce(GpuOp):
"""
%
locals
()
"""
%
locals
()
def
c_code_reduce_1011
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
def
c_code_reduce_1011
(
self
,
sio
,
node
,
name
,
x
,
z
,
fail
):
raise
NotImplementedError
()
self
.
_op_guard
()
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
makecall
=
self
.
_makecall
(
node
,
name
,
x
,
z
,
fail
)
print
>>
sio
,
"""
print
>>
sio
,
"""
{
{
...
@@ -1413,8 +1414,12 @@ class GpuCAReduce(GpuOp):
...
@@ -1413,8 +1414,12 @@ class GpuCAReduce(GpuOp):
def
c_code_cache_version
(
self
):
def
c_code_cache_version
(
self
):
return
(
1
,)
return
(
1
,)
def
c_support_code_apply
(
self
,
node
,
nodename
):
def
_op_guard
(
self
):
if
not
isinstance
(
self
.
scalar_op
,
theano
.
scalar
.
basic
.
Add
):
raise
NotImplementedError
()
raise
NotImplementedError
()
def
c_support_code_apply
(
self
,
node
,
nodename
):
self
.
_op_guard
()
sio
=
StringIO
.
StringIO
()
sio
=
StringIO
.
StringIO
()
nd_in
=
len
(
self
.
reduce_mask
)
nd_in
=
len
(
self
.
reduce_mask
)
if
all
(
i
==
1
for
i
in
self
.
reduce_mask
):
if
all
(
i
==
1
for
i
in
self
.
reduce_mask
):
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论