Remove misleading comment on util.get_cuda_stream()

This commit is contained in:
Matthew Honnibal 2017-11-01 13:57:25 +01:00
parent 273e96b63f
commit a7bf38bf31
1 changed files with 0 additions and 2 deletions

View File

@ -236,8 +236,6 @@ def is_in_jupyter():
def get_cuda_stream(require=False): def get_cuda_stream(require=False):
# TODO: Error and tell to install chainer if not found
# Requires GPU
return CudaStream() if CudaStream is not None else None return CudaStream() if CudaStream is not None else None