Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
472f91a0
提交
472f91a0
authored
8月 10, 2015
作者:
Iban Harlouchet
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
numpydoc for theano/sandbox/cuda/elemwise.py
上级
0a7415d7
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
38 行增加
和
16 行删除
+38
-16
elemwise.py
theano/sandbox/cuda/elemwise.py
+38
-16
没有找到文件。
theano/sandbox/cuda/elemwise.py
浏览文件 @
472f91a0
"""This file implement 3 different version of the elemwise op on the
"""
This file implement 3 different version of the elemwise op on the
gpu. Only NaiveAlgo is used and it is not very naive now.
gpu. Only NaiveAlgo is used and it is not very naive now.
The elemwise fct are also used with scalar operation! So it can happen
The elemwise fct are also used with scalar operation! So it can happen
...
@@ -40,12 +41,25 @@ def get_str_list_logical_scalar(node, value_str='ii_i%i_value',
...
@@ -40,12 +41,25 @@ def get_str_list_logical_scalar(node, value_str='ii_i%i_value',
class
SupportCodeError
(
Exception
):
class
SupportCodeError
(
Exception
):
"""It is currently not possible to auto-generate a GPU implementation for
"""
It is currently not possible to auto-generate a GPU implementation for
an elementwise Op with c_support_code_apply().
an elementwise Op with c_support_code_apply().
But we support Op.c_support_code."""
But we support Op.c_support_code.
"""
class
NaiveAlgo
(
object
):
class
NaiveAlgo
(
object
):
"""
Parameters
----------
scalar_op
The scalar operation to execute on each element.
sync
If True, will wait after the kernel launch and check for error call.
"""
verbose
=
0
# 1, 2 or 3 for more verbose output.
verbose
=
0
# 1, 2 or 3 for more verbose output.
@property
@property
...
@@ -57,10 +71,6 @@ class NaiveAlgo(object):
...
@@ -57,10 +71,6 @@ class NaiveAlgo(object):
return
ver
return
ver
def
__init__
(
self
,
scalar_op
,
sync
=
True
,
inplace_pattern
=
None
):
def
__init__
(
self
,
scalar_op
,
sync
=
True
,
inplace_pattern
=
None
):
"""
:param scalar_op: the scalar operation to execute on each element.
:param sync: if True, will wait after the kernel launch and check for error call.
"""
if
inplace_pattern
is
None
:
if
inplace_pattern
is
None
:
inplace_pattern
=
{}
inplace_pattern
=
{}
try
:
try
:
...
@@ -154,8 +164,10 @@ class NaiveAlgo(object):
...
@@ -154,8 +164,10 @@ class NaiveAlgo(object):
return
sio
.
getvalue
()
return
sio
.
getvalue
()
def
c_src_kernel_tiling
(
self
,
node
,
nodename
):
def
c_src_kernel_tiling
(
self
,
node
,
nodename
):
""" The kernel applies to problems with <= 5 dimensions """
"""
The kernel applies to problems with <= 5 dimensions.
"""
# The kernel is intended to be structured roughly like this:
# The kernel is intended to be structured roughly like this:
"""
"""
static __global__ void kernel()
static __global__ void kernel()
...
@@ -278,8 +290,10 @@ class NaiveAlgo(object):
...
@@ -278,8 +290,10 @@ class NaiveAlgo(object):
return
sio
.
getvalue
()
return
sio
.
getvalue
()
def
c_src_kernel_tiling_less_registers
(
self
,
node
,
nodename
):
def
c_src_kernel_tiling_less_registers
(
self
,
node
,
nodename
):
""" The kernel applies to problems with <= 5 dimensions """
"""
The kernel applies to problems with <= 5 dimensions.
"""
nd
=
node
.
outputs
[
0
]
.
type
.
ndim
nd
=
node
.
outputs
[
0
]
.
type
.
ndim
n_in
=
len
(
node
.
inputs
)
n_in
=
len
(
node
.
inputs
)
n_out
=
len
(
node
.
outputs
)
n_out
=
len
(
node
.
outputs
)
...
@@ -1049,12 +1063,16 @@ class ErfinvGPU(Erfinv):
...
@@ -1049,12 +1063,16 @@ class ErfinvGPU(Erfinv):
"""
"""
Provides a c-code implementation of the inverse error function for GPU.
Provides a c-code implementation of the inverse error function for GPU.
Note: We do not add this c_code to theano.scalar.basic_scipy.Erfinv, as we
Notes
-----
We do not add this c_code to theano.scalar.basic_scipy.Erfinv, as we
currently rely on Nvidia's cublas library to provide the erfinv
currently rely on Nvidia's cublas library to provide the erfinv
c-implementation (which requires different c_headers). As it stands,
c-implementation (which requires different c_headers). As it stands,
theano.scalar.basic_scipy.Erfinv does not have c_code as scipy does not
theano.scalar.basic_scipy.Erfinv does not have c_code as scipy does not
export the required C function
export the required C function.
"""
"""
def
c_headers
(
self
):
def
c_headers
(
self
):
return
[
'math_functions.h'
,
'cublas_v2.h'
]
return
[
'math_functions.h'
,
'cublas_v2.h'
]
...
@@ -1070,14 +1088,19 @@ erfinv_gpu = ErfinvGPU(upgrade_to_float_no_complex, name='erfinv_gpu')
...
@@ -1070,14 +1088,19 @@ erfinv_gpu = ErfinvGPU(upgrade_to_float_no_complex, name='erfinv_gpu')
class
ErfcxGPU
(
Erfinv
):
class
ErfcxGPU
(
Erfinv
):
"""
"""
Provides a c-code implementation of the scaled complementary error function for GPU.
Provides a c-code implementation of the scaled complementary error function
for GPU.
Note: We do not add this c_code to theano.scalar.basic_scipy.Erfcx, as we
Notes
-----
We do not add this c_code to theano.scalar.basic_scipy.Erfcx, as we
currently rely on Nvidia's cublas library to provide the erfcx
currently rely on Nvidia's cublas library to provide the erfcx
c-implementation (which requires different c_headers). As it stands,
c-implementation (which requires different c_headers). As it stands,
theano.scalar.basic_scipy.Erfcx does not have c_code as scipy does not
theano.scalar.basic_scipy.Erfcx does not have c_code as scipy does not
export the required C function
export the required C function.
"""
"""
def
c_headers
(
self
):
def
c_headers
(
self
):
return
[
'math_functions.h'
,
'cublas_v2.h'
]
return
[
'math_functions.h'
,
'cublas_v2.h'
]
...
@@ -1088,4 +1111,4 @@ class ErfcxGPU(Erfinv):
...
@@ -1088,4 +1111,4 @@ class ErfcxGPU(Erfinv):
raise
NotImplementedError
(
'type not supported'
,
type
)
raise
NotImplementedError
(
'type not supported'
,
type
)
return
"
%(z)
s = erfcx(
%(x)
s);"
%
locals
()
return
"
%(z)
s = erfcx(
%(x)
s);"
%
locals
()
erfcx_gpu
=
ErfcxGPU
(
upgrade_to_float_no_complex
,
name
=
'erfcx_gpu'
)
erfcx_gpu
=
ErfcxGPU
(
upgrade_to_float_no_complex
,
name
=
'erfcx_gpu'
)
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论