Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
e82a538e
提交
e82a538e
authored
6月 06, 2017
作者:
xiaoqie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lower work item size and cleanup
max work item size on my ocl device(not too old) is 256
上级
0b2f4053
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
4 行增加
和
7 行删除
+4
-7
nnet.py
theano/gpuarray/nnet.py
+4
-7
没有找到文件。
theano/gpuarray/nnet.py
浏览文件 @
e82a538e
...
...
@@ -14,9 +14,6 @@ except ImportError:
from
.basic_ops
import
(
as_gpuarray_variable
,
GpuKernelBase
,
Kernel
,
infer_context_name
)
from
.type
import
GpuArrayType
from
.kernel_codegen
import
(
nvcc_kernel
,
inline_softmax
,
inline_softmax_fixed_shared
)
from
.fp16_help
import
work_dtype
,
load_w
,
write_w
...
...
@@ -490,7 +487,7 @@ class GpuSoftmax(GpuKernelBase, Op):
return
shape
def
c_code_cache_version
(
self
):
return
(
16
,)
+
inline_softmax
.
code_version
return
(
16
,)
def
c_headers
(
self
):
return
[
'<numpy_compat.h>'
,
'<gpuarray/types.h>'
]
...
...
@@ -544,7 +541,7 @@ class GpuSoftmax(GpuKernelBase, Op):
{
size_t n_blocks[3] = {std::min(PyGpuArray_DIMS(
%(x)
s)[0], (size_t)(32 * 1024)), 1, 1};
//TODO, detect the maximum number of thread per block.
size_t threads_per_block[3] = {std::min(PyGpuArray_DIMS(
%(x)
s)[1], (size_t)
512), 1, 1};
size_t threads_per_block[3] = {std::min(PyGpuArray_DIMS(
%(x)
s)[1], (size_t)
256), 1, 1}; // TODO: Read GA_CTX_PROP_MAXLSIZE
size_t shmem_sz = PyGpuArray_DIMS(
%(x)
s)[1] *
2 * sizeof(npy_
%(work_x)
s);
ssize_t stride_X0 = PyGpuArray_STRIDES(
%(x)
s)[0] /
%(itemsize_x)
s;
...
...
@@ -790,7 +787,7 @@ class GpuSoftmaxWithBias(GpuKernelBase, Op):
return
[
shape
[
0
]]
def
c_code_cache_version
(
self
):
return
(
15
,)
+
inline_softmax
.
code_version
return
(
15
,)
def
c_headers
(
self
):
return
[
'<numpy_compat.h>'
,
'<gpuarray/types.h>'
]
...
...
@@ -859,7 +856,7 @@ class GpuSoftmaxWithBias(GpuKernelBase, Op):
{
size_t n_blocks[3] = {std::min(PyGpuArray_DIMS(
%(x)
s)[0], (size_t)(32*1024)), 1, 1};
//TODO, detect the maximum number of thread per block.
size_t threads_per_block[3] = {std::min(PyGpuArray_DIMS(
%(x)
s)[1], (size_t)
512), 1, 1};
size_t threads_per_block[3] = {std::min(PyGpuArray_DIMS(
%(x)
s)[1], (size_t)
256), 1, 1}; // TODO: Read GA_CTX_PROP_MAXLSIZE
size_t shmem_sz = PyGpuArray_DIMS(
%(x)
s)[1] *
2 * sizeof(npy_
%(work_x)
s);
ssize_t stride_X0 = PyGpuArray_STRIDES(
%(x)
s)[0] /
%(itemsize_x)
s;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论