Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Adds CUDA 10.0 support to pip package
Browse files Browse the repository at this point in the history
  • Loading branch information
perdasilva committed Feb 25, 2019
1 parent e2de496 commit f0713ce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/pip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ def has_ext_modules(self):
if variant == 'CPU':
libraries.append('openblas')
else:
if variant.startswith('CU92'):
if variant.startswith('CU100'):
libraries.append('CUDA-10.0')
elif variant.startswith('CU92'):
libraries.append('CUDA-9.2')
elif variant.startswith('CU91'):
libraries.append('CUDA-9.1')
Expand Down

0 comments on commit f0713ce

Please sign in to comment.