mirror of https://github.com/explosion/spaCy.git
Add cuda101 and cuda102 options to setup (#5377)
* Add cuda101 and cuda102 options to setup * Update cudaNNN options in docs
This commit is contained in:
parent
a27c4014f5
commit
90ce34db42
|
@ -72,6 +72,10 @@ cuda92 =
|
|||
cupy-cuda92>=5.0.0b4,<9.0.0
|
||||
cuda100 =
|
||||
cupy-cuda100>=5.0.0b4,<9.0.0
|
||||
cuda101 =
|
||||
cupy-cuda101>=5.0.0b4,<9.0.0
|
||||
cuda102 =
|
||||
cupy-cuda102>=5.0.0b4,<9.0.0
|
||||
# Language tokenizers with external dependencies
|
||||
ja =
|
||||
fugashi>=0.1.3
|
||||
|
|
|
@ -122,10 +122,10 @@ support, we've been grateful to use the work of Chainer's
|
|||
interface for GPU arrays.
|
||||
|
||||
spaCy can be installed on GPU by specifying `spacy[cuda]`, `spacy[cuda90]`,
|
||||
`spacy[cuda91]`, `spacy[cuda92]` or `spacy[cuda100]`. If you know your cuda
|
||||
version, using the more explicit specifier allows cupy to be installed via
|
||||
wheel, saving some compilation time. The specifiers should install
|
||||
[`cupy`](https://cupy.chainer.org).
|
||||
`spacy[cuda91]`, `spacy[cuda92]`, `spacy[cuda100]`, `spacy[cuda101]` or
|
||||
`spacy[cuda102]`. If you know your cuda version, using the more explicit
|
||||
specifier allows cupy to be installed via wheel, saving some compilation time.
|
||||
The specifiers should install [`cupy`](https://cupy.chainer.org).
|
||||
|
||||
```bash
|
||||
$ pip install -U spacy[cuda92]
|
||||
|
|
Loading…
Reference in New Issue