From a7bf38bf31f7d7c143aa2c324d411c22ac3bdf2a Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 1 Nov 2017 13:57:25 +0100 Subject: [PATCH] Remove misleading comment on util.get_cuda_stream() --- spacy/util.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/spacy/util.py b/spacy/util.py index a45d43c47..3fbd22aaf 100644 --- a/spacy/util.py +++ b/spacy/util.py @@ -236,8 +236,6 @@ def is_in_jupyter(): 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