Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
715f193d
提交
715f193d
authored
8月 12, 2011
作者:
Frederic Bastien
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Added method to convert from/to cudamat gpu matrix and cudandarray.
上级
72abdcb7
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
152 行增加
和
0 行删除
+152
-0
cudamat_utils.py
theano/misc/cudamat_utils.py
+115
-0
test_cudamat_utils.py
theano/misc/tests/test_cudamat_utils.py
+37
-0
没有找到文件。
theano/misc/cudamat_utils.py
0 → 100644
浏览文件 @
715f193d
"""
This code can only work if cudamat and theano are initialized on the
same gpu as theano.
WARNING: In the test of this file there is a transpose that is used...
So there can be problem with shape and stride order...
"""
try
:
import
cudamat
cudamat_available
=
True
import
theano.sandbox.cuda
as
cuda
if
cuda
.
cuda_available
==
False
:
raise
ImportError
(
'Optional theano package cuda disabled'
)
def
cudandarray_to_cudamat
(
x
,
copyif
=
False
):
""" take a CudaNdarray and return a cudamat.CUDAMatrix object.
:type x: CudaNdarray
:param x: The array to transform to cudamat.CUDAMatrix.
:type copyif: bool
:param copyif: If False, raise an error if x is not c contiguous.
If it is c contiguous, we return a GPUArray that share
the same memory region as x.
If True, copy x if it is no c contiguous, so the return won't
shape the same memory region. If c contiguous, the return
will share the same memory region.
We need to do this as GPUArray don't fully support strided memory.
:return type: cudamat.CUDAMatrix
"""
if
not
isinstance
(
x
,
cuda
.
CudaNdarray
):
raise
ValueError
(
"We can transfer only CudaNdarray to cudamat.CUDAMatrix"
)
elif
x
.
ndim
!=
2
:
raise
TypeError
(
"cudandarray_to_cudamat: input must be 2-d (has
%
s dims). That's "
"because cudamat arrays are always 2-dimensional"
)
else
:
# Check if it is c contiguous
size
=
1
c_contiguous
=
True
for
i
in
range
(
x
.
ndim
-
1
,
-
1
,
-
1
):
if
x
.
shape
[
i
]
==
1
:
continue
if
x
.
_strides
[
i
]
!=
size
:
c_contiguous
=
False
break
size
*=
x
.
shape
[
i
]
if
not
c_contiguous
:
if
copyif
:
x
=
x
.
copy
()
else
:
raise
ValueError
(
"We where asked to don't copy memory, but the memory is not c contiguous."
)
# Now x is always c contiguous.
# the next step is to create a CUDAMatrix object. We do so by first creating
# a cudamat object with no data_host.
cm_mat
=
cudamat
.
cudamat
()
cm_mat
.
size
[
0
]
=
x
.
shape
[
0
]
cm_mat
.
size
[
1
]
=
x
.
shape
[
1
]
cm_mat
.
on_host
=
0
cm_mat
.
on_device
=
1
cm_mat
.
is_trans
=
0
cm_mat
.
owns_data
=
0
# <-- note: cm_mat dosen't owe the data; x does. So x will delete it.
# x.gpudata is a long. We need a pointer to a float. cast.
import
ctypes
cm_mat
.
data_device
=
ctypes
.
cast
(
x
.
gpudata
,
ctypes
.
POINTER
(
ctypes
.
c_float
))
px
=
cudamat
.
CUDAMatrix
(
cm_mat
)
px
.
_base
=
x
# x won't be __del__'ed as long as px is around.
px
.
mat_on_host
=
False
# let cudamat know that we don't have a numpy
# array attached.
return
px
def
cudamat_to_cudandarray
(
x
):
""" take a cudamat.CUDAMatrix and make a CudaNdarray that point to its memory
"""
if
not
isinstance
(
x
,
cudamat
.
CUDAMatrix
):
raise
ValueError
(
"We can transfer only cudamat.CUDAMatrix to CudaNdarray"
)
# elif x.dtype != "float32":
# raise ValueError("CudaNdarray support only float32")
# We don't need this, because cudamat is always float32.
else
:
strides
=
[
1
]
for
i
in
x
.
shape
[::
-
1
][:
-
1
]:
strides
.
append
(
strides
[
-
1
]
*
i
)
strides
=
tuple
(
strides
[::
-
1
])
import
ctypes
ptr_long
=
long
(
ctypes
.
cast
(
x
.
mat
.
data_device
,
ctypes
.
c_void_p
)
.
value
)
# seems legit.
z
=
cuda
.
from_gpu_pointer
(
ptr_long
,
x
.
shape
,
strides
,
x
)
return
z
except
(
ImportError
,
OSError
):
cudamat_available
=
False
theano/misc/tests/test_cudamat_utils.py
0 → 100644
浏览文件 @
715f193d
import
numpy
import
theano
from
theano.misc.cudamat_utils
import
cudamat_available
if
not
cudamat_available
:
from
nose.plugins.skip
import
SkipTest
raise
SkipTest
(
"gnumpy not installed. Skip test of theano op with pycuda code."
)
from
theano.misc.cudamat_utils
import
cudandarray_to_cudamat
,
cudamat_to_cudandarray
def
test
(
shape
=
(
3
,
4
)):
"""
Make sure that the cudamat conversion is exact.
"""
gpu
=
theano
.
sandbox
.
cuda
.
basic_ops
.
gpu_from_host
U
=
gpu
(
theano
.
tensor
.
fmatrix
(
'U'
))
ii
=
theano
.
function
([
U
],
gpu
(
U
+
1
))
A_cpu
=
numpy
.
asarray
(
numpy
.
random
.
rand
(
*
shape
),
dtype
=
"float32"
)
A_cnd
=
theano
.
sandbox
.
cuda
.
CudaNdarray
(
A_cpu
)
A_cmat
=
cudandarray_to_cudamat
(
A_cnd
)
B_cnd
=
cudamat_to_cudandarray
(
A_cmat
)
B_cnd
=
ii
(
A_cnd
)
u
=
A_cnd
.
copy
()
u
+=
theano
.
sandbox
.
cuda
.
CudaNdarray
(
numpy
.
asarray
([[
1
]],
dtype
=
'float32'
))
u
=
numpy
.
asarray
(
u
)
v
=
numpy
.
asarray
(
B_cnd
)
w
=
A_cmat
.
add
(
1
)
.
asarray
()
assert
abs
(
u
-
v
)
.
max
()
==
0
assert
abs
(
u
-
w
.
T
.
reshape
(
u
.
shape
))
.
max
()
==
0
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论