Skip to content

Commit

Permalink
Update CuPy extras (#12890)
Browse files Browse the repository at this point in the history
* Add `cuda12x` for `cupy-cuda12x`.
* Drop `cuda-autodetect` from quickstart, set default to `cuda11x`
instead.
  • Loading branch information
adrianeboyd authored Aug 8, 2023
1 parent 245e2dd commit c4e378d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ cuda117 =
cupy-cuda117>=5.0.0b4,<13.0.0
cuda11x =
cupy-cuda11x>=11.0.0,<13.0.0
cuda12x =
cupy-cuda12x>=11.5.0,<13.0.0
cuda-autodetect =
cupy-wheel>=11.0.0,<13.0.0
apple =
Expand Down
14 changes: 9 additions & 5 deletions website/src/widgets/quickstart-install.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,19 @@ const DEFAULT_PLATFORM = 'x86'
const DEFAULT_MODELS = ['en']
const DEFAULT_OPT = 'efficiency'
const DEFAULT_HARDWARE = 'cpu'
const DEFAULT_CUDA = 'cuda-autodetect'
const DEFAULT_CUDA = 'cuda11x'
const CUDA = {
'8.0': 'cuda80',
'9.0': 'cuda90',
9.1: 'cuda91',
9.2: 'cuda92',
'9.1': 'cuda91',
'9.2': 'cuda92',
'10.0': 'cuda100',
10.1: 'cuda101',
'10.2, 11.0+': 'cuda-autodetect',
'10.1': 'cuda101',
'10.2': 'cuda102',
'11.0': 'cuda110',
'11.1': 'cuda111',
'11.2-11.x': 'cuda11x',
'12.x': 'cuda12x',
}
const LANG_EXTRAS = ['ja'] // only for languages with models

Expand Down

0 comments on commit c4e378d

Please sign in to comment.