提交 5b2a9803 authored 作者: Caglar's avatar Caglar

Fixed lamblin's comments.

上级 2a4ef8da
...@@ -7,6 +7,8 @@ from theano.sandbox.cuda import cuda_ndarray ...@@ -7,6 +7,8 @@ from theano.sandbox.cuda import cuda_ndarray
dimshuffle = cuda_ndarray.cuda_ndarray.dimshuffle dimshuffle = cuda_ndarray.cuda_ndarray.dimshuffle
cula_available = False
try: try:
from scikits.cuda import cula from scikits.cuda import cula
cula_available = True cula_available = True
...@@ -23,7 +25,7 @@ class GpuSolve(GpuOp): ...@@ -23,7 +25,7 @@ class GpuSolve(GpuOp):
:param trans: Whether to take the transpose of the input matrix :param trans: Whether to take the transpose of the input matrix
or not. or not.
""" """
__props__ = ('trans') __props__ = ('trans',)
def __init__(self, trans='N'): def __init__(self, trans='N'):
self.trans = trans self.trans = trans
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论