def _check_cupy():
"""Set xp
Note:
cuda.cupy if gpu, numpy otherwise
Example:
::
self.xp = self._check_cupy()
Returns:
cuda.cupy if gpu, numpy otherwise
"""
try:
cuda.check_cuda_available()
return cuda.cupy
# if gpu is not available, RuntimeError arises
except RuntimeError:
return np
评论列表
文章目录